summaryrefslogtreecommitdiff
path: root/lisp/emulation/mlsupport.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-11-16 01:38:47 +0000
committerJim Blandy <jimb@redhat.com>1992-11-16 01:38:47 +0000
commit7f1490654b1fb642708fb95619aedcb44e98d9be (patch)
tree1ca752a7424c98a735024123a30188f439787add /lisp/emulation/mlsupport.el
parent1d53468616096250ba1d70295e6493dd9f320adf (diff)
downloademacs-7f1490654b1fb642708fb95619aedcb44e98d9be.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. * mlsupport.el (push-back-character): Same.
Diffstat (limited to 'lisp/emulation/mlsupport.el')
-rw-r--r--lisp/emulation/mlsupport.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/mlsupport.el b/lisp/emulation/mlsupport.el
index 3cbe0b099f3..1d51db77d04 100644
--- a/lisp/emulation/mlsupport.el
+++ b/lisp/emulation/mlsupport.el
@@ -80,7 +80,7 @@
(fset (intern name) defn))
(defun push-back-character (char)
- (setq unread-command-char char))
+ (setq unread-command-event char))
(defun to-col (column)
(indent-to column 0))