summaryrefslogtreecommitdiff
path: root/lisp/diff-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r--lisp/diff-mode.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el
index 894a221539d..f83b5f78d46 100644
--- a/lisp/diff-mode.el
+++ b/lisp/diff-mode.el
@@ -249,11 +249,11 @@ when editing big diffs)."
: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 @@ when editing big diffs)."
("^[+>].*\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)))