From: Richard M. Stallman Date: Mon, 9 Jan 1995 09:47:15 +0000 (+0000) Subject: (listify-key-sequence-1): Update for change in CHAR_META. X-Git-Tag: emacs-19.34~5490 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0055054d0e0a2fe09c46118e75536be0594906f6;p=emacs.git (listify-key-sequence-1): Update for change in CHAR_META. --- diff --git a/lisp/subr.el b/lisp/subr.el index ffaab475073..a95f4d58efd 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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."