diff options
| author | Jim Blandy | 1992-11-16 01:30:45 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 01:30:45 +0000 |
| commit | 4da495f314516b688ef0737e88bc7d0d0be30420 (patch) | |
| tree | 67cd95134747593824fa9d38825277dcd9e280ea | |
| parent | b351399ac87198cfcf5a247fb6d0eaa670d1a918 (diff) | |
| download | emacs-4da495f314516b688ef0737e88bc7d0d0be30420.tar.gz emacs-4da495f314516b688ef0737e88bc7d0d0be30420.zip | |
* bytecomp.el: Declare unread-command-char an obsolete variable.
* vip.el (vip-escape-to-emacs, vip-prefix-arg-value,
vip-prefix-arg-com): Use unread-command-event instead of
unread-command-char; respect its new semantics.
* ehelp.el (electric-help-command-loop): Same.
| -rw-r--r-- | lisp/ehelp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/ehelp.el b/lisp/ehelp.el index 050a6cc48a6..c6a7b77716a 100644 --- a/lisp/ehelp.el +++ b/lisp/ehelp.el | |||
| @@ -119,8 +119,8 @@ BUFFER is put into `default-major-mode' (or `fundamental-mode') when we exit" | |||
| 119 | (catch 'exit | 119 | (catch 'exit |
| 120 | (if (pos-visible-in-window-p (point-max)) | 120 | (if (pos-visible-in-window-p (point-max)) |
| 121 | (progn (message "<<< Press Space to bury the help buffer >>>") | 121 | (progn (message "<<< Press Space to bury the help buffer >>>") |
| 122 | (if (= (setq unread-command-char (read-char)) ?\ ) | 122 | (if (= (setq unread-command-event (read-char)) ?\ ) |
| 123 | (progn (setq unread-command-char -1) | 123 | (progn (setq unread-command-event nil) |
| 124 | (throw 'exit t))))) | 124 | (throw 'exit t))))) |
| 125 | (let (up down both neither | 125 | (let (up down both neither |
| 126 | (standard (and (eq (key-binding " ") | 126 | (standard (and (eq (key-binding " ") |