diff options
| author | Juanma Barranquero | 2002-07-19 11:37:01 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2002-07-19 11:37:01 +0000 |
| commit | bd292357c48e3edfd9bfc08df615b95baa778213 (patch) | |
| tree | 608499a007c305dc2ce178902df360e4a4abd8d3 | |
| parent | 6079b12b9463715c91f0d3eca74f9b6ce9d80547 (diff) | |
| download | emacs-bd292357c48e3edfd9bfc08df615b95baa778213.tar.gz emacs-bd292357c48e3edfd9bfc08df615b95baa778213.zip | |
(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.
| -rw-r--r-- | lisp/subr.el | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 3a0a65bc14a..b247d170e84 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -727,6 +727,21 @@ is converted into a string by expressing it in decimal." | |||
| 727 | 727 | ||
| 728 | (defalias 'focus-frame 'ignore) | 728 | (defalias 'focus-frame 'ignore) |
| 729 | (defalias 'unfocus-frame 'ignore) | 729 | (defalias 'unfocus-frame 'ignore) |
| 730 | |||
| 731 | |||
| 732 | ;;;; Obsolescence declarations for variables. | ||
| 733 | |||
| 734 | (make-obsolete-variable 'directory-sep-char "do not use it." "21.1") | ||
| 735 | (make-obsolete-variable 'mode-line-inverse-video "use the appropriate faces instead." "21.1") | ||
| 736 | (make-obsolete-variable 'unread-command-char | ||
| 737 | "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." | ||
| 738 | "before 19.15") | ||
| 739 | (make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34") | ||
| 740 | (make-obsolete-variable 'post-command-idle-hook | ||
| 741 | "use timers instead, with `run-with-idle-timer'." "before 19.34") | ||
| 742 | (make-obsolete-variable 'post-command-idle-delay | ||
| 743 | "use timers instead, with `run-with-idle-timer'." "before 19.34") | ||
| 744 | |||
| 730 | 745 | ||
| 731 | ;;;; Alternate names for functions - these are not being phased out. | 746 | ;;;; Alternate names for functions - these are not being phased out. |
| 732 | 747 | ||