Mercurial > emacs
changeset 89494:00ee0befb8b9
(standard-display-default): Use characterp.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 10 Sep 2003 17:54:12 +0000 |
parents | add0d115c419 |
children | 5e5139b6cc59 |
files | lisp/disp-table.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/disp-table.el Wed Sep 10 17:53:50 2003 +0000 +++ b/lisp/disp-table.el Wed Sep 10 17:54:12 2003 +0000 @@ -123,7 +123,7 @@ (defun standard-display-default (l h) "Display characters in the range L to H using the default notation." (while (<= l h) - (if (and (>= l ?\ ) (char-valid-p l)) + (if (and (>= l ?\ ) (characterp l)) (aset standard-display-table l nil)) (setq l (1+ l))))