emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/disp-table.el,v


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/disp-table.el,v
Date: Mon, 27 Nov 2006 13:47:02 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      06/11/27 13:47:02

Index: disp-table.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/disp-table.el,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -b -r1.61 -r1.62
--- disp-table.el       6 Feb 2006 14:33:32 -0000       1.61
+++ disp-table.el       27 Nov 2006 13:47:02 -0000      1.62
@@ -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))))
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]