emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113427: Spelling fixes for "does not exists".


From: Paul Eggert
Subject: [Emacs-diffs] trunk r113427: Spelling fixes for "does not exists".
Date: Tue, 16 Jul 2013 04:39:27 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113427
revision-id: address@hidden
parent: address@hidden
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Mon 2013-07-15 21:39:23 -0700
message:
  Spelling fixes for "does not exists".
modified:
  lisp/cedet/semantic/bovine/el.el el.el-20091113204419-o5vbwnq5f7feedwu-11248
  lisp/gnus/registry.el          registry.el-20110405233600-78m2p6yjjfuhxag8-1
  lisp/net/tramp-compat.el       
trampcompat.el-20091113204419-o5vbwnq5f7feedwu-7298
  lisp/org/org-freemind.el       
orgfreemind.el-20091113204419-o5vbwnq5f7feedwu-11412
  src/gfilenotify.c              gfilenotify.c-20130528100009-4z0x3dhiuzxnn8hq-1
=== modified file 'lisp/cedet/semantic/bovine/el.el'
--- a/lisp/cedet/semantic/bovine/el.el  2013-06-02 13:33:09 +0000
+++ b/lisp/cedet/semantic/bovine/el.el  2013-07-16 04:39:23 +0000
@@ -474,7 +474,7 @@
        ((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

=== modified file 'lisp/gnus/registry.el'
--- a/lisp/gnus/registry.el     2013-06-02 14:16:31 +0000
+++ b/lisp/gnus/registry.el     2013-07-16 04:39:23 +0000
@@ -228,7 +228,7 @@
       (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?

=== modified file 'lisp/net/tramp-compat.el'
--- a/lisp/net/tramp-compat.el  2013-04-22 10:26:09 +0000
+++ b/lisp/net/tramp-compat.el  2013-07-16 04:39:23 +0000
@@ -184,7 +184,7 @@
        '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 @@
       (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

=== modified file 'lisp/org/org-freemind.el'
--- a/lisp/org/org-freemind.el  2013-03-05 17:13:01 +0000
+++ b/lisp/org/org-freemind.el  2013-07-16 04:39:23 +0000
@@ -598,7 +598,7 @@
 
 (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.

=== modified file 'src/gfilenotify.c'
--- a/src/gfilenotify.c 2013-07-04 09:29:28 +0000
+++ b/src/gfilenotify.c 2013-07-16 04:39:23 +0000
@@ -173,7 +173,7 @@
   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);
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]