summaryrefslogtreecommitdiff
path: root/lisp/diff-mode.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2001-05-04 17:56:03 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2001-05-04 17:56:03 +0000
commit7dfb000f42294f329cf85be99b9420f68ab0f6d9 (patch)
treead3ba7a8792388a625666e0f8b934414853babb3 /lisp/diff-mode.el
parente8918aee02dbcf5f88b1e05dec33932e72acc20f (diff)
downloademacs-7dfb000f42294f329cf85be99b9420f68ab0f6d9.tar.gz
emacs-7dfb000f42294f329cf85be99b9420f68ab0f6d9.tar.bz2
emacs-7dfb000f42294f329cf85be99b9420f68ab0f6d9.zip
(diff-nonexistent-face, diff-font-lock-keywords):
Typo `nonexistant' -> `nonexistent'.
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)))