1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(listify-key-sequence-1): Update for change in CHAR_META.

This commit is contained in:
Richard M. Stallman 1995-01-09 09:47:15 +00:00
parent dce4372a8e
commit 0055054d0e

View file

@ -316,7 +316,7 @@ The normal global definition of the character C-x indirects to this keymap.")
;; The number is negative on most machines, but not on all!
(defconst listify-key-sequence-1
(lsh 1 7))
(setq listify-key-sequence-1 (logior (lsh 1 23) listify-key-sequence-1))
(setq listify-key-sequence-1 (logior (lsh 1 27) listify-key-sequence-1))
(defun listify-key-sequence (key)
"Convert a key sequence to a list of events."