diff options
| author | Chong Yidong | 2012-07-18 22:46:32 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-07-18 22:46:32 +0800 |
| commit | 19fb71867201967e05691815044afb06bbad8a22 (patch) | |
| tree | 0161ac69ad1d0cddbaf09a3e14a96d14d6bec2a2 | |
| parent | 9587c6884290b04935c9e099690e95b0d282c628 (diff) | |
| download | emacs-19fb71867201967e05691815044afb06bbad8a22.tar.gz emacs-19fb71867201967e05691815044afb06bbad8a22.zip | |
* subr.el (last-input-char, last-command-char): Remove.
Fixes: debbugs:9195
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/subr.el | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 794de32b69b..b0763462419 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-07-18 Chong Yidong <cyd@gnu.org> | 1 | 2012-07-18 Chong Yidong <cyd@gnu.org> |
| 2 | 2 | ||
| 3 | * subr.el (last-input-char, last-command-char): Remove (Bug#9195). | ||
| 4 | |||
| 3 | * simple.el (count-words): Report on narrowing (Bug#9959). | 5 | * simple.el (count-words): Report on narrowing (Bug#9959). |
| 4 | 6 | ||
| 5 | * bindings.el: Bind M-= to count-words. | 7 | * bindings.el: Bind M-= to count-words. |
diff --git a/lisp/subr.el b/lisp/subr.el index 8952ea6a9e0..9268746f109 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1278,9 +1278,6 @@ to reread, so it now uses nil to mean `no event', instead of -1." | |||
| 1278 | ;; existing "for compatibility with Emacs version 18". | 1278 | ;; existing "for compatibility with Emacs version 18". |
| 1279 | (define-obsolete-variable-alias 'last-input-char 'last-input-event | 1279 | (define-obsolete-variable-alias 'last-input-char 'last-input-event |
| 1280 | "at least 19.34") | 1280 | "at least 19.34") |
| 1281 | (define-obsolete-variable-alias 'last-command-char 'last-command-event | ||
| 1282 | "at least 19.34") | ||
| 1283 | |||
| 1284 | 1281 | ||
| 1285 | ;;;; Alternate names for functions - these are not being phased out. | 1282 | ;;;; Alternate names for functions - these are not being phased out. |
| 1286 | 1283 | ||