From: Dave Love Date: Wed, 10 Sep 2003 17:54:12 +0000 (+0000) Subject: (standard-display-default): Use characterp. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1854 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=96a61661d0973dca8b9b802208a8e4f0c4cdaeb8;p=emacs.git (standard-display-default): Use characterp. --- diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 174b5d27211..106ccd028e2 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -123,7 +123,7 @@ Valid symbols are `truncation', `wrap', `escape', `control', (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))))