From: Dave Love Date: Wed, 16 Aug 2000 21:42:10 +0000 (+0000) Subject: (bs-mode-font-lock-keywords): Avoid testing for XEmacs. X-Git-Tag: emacs-pretest-21.0.90~2225 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a5b09d5a7555ab51451055955e8302061c2ceb2f;p=emacs.git (bs-mode-font-lock-keywords): Avoid testing for XEmacs. --- 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." '(1 font-lock-type-face append) '(1 'bold append)) ;; Buffername embedded by * (list "^\\(.*\\*.*\\*.*\\)$" - 1 (if bs--running-in-xemacs - ;; problem in XEmacs with font-lock-constant-face - (if (facep 'font-lock-constant-face) - 'font-lock-constant-face - 'font-lock-comment-face) - 'font-lock-constant-face)) + 1 + ;; problem in XEmacs with font-lock-constant-face + (if (facep 'font-lock-constant-face) + 'font-lock-constant-face + 'font-lock-comment-face)) ;; Dired-Buffers '("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face) ;; the star for modified buffers