changeset 2634:9d0a5f376195

* subr.el (listify-key-sequence): Use a character constant to decide which bits to flip, not an integer constant.
author Jim Blandy <jimb@redhat.com>
date Mon, 03 May 1993 03:40:40 +0000
parents c703d66d09c2
children 87b070dfb087
files lisp/subr.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/subr.el	Mon May 03 03:40:10 1993 +0000
+++ b/lisp/subr.el	Mon May 03 03:40:40 1993 +0000
@@ -236,7 +236,7 @@
       (append key nil)
     (mapcar (function (lambda (c)
 			(if (> c 127)
-			    (logxor c 8388736)
+			    (logxor c ?\M-\200)
 			  c)))
 	    (append key nil))))