diff options
Diffstat (limited to 'lisp/edmacro.el')
| -rw-r--r-- | lisp/edmacro.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el index 78180627950..c3d9bc5a980 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el | |||
| @@ -547,7 +547,7 @@ doubt, use whitespace." | |||
| 547 | ?\M-\^@ ?\s-\^@ ?\S-\^@) | 547 | ?\M-\^@ ?\s-\^@ ?\S-\^@) |
| 548 | when (/= (logand ch bit) 0) | 548 | when (/= (logand ch bit) 0) |
| 549 | concat (format "%c-" pf)) | 549 | concat (format "%c-" pf)) |
| 550 | (let ((ch2 (logand ch (1- (lsh 1 18))))) | 550 | (let ((ch2 (logand ch (1- (ash 1 18))))) |
| 551 | (cond ((<= ch2 32) | 551 | (cond ((<= ch2 32) |
| 552 | (pcase ch2 | 552 | (pcase ch2 |
| 553 | (0 "NUL") (9 "TAB") (10 "LFD") | 553 | (0 "NUL") (9 "TAB") (10 "LFD") |