summaryrefslogtreecommitdiff
path: root/lisp/disp-table.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-27 13:47:02 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-27 13:47:02 +0000
commitdae50e4f58255425d815d23cd77a805704c55c12 (patch)
tree1758717481e1e603a4dcb9e8eacd91a30d37d28c /lisp/disp-table.el
parent992dfd90e0edf7034b7e8e9d69c3667fe7c3a48d (diff)
downloademacs-dae50e4f58255425d815d23cd77a805704c55c12.tar.gz
(standard-display-8bit, standard-display-default): "?\ " -> "?\s".
Diffstat (limited to 'lisp/disp-table.el')
-rw-r--r--lisp/disp-table.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/disp-table.el b/lisp/disp-table.el
index 7681e85b4ae..55438beb27a 100644
--- a/lisp/disp-table.el
+++ b/lisp/disp-table.el
@@ -117,7 +117,7 @@ Valid symbols are `truncation', `wrap', `escape', `control',
(or standard-display-table
(setq standard-display-table (make-display-table)))
(while (<= l h)
- (aset standard-display-table l (if (or (< l ?\ ) (>= l 127)) (vector l)))
+ (aset standard-display-table l (if (or (< l ?\s) (>= l 127)) (vector l)))
(setq l (1+ l))))
;;;###autoload
@@ -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 ?\s) (char-valid-p l))
(aset standard-display-table l nil))
(setq l (1+ l))))