diff options
| author | Jim Blandy | 1992-11-16 01:36:46 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 01:36:46 +0000 |
| commit | efa6a4df9a7dba16eb75c508b0f565aeaa99bc54 (patch) | |
| tree | 2103b96aff37c720798eebfe55f364d77a364a0d /lisp/info.el | |
| parent | 7d70f8c44e30408853f27b61204d438baaa15380 (diff) | |
| download | emacs-efa6a4df9a7dba16eb75c508b0f565aeaa99bc54.tar.gz emacs-efa6a4df9a7dba16eb75c508b0f565aeaa99bc54.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.
* info.el (Info-summary): Same.
Diffstat (limited to 'lisp/info.el')
| -rw-r--r-- | lisp/info.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el index 353b928bf37..abda4427a0d 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -785,7 +785,7 @@ Completion is allowed, and the menu item point is on is the default." | |||
| 785 | (message (if flag "Type Space to see more" | 785 | (message (if flag "Type Space to see more" |
| 786 | "Type Space to return to Info")) | 786 | "Type Space to return to Info")) |
| 787 | (if (/= ?\ (setq ch (read-char))) | 787 | (if (/= ?\ (setq ch (read-char))) |
| 788 | (progn (setq unread-command-char ch) nil) | 788 | (progn (setq unread-command-event ch) nil) |
| 789 | flag)) | 789 | flag)) |
| 790 | (scroll-up))))) | 790 | (scroll-up))))) |
| 791 | 791 | ||