# HG changeset patch # User Glenn Morris # Date 1277361051 25200 # Node ID 87794f1fc758600e7983e9b1f69bf4aa5b838d28 # Parent de58fd0baac514eeccb3526cd127f9e392093815 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. diff -r de58fd0baac5 -r 87794f1fc758 lisp/ChangeLog --- 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 + + * 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 -r de58fd0baac5 -r 87794f1fc758 lisp/bs.el --- 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.")