diff options
author | Dave Love <fx@gnu.org> | 2003-09-10 17:53:50 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2003-09-10 17:53:50 +0000 |
commit | 97443772e0967cbcfdb5e7f7a650256c7ea8b83e (patch) | |
tree | 0c1254bbf6d6b9f7e445c0ef1e036f063d2a72d6 /lisp/edmacro.el | |
parent | 93fd8eebcc43afc1879fbe2b6a08ae88f5e4e12a (diff) | |
download | emacs-97443772e0967cbcfdb5e7f7a650256c7ea8b83e.tar.gz |
(edmacro-parse-keys): Use characterp.
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 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." (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 |