diff lisp/font-core.el @ 74228:6081cf49eb34

(font-lock-mode): "?\ " -> "?\s".
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 27 Nov 2006 13:50:42 +0000
parents 43fdd7c68976
children e3694f1cb928 f1d13e615070
line wrap: on
line diff
--- a/lisp/font-core.el	Mon Nov 27 13:49:57 2006 +0000
+++ b/lisp/font-core.el	Mon Nov 27 13:50:42 2006 +0000
@@ -149,7 +149,7 @@
   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.