summaryrefslogtreecommitdiff
path: root/lisp/bs.el
diff options
context:
space:
mode:
authorYoni Rabkin <yoni@rabkins.net>2010-06-23 23:30:51 -0700
committerGlenn Morris <rgm@gnu.org>2010-06-23 23:30:51 -0700
commit29115ca9b0ba59c66c2911ebbb0e651b31e7b3db (patch)
tree6d6472c20426276e6c314334617a7ec94b3e366a /lisp/bs.el
parent5721b4ed163946f1d3828f978f1c2bb43f3a9c61 (diff)
downloademacs-29115ca9b0ba59c66c2911ebbb0e651b31e7b3db.tar.gz
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.
Diffstat (limited to 'lisp/bs.el')
-rw-r--r--lisp/bs.el2
1 files changed, 1 insertions, 1 deletions
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.")