summaryrefslogtreecommitdiff
path: root/lisp/subr.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-01-09 09:47:15 +0000
committerRichard M. Stallman <rms@gnu.org>1995-01-09 09:47:15 +0000
commit40b06776044a3af82b638365474eabba99def934 (patch)
tree1d861afc86fae9bc0c4655be179185ddd7d50dd1 /lisp/subr.el
parent35e766b27ed16ec375989238eb9fffddcf6f73e8 (diff)
downloademacs-40b06776044a3af82b638365474eabba99def934.tar.gz
(listify-key-sequence-1): Update for change in CHAR_META.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r--lisp/subr.el2
1 files changed, 1 insertions, 1 deletions
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."