aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-11-16 01:36:46 +0000
committerJim Blandy1992-11-16 01:36:46 +0000
commitefa6a4df9a7dba16eb75c508b0f565aeaa99bc54 (patch)
tree2103b96aff37c720798eebfe55f364d77a364a0d
parent7d70f8c44e30408853f27b61204d438baaa15380 (diff)
downloademacs-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.
-rw-r--r--lisp/info.el2
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