*** empty log message ***

This commit is contained in:
Nick Roberts 2005-04-22 04:11:30 +00:00
parent f7f8f37aa6
commit 230e1e8026
3 changed files with 17 additions and 0 deletions

View file

@ -2842,6 +2842,14 @@ and post-command-hooks.
*** The new function `rassq-delete-all' deletes all elements from an
alist whose cdr is `eq' to a specified value.
+++
*** New function make-obsolete-variable to warn that a variable may be removed
at some stage in the future.
+++
*** New macro define-obsolete-variable-alias to combine defvaralias and
make-obsolete-variable.
---
** easy-mmode-define-global-mode has been renamed to
define-global-minor-mode. The old name remains as an alias.

View file

@ -1,3 +1,7 @@
2005-04-22 Nick Roberts <nickrob@snap.net.nz>
* emacs-lisp/byte-run.el (define-obsolete-variable-alias): New macro.
2005-04-21 Lute Kamstra <lute@gnu.org>
* loadhist.el (unload-feature): Don't remove a function from hooks

View file

@ -1,3 +1,8 @@
2005-04-22 Nick Roberts <nickrob@snap.net.nz>
* variables.texi (Variable Aliases): Describe make-obsolete-variable
and define-obsolete-variable-alias.
2005-04-22 Kim F. Storm <storm@cua.dk>
* symbols.texi (Symbol Plists): Remove safe-get, as get is now safe.