changeset 74222:2a0693f1be07

(standard-display-8bit, standard-display-default): "?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 27 Nov 2006 13:47:02 +0000
parents 3146bd0e5646
children e658f2abf575
files lisp/disp-table.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/disp-table.el	Mon Nov 27 10:01:04 2006 +0000
+++ b/lisp/disp-table.el	Mon Nov 27 13:47:02 2006 +0000
@@ -117,7 +117,7 @@
   (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 @@
   (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))))