diff options
| -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.") |