diff lisp/disp-table.el @ 89494:00ee0befb8b9

(standard-display-default): Use characterp.
author Dave Love <fx@gnu.org>
date Wed, 10 Sep 2003 17:54:12 +0000
parents 375f2633d815
children 68c22ea6027c
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))))