diff options
| author | Dan Nicolaescu | 2008-03-19 04:00:52 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-03-19 04:00:52 +0000 |
| commit | 785fc616095fb112a1df88e79bcfa0d8554a7f68 (patch) | |
| tree | 09d47d7cb4841982a1eab31fc5c7d5769bfad84a | |
| parent | fd2d29b2bd3d8dbd29a2516d21fe53444689ff3e (diff) | |
| download | emacs-785fc616095fb112a1df88e79bcfa0d8554a7f68.tar.gz emacs-785fc616095fb112a1df88e79bcfa0d8554a7f68.zip | |
(font-lock-comment-face): Set the foreground for
the light background 8 colors case.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/font-lock.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bacfad225b0..f4daab758e4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2008-03-18 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2008-03-18 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * font-lock.el (font-lock-comment-face): Set the foreground for | ||
| 4 | the light background 8 colors case. | ||
| 5 | |||
| 3 | * vc-bzr.el (vc-bzr-print-log): Insert a file marker. Run the log | 6 | * vc-bzr.el (vc-bzr-print-log): Insert a file marker. Run the log |
| 4 | command for each file in the list. | 7 | command for each file in the list. |
| 5 | (vc-bzr-log-view-mode): Recognize the file marker. | 8 | (vc-bzr-log-view-mode): Recognize the file marker. |
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 0408d12b5d1..33238c275ec 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el | |||
| @@ -1838,7 +1838,7 @@ Sets various variables using `font-lock-defaults' (or, if nil, using | |||
| 1838 | (((class color) (min-colors 16) (background dark)) | 1838 | (((class color) (min-colors 16) (background dark)) |
| 1839 | (:foreground "red1")) | 1839 | (:foreground "red1")) |
| 1840 | (((class color) (min-colors 8) (background light)) | 1840 | (((class color) (min-colors 8) (background light)) |
| 1841 | ) | 1841 | (:foreground "red")) |
| 1842 | (((class color) (min-colors 8) (background dark)) | 1842 | (((class color) (min-colors 8) (background dark)) |
| 1843 | ) | 1843 | ) |
| 1844 | (t (:weight bold :slant italic))) | 1844 | (t (:weight bold :slant italic))) |