changeset 1611:2701f8d53d25

* 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.
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Nov 1992 01:34:30 +0000
parents fc2b0405bd87
children d0a00faa2c98
files lisp/progmodes/fortran.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/fortran.el	Mon Nov 16 01:33:17 1992 +0000
+++ b/lisp/progmodes/fortran.el	Mon Nov 16 01:34:30 1992 +0000
@@ -542,7 +542,7 @@
     (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 @@
 	    (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 ()