From dae50e4f58255425d815d23cd77a805704c55c12 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Mon, 27 Nov 2006 13:47:02 +0000 Subject: [PATCH] (standard-display-8bit, standard-display-default): "?\ " -> "?\s". --- lisp/disp-table.el | 4 ++-- 1 file 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)))) -- 2.39.2