changeset 109272:87794f1fc758

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.
author Glenn Morris <rgm@gnu.org>
date Wed, 23 Jun 2010 23:30:51 -0700
parents de58fd0baac5
children 15e91f601933
files lisp/ChangeLog lisp/bs.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Jun 23 10:22:36 2010 +0200
+++ b/lisp/ChangeLog	Wed Jun 23 23:30:51 2010 -0700
@@ -1,3 +1,8 @@
+2010-06-24  Yoni Rabkin  <yoni@rabkins.net>
+
+	* 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  <kfogel@red-bean.com>
 
 	* simple.el (compose-mail): Fix doc string to refer to
--- a/lisp/bs.el	Wed Jun 23 10:22:36 2010 +0200
+++ b/lisp/bs.el	Wed Jun 23 23:30:51 2010 -0700
@@ -195,7 +195,7 @@
 	     '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.")