summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-11-16 01:28:14 +0000
committerJim Blandy <jimb@redhat.com>1992-11-16 01:28:14 +0000
commit35d56dcf9a346ae76de73ed2fac55949c802a28d (patch)
treecf00180d7324fe7923bceb1e1169abdd6f1b2e42
parent79d52eea3e6b77e383d4641f44644949ee89ff98 (diff)
downloademacs-35d56dcf9a346ae76de73ed2fac55949c802a28d.tar.gz
* 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. * comint.el (comint-dynamic-list-completions): Same.
-rw-r--r--lisp/comint.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index bf7aea518d8..94e5201cd9f 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -1091,7 +1091,7 @@ it just adds completion characters to the end of the filename."
(let ((ch (read-char)))
(if (= ch ?\ )
(set-window-configuration conf)
- (setq unread-command-char ch))))))))
+ (setq unread-command-event ch))))))))
;;; Converting process modes to use comint mode
;;; ===========================================================================