changeset 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 f49590062e8e
children 60fc47c60ce2
files lisp/diff-mode.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
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)))