diff options
author | Juri Linkov <juri@jurta.org> | 2005-07-19 14:42:40 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2005-07-19 14:42:40 +0000 |
commit | 050dcc13ec3269b5dcf805a61c65ad1f905786a4 (patch) | |
tree | 1352a219bc60b003d0fd8a63bde9bf776b6ca858 /lisp/diff-mode.el | |
parent | 09ca832919063637ec712c4923323888329937ff (diff) | |
download | emacs-050dcc13ec3269b5dcf805a61c65ad1f905786a4.tar.gz |
(diff-font-lock-keywords): Simplify comments fontifying rule.
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r-- | lisp/diff-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index 38aeb01877c..f10ac7d57d2 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -339,8 +339,8 @@ when editing big diffs)." (0 diff-header-face) (1 diff-index-face prepend)) ("^Only in .*\n" . diff-nonexistent-face) ("^\\(#\\)\\(.*\\)" - (1 (eval font-lock-comment-delimiter-face)) - (2 (eval font-lock-comment-face))) + (1 font-lock-comment-delimiter-face) + (2 font-lock-comment-face)) ("^[^-=+*!<>#].*\n" (0 diff-context-face)))) (defconst diff-font-lock-defaults |