]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes for "does not exists".
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Jul 2013 04:39:23 +0000 (21:39 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 16 Jul 2013 04:39:23 +0000 (21:39 -0700)
lisp/cedet/semantic/bovine/el.el
lisp/gnus/registry.el
lisp/net/tramp-compat.el
lisp/org/org-freemind.el
src/gfilenotify.c

index 07e0e08bbaf5ed4c4232f29e7c750429a268dfbb..0bbe3c61d76de76c57ba68b8b5c3bbc47f7db5b5 100644 (file)
@@ -474,7 +474,7 @@ Return a bovination list to use."
        ((and name (file-exists-p (concat name ".el.gz")))
        ;; This is the linux distro case.
        (concat name ".el.gz"))
-       ;; source file does not exists
+       ;; Source file does not exist.
        (name
        (message "semantic: cannot find source file %s" (concat name ".el")))
        (t
index 37fe644074371f5fe450dc125f5d2c737211eea4..b056ac5e7f34ccb8c5fae565dd14aa67e097a771 100644 (file)
@@ -228,7 +228,7 @@ With assert non-nil, errors out if the key does not exist already."
       (let ((entry (gethash key data)))
        (when assert
          (assert entry nil
-                 "Key %s does not exists in database" key))
+                 "Key %s does not exist in database" key))
        ;; clean entry from the secondary indices
        (dolist (tr tracked)
          ;; is this tracked symbol indexed?
index d4115352b34a3783ddf1f014508328b12327ac0a..2b0ea74c49203c99bb6b4113eb11e6ec668d6d3c 100644 (file)
        'file-expand-wildcards 'around 'tramp-advice-file-expand-wildcards)
        (ad-activate 'file-expand-wildcards)))))
 
-;; `with-temp-message' does not exists in XEmacs.
+;; `with-temp-message' does not exist in XEmacs.
 (if (fboundp 'with-temp-message)
     (defalias 'tramp-compat-with-temp-message 'with-temp-message)
   (defmacro tramp-compat-with-temp-message (message &rest body)
@@ -292,7 +292,7 @@ Not actually used.  Use `(format \"%o\" i)' instead?"
       (error "Non-octal junk in string `%s'" x))
     (string-to-number ostr 8)))
 
-;; ID-FORMAT does not exists in XEmacs.
+;; ID-FORMAT does not exist in XEmacs.
 (defun tramp-compat-file-attributes (filename &optional id-format)
   "Like `file-attributes' for Tramp files (compat function)."
   (cond
index 3b1c6863f5419db72b4d2c828b8996ae2a13c0f5..2ee58501ca120c1abf2689c95b2b1e3681f0c863 100644 (file)
@@ -598,7 +598,7 @@ DRAWERS-REGEXP are converted to freemind notes."
 
 (defun org-freemind-check-overwrite (file interactively)
   "Check if file FILE already exists.
-If FILE does not exists return t.
+If FILE does not exist return t.
 
 If INTERACTIVELY is non-nil ask if the file should be replaced
 and return t/nil if it should/should not be replaced.
index 4e684d1fb54d07b7c98da3908ebf836ba41cc056..47b645bc075b44e5ed64e9c33c84ef4139caf4cd 100644 (file)
@@ -173,7 +173,7 @@ will be reported only in case of the 'moved' event.  */)
   CHECK_STRING (file);
   file = Fdirectory_file_name (Fexpand_file_name (file, Qnil));
   if (NILP (Ffile_exists_p (file)))
-    report_file_error ("File does not exists", Fcons (file, Qnil));
+    report_file_error ("File does not exist", list1 (file));
 
   CHECK_LIST (flags);