* subr.el (listify-key-sequence): Use a character constant to

decide which bits to flip, not an integer constant.
This commit is contained in:
Jim Blandy 1993-05-03 03:40:40 +00:00
parent 684602b92e
commit 15e0fbfaff

View file

@ -236,7 +236,7 @@ The normal global definition of the character C-x indirects to this keymap.")
(append key nil)
(mapcar (function (lambda (c)
(if (> c 127)
(logxor c 8388736)
(logxor c ?\M-\200)
c)))
(append key nil))))