]> git.eshelyaron.com Git - emacs.git/commitdiff
(standard-display-8bit, standard-display-default): "?\ " -> "?\s".
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:47:02 +0000 (13:47 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:47:02 +0000 (13:47 +0000)
lisp/disp-table.el

index 7681e85b4aef6318952b69d3717fcadcc4b95c57..55438beb27a27226fba2f9179464936e13b69c49 100644 (file)
@@ -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))))