1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-29 19:48:19 +00:00

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.
This commit is contained in:
Yoni Rabkin 2010-06-23 23:30:51 -07:00 committed by Glenn Morris
parent 5721b4ed16
commit 29115ca9b0
2 changed files with 6 additions and 1 deletions

View 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

View 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.")