diff options
| author | Glenn Morris | 2009-01-09 03:28:56 +0000 |
|---|---|---|
| committer | Glenn Morris | 2009-01-09 03:28:56 +0000 |
| commit | d293848d9d01f87cb1d827dbb32d911508960b5a (patch) | |
| tree | f16799c2201712f05777ebb668076d6bc84ca98c /lisp | |
| parent | 85dce46f7b48e9f29aef9984abd86f9ff1fb0e33 (diff) | |
| download | emacs-d293848d9d01f87cb1d827dbb32d911508960b5a.tar.gz emacs-d293848d9d01f87cb1d827dbb32d911508960b5a.zip | |
(last-input-char, last-command-char): Move here from src/keyboard.c.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/subr.el | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6b3cf4e1dec..db149e7d739 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-01-09 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * subr.el (last-input-char, last-command-char): | ||
| 4 | Move here from src/keyboard.c. | ||
| 5 | |||
| 1 | 2009-01-09 Dave Love <fx@gnu.org> | 6 | 2009-01-09 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * calendar/time-date.el: Require cl for `declare'. | 8 | * calendar/time-date.el: Require cl for `declare'. |
diff --git a/lisp/subr.el b/lisp/subr.el index ee95f485132..c2d3e074fcc 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1059,6 +1059,16 @@ to reread, so it now uses nil to mean `no event', instead of -1." | |||
| 1059 | (make-obsolete-variable 'translation-table-for-input nil "23.1") | 1059 | (make-obsolete-variable 'translation-table-for-input nil "23.1") |
| 1060 | 1060 | ||
| 1061 | (defvaralias 'messages-buffer-max-lines 'message-log-max) | 1061 | (defvaralias 'messages-buffer-max-lines 'message-log-max) |
| 1062 | |||
| 1063 | ;; These aliases exist in Emacs 19.34, and probably before, but were | ||
| 1064 | ;; only marked as obsolete in 23.1. | ||
| 1065 | ;; The lisp manual (since at least Emacs 21) descrribes them as | ||
| 1066 | ;; existing "for compatibility with Emacs version 18". | ||
| 1067 | (define-obsolete-variable-alias 'last-input-char 'last-input-event | ||
| 1068 | "at least 19.34") | ||
| 1069 | (define-obsolete-variable-alias 'last-command-char 'last-command-event | ||
| 1070 | "at least 19.34") | ||
| 1071 | |||
| 1062 | 1072 | ||
| 1063 | ;;;; Alternate names for functions - these are not being phased out. | 1073 | ;;;; Alternate names for functions - these are not being phased out. |
| 1064 | 1074 | ||