diff options
| author | Luc Teirlinck | 2005-05-02 02:20:28 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-05-02 02:20:28 +0000 |
| commit | 8ee7e9dbb5e6177ec0b4b6a57e35fcfc3eceea40 (patch) | |
| tree | 827bcc2f534942ce1be70de426a953fbf281acc1 | |
| parent | f6b1b15a85a0048ac7c179928ebfbf1b68babe0a (diff) | |
| download | emacs-8ee7e9dbb5e6177ec0b4b6a57e35fcfc3eceea40.tar.gz emacs-8ee7e9dbb5e6177ec0b4b6a57e35fcfc3eceea40.zip | |
(executing-macro): Use `define-obsolete-variable-alias'.
| -rw-r--r-- | lisp/subr.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 5a1abf8d49d..d34730e6784 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -787,12 +787,15 @@ is converted into a string by expressing it in decimal." | |||
| 787 | (make-obsolete-variable 'unread-command-char | 787 | (make-obsolete-variable 'unread-command-char |
| 788 | "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." | 788 | "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." |
| 789 | "before 19.15") | 789 | "before 19.15") |
| 790 | (make-obsolete-variable 'executing-macro 'executing-kbd-macro "before 19.34") | ||
| 791 | (make-obsolete-variable 'post-command-idle-hook | 790 | (make-obsolete-variable 'post-command-idle-hook |
| 792 | "use timers instead, with `run-with-idle-timer'." "before 19.34") | 791 | "use timers instead, with `run-with-idle-timer'." "before 19.34") |
| 793 | (make-obsolete-variable 'post-command-idle-delay | 792 | (make-obsolete-variable 'post-command-idle-delay |
| 794 | "use timers instead, with `run-with-idle-timer'." "before 19.34") | 793 | "use timers instead, with `run-with-idle-timer'." "before 19.34") |
| 795 | 794 | ||
| 795 | ;; Lisp manual only updated in 22.1. | ||
| 796 | (define-obsolete-variable-alias 'executing-macro 'executing-kbd-macro | ||
| 797 | "before 19.34") | ||
| 798 | |||
| 796 | (defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions) | 799 | (defvaralias 'x-lost-selection-hooks 'x-lost-selection-functions) |
| 797 | (make-obsolete-variable 'x-lost-selection-hooks 'x-lost-selection-functions "22.1") | 800 | (make-obsolete-variable 'x-lost-selection-hooks 'x-lost-selection-functions "22.1") |
| 798 | (defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions) | 801 | (defvaralias 'x-sent-selection-hooks 'x-sent-selection-functions) |