# HG changeset patch # User Stefan Monnier # Date 988998858 0 # Node ID 50d77d1b2d58c892350cf7e449180ff6d3b29363 # Parent f49590062e8e39cabc16a8acd741004452635ad9 (diff-nonexistent-face, diff-font-lock-keywords): Typo `nonexistant' -> `nonexistent'. diff -r f49590062e8e -r 50d77d1b2d58 lisp/diff-mode.el --- 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)))