diff options
author | Jim Blandy <jimb@redhat.com> | 1992-11-16 01:38:47 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-11-16 01:38:47 +0000 |
commit | 774b8191bdc536d6239bc62edf40e380d11141a4 (patch) | |
tree | 0479d65ab690aea2a03e364930945f4790482b92 /lisp/emulation/mlsupport.el | |
parent | 8e20fac72d52522db2c4b13e75a136772aea20bf (diff) | |
download | emacs-774b8191bdc536d6239bc62edf40e380d11141a4.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.el | 2 |
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)) |