diff options
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r-- | lisp/disp-table.el | 2 |
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)))) |