mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
This commit is contained in:
parent
b705725947
commit
a5b09d5a75
11
lisp/bs.el
11
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
|
||||
|
Loading…
Reference in New Issue
Block a user