mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(bs-mode-font-lock-keywords): Avoid testing for XEmacs.
This commit is contained in:
parent
b705725947
commit
a5b09d5a75
@ -195,12 +195,11 @@ return a string representing the columns value."
|
|||||||
'(1 font-lock-type-face append) '(1 'bold append))
|
'(1 font-lock-type-face append) '(1 'bold append))
|
||||||
;; Buffername embedded by *
|
;; Buffername embedded by *
|
||||||
(list "^\\(.*\\*.*\\*.*\\)$"
|
(list "^\\(.*\\*.*\\*.*\\)$"
|
||||||
1 (if bs--running-in-xemacs
|
1
|
||||||
;; problem in XEmacs with font-lock-constant-face
|
;; problem in XEmacs with font-lock-constant-face
|
||||||
(if (facep 'font-lock-constant-face)
|
(if (facep 'font-lock-constant-face)
|
||||||
'font-lock-constant-face
|
'font-lock-constant-face
|
||||||
'font-lock-comment-face)
|
'font-lock-comment-face))
|
||||||
'font-lock-constant-face))
|
|
||||||
;; Dired-Buffers
|
;; Dired-Buffers
|
||||||
'("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face)
|
'("^..\\(.*Dired by .*\\)$" 1 font-lock-function-name-face)
|
||||||
;; the star for modified buffers
|
;; the star for modified buffers
|
||||||
|
Loading…
Reference in New Issue
Block a user