aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-08-16 21:42:10 +0000
committerDave Love2000-08-16 21:42:10 +0000
commita5b09d5a7555ab51451055955e8302061c2ceb2f (patch)
tree9141dc8d28c81f8810e8b6e50138d0e15ba34e76
parentb705725947839bdfbc01a9f0189c95d606617d7c (diff)
downloademacs-a5b09d5a7555ab51451055955e8302061c2ceb2f.tar.gz
emacs-a5b09d5a7555ab51451055955e8302061c2ceb2f.zip
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
-rw-r--r--lisp/bs.el11
1 files changed, 5 insertions, 6 deletions
diff --git a/lisp/bs.el b/lisp/bs.el
index 48779cb98e5..613b5ba98b9 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -195,12 +195,11 @@ return a string representing the columns value."
195 '(1 font-lock-type-face append) '(1 'bold append)) 195 '(1 font-lock-type-face append) '(1 'bold append))
196 ;; Buffername embedded by * 196 ;; Buffername embedded by *
197 (list "^\\(.*\\*.*\\*.*\\)$" 197 (list "^\\(.*\\*.*\\*.*\\)$"
198 1 (if bs--running-in-xemacs 198 1
199 ;; problem in XEmacs with font-lock-constant-face 199 ;; problem in XEmacs with font-lock-constant-face
200 (if (facep 'font-lock-constant-face) 200 (if (facep 'font-lock-constant-face)
201 'font-lock-constant-face 201 'font-lock-constant-face
202 'font-lock-comment-face) 202 'font-lock-comment-face))
203 'font-lock-constant-face))
204 ;; Dired-Buffers 203 ;; Dired-Buffers
205 '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face) 204 '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face)
206 ;; the star for modified buffers 205 ;; the star for modified buffers