]> git.eshelyaron.com Git - emacs.git/commitdiff
(diff-nonexistent-face, diff-font-lock-keywords):
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 4 May 2001 17:56:03 +0000 (17:56 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 4 May 2001 17:56:03 +0000 (17:56 +0000)
Typo `nonexistant' -> `nonexistent'.

lisp/ChangeLog
lisp/diff-mode.el

index 30b52da45b5106021ac3f6e32bc1d901c7fa1073..dae87dbd851a1f9a11b28b9c24193e07728e899b 100644 (file)
@@ -1,11 +1,16 @@
+2001-05-04  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * diff-mode.el (diff-nonexistent-face, diff-font-lock-keywords):
+       Typo `nonexistant' -> `nonexistent'.
+
 2001-05-04  Martin Stjernholm  <bug-cc-mode@gnu.org>
 
-       * cc-cmds.el (c-electric-delete, c-electric-delete-forward): Split
-       `c-electric-delete' into two functions where
+       * cc-cmds.el (c-electric-delete, c-electric-delete-forward):
+       Split `c-electric-delete' into two functions where
        `c-electric-delete-forward' always deletes forward and
        `c-electric-delete' only contains the code necessary for XEmacs to
        choose between backward and forward deletion.
-       
+
        * cc-mode.el: `c-electric-delete-forward' is now bound to C-d to
        get the electric behavior on that key too.
        (c-fill-paragraph): Fixed bogus direct use of
index 894a221539d5ffdf79a289808cdc847721a3c854..f83b5f78d4658fbf32a1abde7ac4b27403ac39f1 100644 (file)
@@ -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)))