mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(edmacro-parse-keys): Use characterp.
This commit is contained in:
parent
93fd8eebcc
commit
97443772e0
@ -717,7 +717,7 @@ If START or END is negative, it counts from the end."
|
||||
(setq res (edmacro-subseq res 2 -2)))
|
||||
(if (and (not need-vector)
|
||||
(loop for ch across res
|
||||
always (and (char-valid-p ch)
|
||||
always (and (characterp ch)
|
||||
(let ((ch2 (logand ch (lognot ?\M-\^@))))
|
||||
(and (>= ch2 0) (<= ch2 127))))))
|
||||
(concat (loop for ch across res
|
||||
|
Loading…
Reference in New Issue
Block a user