diff options
| -rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
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.") | |||
| 236 | (append key nil) | 236 | (append key nil) |
| 237 | (mapcar (function (lambda (c) | 237 | (mapcar (function (lambda (c) |
| 238 | (if (> c 127) | 238 | (if (> c 127) |
| 239 | (logxor c 8388736) | 239 | (logxor c ?\M-\200) |
| 240 | c))) | 240 | c))) |
| 241 | (append key nil)))) | 241 | (append key nil)))) |
| 242 | 242 | ||