diff options
author | Glenn Morris <rgm@gnu.org> | 2009-01-09 05:00:56 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-01-09 05:00:56 +0000 |
commit | 1e4bd40da283e6bbd9f501b7fcbc748353173f41 (patch) | |
tree | 023038713fe26febec1d66ff460fe26aea104dc4 /lisp/obsolete | |
parent | cfa29281070a1f7868ed42f330d9a666b2fc39e2 (diff) | |
download | emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.tar.gz emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.tar.bz2 emacs-1e4bd40da283e6bbd9f501b7fcbc748353173f41.zip |
Replace last-input-char with last-input-event.
Diffstat (limited to 'lisp/obsolete')
-rw-r--r-- | lisp/obsolete/iso-acc.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/obsolete/iso-acc.el b/lisp/obsolete/iso-acc.el index beb4a5d6b4c..ed949cd0eb3 100644 --- a/lisp/obsolete/iso-acc.el +++ b/lisp/obsolete/iso-acc.el @@ -287,9 +287,9 @@ the language you choose)." "Modify the following character by adding an accent to it." ;; Pick up the accent character. (if (and iso-accents-mode - (memq last-input-char iso-accents-enable)) + (memq last-input-event iso-accents-enable)) (iso-accents-compose prompt) - (vector last-input-char))) + (vector last-input-event))) ;; The iso-accents-compose function is called deep inside Emacs' read @@ -302,7 +302,7 @@ the language you choose)." ;; window's display matrix. (defun iso-accents-compose (prompt) - (let* ((first-char last-input-char) + (let* ((first-char last-input-event) (list (assq first-char iso-accents-list)) ;; Wait for the second key and look up the combination. (second-char (if (or prompt |