Mercurial > emacs
changeset 74228:6081cf49eb34
(font-lock-mode): "?\ " -> "?\s".
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 27 Nov 2006 13:50:42 +0000 |
parents | de93c5d7bb99 |
children | 99a4797cbaf6 |
files | lisp/font-core.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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.