diff options
| author | Jim Blandy | 1992-11-16 01:38:47 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-16 01:38:47 +0000 |
| commit | 774b8191bdc536d6239bc62edf40e380d11141a4 (patch) | |
| tree | 0479d65ab690aea2a03e364930945f4790482b92 | |
| parent | 8e20fac72d52522db2c4b13e75a136772aea20bf (diff) | |
| download | emacs-774b8191bdc536d6239bc62edf40e380d11141a4.tar.gz emacs-774b8191bdc536d6239bc62edf40e380d11141a4.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.
* mlsupport.el (push-back-character): Same.
| -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 @@ | |||
| 80 | (fset (intern name) defn)) | 80 | (fset (intern name) defn)) |
| 81 | 81 | ||
| 82 | (defun push-back-character (char) | 82 | (defun push-back-character (char) |
| 83 | (setq unread-command-char char)) | 83 | (setq unread-command-event char)) |
| 84 | 84 | ||
| 85 | (defun to-col (column) | 85 | (defun to-col (column) |
| 86 | (indent-to column 0)) | 86 | (indent-to column 0)) |