diff options
| -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 4ec62152db5..68e9f40a10f 100644 --- a/lisp/edmacro.el +++ b/lisp/edmacro.el | |||
| @@ -717,7 +717,7 @@ If START or END is negative, it counts from the end." | |||
| 717 | (setq res (edmacro-subseq res 2 -2))) | 717 | (setq res (edmacro-subseq res 2 -2))) |
| 718 | (if (and (not need-vector) | 718 | (if (and (not need-vector) |
| 719 | (loop for ch across res | 719 | (loop for ch across res |
| 720 | always (and (char-valid-p ch) | 720 | always (and (characterp ch) |
| 721 | (let ((ch2 (logand ch (lognot ?\M-\^@)))) | 721 | (let ((ch2 (logand ch (lognot ?\M-\^@)))) |
| 722 | (and (>= ch2 0) (<= ch2 127)))))) | 722 | (and (>= ch2 0) (<= ch2 127)))))) |
| 723 | (concat (loop for ch across res | 723 | (concat (loop for ch across res |