]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-mode): "?\ " -> "?\s".
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:50:42 +0000 (13:50 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 13:50:42 +0000 (13:50 +0000)
lisp/font-core.el

index 85bbf60f0d9dd8604b527e8f77ea849fd2ff2be1..6a3f2b7698f6db9b462153631ca30a3eb4ea5f87 100644 (file)
@@ -149,7 +149,7 @@ your own function which is called when `font-lock-mode' is toggled via
   nil nil nil
   ;; Don't turn on Font Lock mode if we don't have a display (we're running a
   ;; batch job) or if the buffer is invisible (the name starts with a space).
-  (when (or noninteractive (eq (aref (buffer-name) 0) ?\ ))
+  (when (or noninteractive (eq (aref (buffer-name) 0) ?\s))
     (setq font-lock-mode nil))
   (funcall font-lock-function font-lock-mode)
   ;; Arrange to unfontify this buffer if we change major mode later.