Mercurial > emacs
diff lisp/diff-mode.el @ 37567:50d77d1b2d58
(diff-nonexistent-face, diff-font-lock-keywords):
Typo `nonexistant' -> `nonexistent'.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 04 May 2001 17:54:18 +0000 |
parents | e71362bfa695 |
children | 4e2d06e10072 |
line wrap: on
line diff
--- a/lisp/diff-mode.el Fri May 04 17:50:11 2001 +0000 +++ b/lisp/diff-mode.el Fri May 04 17:54:18 2001 +0000 @@ -249,11 +249,11 @@ :group 'diff-mode) (defvar diff-context-face 'diff-context-face) -(defface diff-nonexistant-face +(defface diff-nonexistent-face '((t (:inherit diff-file-header-face))) - "`diff-mode' face used to highlight nonexistant files in recursive diffs." + "`diff-mode' face used to highlight nonexistent files in recursive diffs." :group 'diff-mode) -(defvar diff-nonexistant-face 'diff-nonexistant-face) +(defvar diff-nonexistent-face 'diff-nonexistent-face) (defvar diff-font-lock-keywords '(("^\\(@@ -[0-9,]+ \\+[0-9,]+ @@\\)\\(.*\\)$" ;unified @@ -271,7 +271,7 @@ ("^[+>].*\n" . diff-added-face) ("^[-<].*\n" . diff-removed-face) ("^Index: \\(.+\\).*\n" (0 diff-header-face) (1 diff-index-face prepend)) - ("^Only in .*\n" . diff-nonexistant-face) + ("^Only in .*\n" . diff-nonexistent-face) ("^#.*" . font-lock-string-face) ("^[^-=+*!<>].*\n" . diff-context-face)))