Minor bs.el font-lock change.
authorYoni Rabkin <yoni@rabkins.net>
Thu, 24 Jun 2010 06:30:51 +0000 (23:30 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 24 Jun 2010 06:30:51 +0000 (23:30 -0700)
* 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
lisp/bs.el

index 64bce4a..c4de198 100644 (file)
@@ -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
index 307b3c4..ef2e583 100644 (file)
@@ -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.")