(standard-display-default): Use characterp.
authorDave Love <fx@gnu.org>
Wed, 10 Sep 2003 17:54:12 +0000 (17:54 +0000)
committerDave Love <fx@gnu.org>
Wed, 10 Sep 2003 17:54:12 +0000 (17:54 +0000)
lisp/disp-table.el

index 174b5d2..106ccd0 100644 (file)
@@ -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))))