summaryrefslogtreecommitdiff
path: root/lisp/disp-table.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r--lisp/disp-table.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index 1474a82885c..22d803517cb 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -126,7 +126,7 @@ Valid symbols are `truncation', `wrap', `escape', `control',
(or standard-display-table
(setq standard-display-table (make-display-table)))
(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))))