aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorPaul Eggert2013-07-15 21:39:23 -0700
committerPaul Eggert2013-07-15 21:39:23 -0700
commit8abee653a22b0b879a9376c1dce3e3ca2e2f31d6 (patch)
tree5e77b7fc46d3755bf261934c9fd472d72c6299be /lisp
parentda48522e656667d815a591435b59aced91326035 (diff)
downloademacs-8abee653a22b0b879a9376c1dce3e3ca2e2f31d6.tar.gz
emacs-8abee653a22b0b879a9376c1dce3e3ca2e2f31d6.zip
Spelling fixes for "does not exists".
Diffstat (limited to 'lisp')
-rw-r--r--lisp/cedet/semantic/bovine/el.el2
-rw-r--r--lisp/gnus/registry.el2
-rw-r--r--lisp/net/tramp-compat.el4
-rw-r--r--lisp/org/org-freemind.el2
4 files changed, 5 insertions, 5 deletions
diff --git a/lisp/cedet/semantic/bovine/el.el b/lisp/cedet/semantic/bovine/el.el
index 07e0e08bbaf..0bbe3c61d76 100644
--- a/lisp/cedet/semantic/bovine/el.el
+++ b/lisp/cedet/semantic/bovine/el.el
@@ -474,7 +474,7 @@ Return a bovination list to use."
474 ((and name (file-exists-p (concat name ".el.gz"))) 474 ((and name (file-exists-p (concat name ".el.gz")))
475 ;; This is the linux distro case. 475 ;; This is the linux distro case.
476 (concat name ".el.gz")) 476 (concat name ".el.gz"))
477 ;; source file does not exists 477 ;; Source file does not exist.
478 (name 478 (name
479 (message "semantic: cannot find source file %s" (concat name ".el"))) 479 (message "semantic: cannot find source file %s" (concat name ".el")))
480 (t 480 (t
diff --git a/lisp/gnus/registry.el b/lisp/gnus/registry.el
index 37fe6440743..b056ac5e7f3 100644
--- a/lisp/gnus/registry.el
+++ b/lisp/gnus/registry.el
@@ -228,7 +228,7 @@ With assert non-nil, errors out if the key does not exist already."
228 (let ((entry (gethash key data))) 228 (let ((entry (gethash key data)))
229 (when assert 229 (when assert
230 (assert entry nil 230 (assert entry nil
231 "Key %s does not exists in database" key)) 231 "Key %s does not exist in database" key))
232 ;; clean entry from the secondary indices 232 ;; clean entry from the secondary indices
233 (dolist (tr tracked) 233 (dolist (tr tracked)
234 ;; is this tracked symbol indexed? 234 ;; is this tracked symbol indexed?
diff --git a/lisp/net/tramp-compat.el b/lisp/net/tramp-compat.el
index d4115352b34..2b0ea74c492 100644
--- a/lisp/net/tramp-compat.el
+++ b/lisp/net/tramp-compat.el
@@ -184,7 +184,7 @@
184 'file-expand-wildcards 'around 'tramp-advice-file-expand-wildcards) 184 'file-expand-wildcards 'around 'tramp-advice-file-expand-wildcards)
185 (ad-activate 'file-expand-wildcards))))) 185 (ad-activate 'file-expand-wildcards)))))
186 186
187;; `with-temp-message' does not exists in XEmacs. 187;; `with-temp-message' does not exist in XEmacs.
188(if (fboundp 'with-temp-message) 188(if (fboundp 'with-temp-message)
189 (defalias 'tramp-compat-with-temp-message 'with-temp-message) 189 (defalias 'tramp-compat-with-temp-message 'with-temp-message)
190 (defmacro tramp-compat-with-temp-message (message &rest body) 190 (defmacro tramp-compat-with-temp-message (message &rest body)
@@ -292,7 +292,7 @@ Not actually used. Use `(format \"%o\" i)' instead?"
292 (error "Non-octal junk in string `%s'" x)) 292 (error "Non-octal junk in string `%s'" x))
293 (string-to-number ostr 8))) 293 (string-to-number ostr 8)))
294 294
295;; ID-FORMAT does not exists in XEmacs. 295;; ID-FORMAT does not exist in XEmacs.
296(defun tramp-compat-file-attributes (filename &optional id-format) 296(defun tramp-compat-file-attributes (filename &optional id-format)
297 "Like `file-attributes' for Tramp files (compat function)." 297 "Like `file-attributes' for Tramp files (compat function)."
298 (cond 298 (cond
diff --git a/lisp/org/org-freemind.el b/lisp/org/org-freemind.el
index 3b1c6863f54..2ee58501ca1 100644
--- a/lisp/org/org-freemind.el
+++ b/lisp/org/org-freemind.el
@@ -598,7 +598,7 @@ DRAWERS-REGEXP are converted to freemind notes."
598 598
599(defun org-freemind-check-overwrite (file interactively) 599(defun org-freemind-check-overwrite (file interactively)
600 "Check if file FILE already exists. 600 "Check if file FILE already exists.
601If FILE does not exists return t. 601If FILE does not exist return t.
602 602
603If INTERACTIVELY is non-nil ask if the file should be replaced 603If INTERACTIVELY is non-nil ask if the file should be replaced
604and return t/nil if it should/should not be replaced. 604and return t/nil if it should/should not be replaced.