diff options
| author | Jim Blandy | 1992-11-16 01:38:22 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 01:38:22 +0000 |
| commit | 8e20fac72d52522db2c4b13e75a136772aea20bf (patch) | |
| tree | 2fe55070ff3ff053949405ddf858ae02895749c7 | |
| parent | 9f0a6471ed3ef58f38b0bc74e30843856a860a14 (diff) | |
| download | emacs-8e20fac72d52522db2c4b13e75a136772aea20bf.tar.gz emacs-8e20fac72d52522db2c4b13e75a136772aea20bf.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.
* map-ynp.el (map-y-or-n-p): Same.
| -rw-r--r-- | lisp/map-ynp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/map-ynp.el b/lisp/map-ynp.el index 777c1e39614..37f9e702c86 100644 --- a/lisp/map-ynp.el +++ b/lisp/map-ynp.el | |||
| @@ -157,7 +157,7 @@ the current %s and exit." | |||
| 157 | (funcall actor elt) | 157 | (funcall actor elt) |
| 158 | (setq actions (1+ actions)))))) | 158 | (setq actions (1+ actions)))))) |
| 159 | ((= ?? char) | 159 | ((= ?? char) |
| 160 | (setq unread-command-char help-char) | 160 | (setq unread-command-event help-char) |
| 161 | (setq next (` (lambda () | 161 | (setq next (` (lambda () |
| 162 | (setq next '(, next)) | 162 | (setq next '(, next)) |
| 163 | '(, elt))))) | 163 | '(, elt))))) |