diff options
| author | Yoni Rabkin | 2010-06-23 23:30:51 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-06-23 23:30:51 -0700 |
| commit | 29115ca9b0ba59c66c2911ebbb0e651b31e7b3db (patch) | |
| tree | 6d6472c20426276e6c314334617a7ec94b3e366a | |
| parent | 5721b4ed163946f1d3828f978f1c2bb43f3a9c61 (diff) | |
| download | emacs-29115ca9b0ba59c66c2911ebbb0e651b31e7b3db.tar.gz emacs-29115ca9b0ba59c66c2911ebbb0e651b31e7b3db.zip | |
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.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/bs.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 64bce4a24a4..c4de198ab29 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-06-24 Yoni Rabkin <yoni@rabkins.net> | ||
| 2 | |||
| 3 | * bs.el (bs-mode-font-lock-keywords): Remove "by" from Dired pattern, | ||
| 4 | since it is not present when using some non-default switches. | ||
| 5 | |||
| 1 | 2010-06-23 Karl Fogel <kfogel@red-bean.com> | 6 | 2010-06-23 Karl Fogel <kfogel@red-bean.com> |
| 2 | 7 | ||
| 3 | * simple.el (compose-mail): Fix doc string to refer to | 8 | * simple.el (compose-mail): Fix doc string to refer to |
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." | |||
| 195 | 'font-lock-constant-face | 195 | 'font-lock-constant-face |
| 196 | 'font-lock-comment-face)) | 196 | 'font-lock-comment-face)) |
| 197 | ;; Dired-Buffers | 197 | ;; Dired-Buffers |
| 198 | '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face) | 198 | '("^..\\(.*Dired .*\\)$" 1 font-lock-function-name-face) |
| 199 | ;; the star for modified buffers | 199 | ;; the star for modified buffers |
| 200 | '("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face)) | 200 | '("^.\\(\\*\\) +[^\\*]" 1 font-lock-comment-face)) |
| 201 | "Default font lock expressions for Buffer Selection Menu.") | 201 | "Default font lock expressions for Buffer Selection Menu.") |