From 15e0fbfaff4bdc6f0e5557ef65b5bfac8a753ee3 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 3 May 1993 03:40:40 +0000 Subject: [PATCH] * subr.el (listify-key-sequence): Use a character constant to decide which bits to flip, not an integer constant. --- lisp/subr.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/subr.el b/lisp/subr.el index 932bf0b96c4..74c8968fc1c 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -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))))