Mercurial > emacs
changeset 46537:46f175ecf5d4
(unread-command-char, executing-macro, post-command-idle-hook,
post-command-idle-delay): Move obsolescence declarations from subr.el.
(directory-sep-char, mode-line-inverse-video): Add obsolescence declaration.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Fri, 19 Jul 2002 11:37:01 +0000 |
parents | 7a35cb022d0c |
children | f9195cae859a |
files | lisp/subr.el |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/subr.el Fri Jul 19 11:35:37 2002 +0000 +++ b/lisp/subr.el Fri Jul 19 11:37:01 2002 +0000 @@ -727,6 +727,21 @@ (defalias 'focus-frame 'ignore) (defalias 'unfocus-frame 'ignore) + + +;;;; Obsolescence declarations for variables. + +(make-obsolete-variable 'directory-sep-char "do not use it." "21.1") +(make-obsolete-variable 'mode-line-inverse-video "use the appropriate faces instead." "21.1") +(make-obsolete-variable 'unread-command-char + "use `unread-command-events' instead. That variable is a list of events to reread, so it now uses nil to mean `no event', instead of -1." + "before 19.15") +(make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34") +(make-obsolete-variable 'post-command-idle-hook + "use timers instead, with `run-with-idle-timer'." "before 19.34") +(make-obsolete-variable 'post-command-idle-delay + "use timers instead, with `run-with-idle-timer'." "before 19.34") + ;;;; Alternate names for functions - these are not being phased out.