diff lisp/subr.el @ 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 39ad4eda7fea
children a836ab73fb89
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))))