aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-01-09 09:47:15 +0000
committerRichard M. Stallman <[email protected]>1995-01-09 09:47:15 +0000
commit0055054d0e0a2fe09c46118e75536be0594906f6 (patch)
tree283def8ec279cb9cba58ad75a70ac1702a8a793e /lisp
parentdce4372a8e654011b104f524775b52377713a5a3 (diff)
(listify-key-sequence-1): Update for change in CHAR_META.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el
index ffaab47507..a95f4d58ef 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."