# HG changeset patch # User Dave Love # Date 966462130 0 # Node ID 939272c1c28b0dd57ca4de84d9e118f971f5e447 # Parent 495502641770a42090645b9c1f745e4a07ece4cd (bs-mode-font-lock-keywords): Avoid testing for XEmacs. diff -r 495502641770 -r 939272c1c28b lisp/bs.el --- a/lisp/bs.el Wed Aug 16 21:31:32 2000 +0000 +++ b/lisp/bs.el Wed Aug 16 21:42:10 2000 +0000 @@ -195,12 +195,11 @@ '(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