# HG changeset patch # User Jim Blandy # Date 736400440 0 # Node ID 9d0a5f37619540c46da35fd9cd1adc11aea8d1cb # Parent c703d66d09c299f6f7af657cb6ca3304da9d9774 * subr.el (listify-key-sequence): Use a character constant to decide which bits to flip, not an integer constant. diff -r c703d66d09c2 -r 9d0a5f376195 lisp/subr.el --- 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))))