From 29115ca9b0ba59c66c2911ebbb0e651b31e7b3db Mon Sep 17 00:00:00 2001 From: Yoni Rabkin Date: Wed, 23 Jun 2010 23:30:51 -0700 Subject: [PATCH] Minor bs.el font-lock change. * lisp/bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern, since it is not present when using some non-default switches. --- lisp/ChangeLog | 5 +++++ lisp/bs.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 64bce4a24a4..c4de198ab29 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-06-24 Yoni Rabkin + + * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern, + since it is not present when using some non-default switches. + 2010-06-23 Karl Fogel * simple.el (compose-mail): Fix doc string to refer to diff --git a/lisp/bs.el b/lisp/bs.el index 307b3c4ae9a..ef2e5834edc 100644 --- a/lisp/bs.el +++ b/lisp/bs.el @@ -195,7 +195,7 @@ return a string representing the column's value." 'font-lock-constant-face 'font-lock-comment-face)) ;; Dired-Buffers - '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face) + '("^..\\(.*Dired .*\\)$" 1 font-lock-function-name-face) ;; the star for modified buffers '("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face)) "Default font lock expressions for Buffer Selection Menu.") -- 2.11.4.GIT