From b8ec3aa307ef2d4e35d134523cdc49295953a10b Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 16 Nov 1992 01:34:30 +0000 Subject: [PATCH] * 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. * fortran.el (fortran-abbrev-start, fortran-window-create-momentarily): Same. --- lisp/progmodes/fortran.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/progmodes/fortran.el b/lisp/progmodes/fortran.el index 7ce4d7b810a..2b2428b3977 100644 --- a/lisp/progmodes/fortran.el +++ b/lisp/progmodes/fortran.el @@ -542,7 +542,7 @@ Any other key combination is executed normally." (if (or (= (setq c (read-char)) ??) ;insert char if not equal to `?' (= c help-char)) (fortran-abbrev-help) - (setq unread-command-char c)))) + (setq unread-command-event c)))) (defun fortran-abbrev-help () "List the currently defined abbrevs in Fortran mode." @@ -605,7 +605,7 @@ See also `fortran-window-create'." (progn (message "Type SPC to continue editing.") (let ((char (read-char))) (or (equal char (string-to-char " ")) - (setq unread-command-char char)))))) + (setq unread-command-event char)))))) (fortran-window-create))) (defun fortran-split-line ()