Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8abee653
Commit
8abee653
authored
Jul 15, 2013
by
Paul Eggert
Browse files
Spelling fixes for "does not exists".
parent
da48522e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
lisp/cedet/semantic/bovine/el.el
lisp/cedet/semantic/bovine/el.el
+1
-1
lisp/gnus/registry.el
lisp/gnus/registry.el
+1
-1
lisp/net/tramp-compat.el
lisp/net/tramp-compat.el
+2
-2
lisp/org/org-freemind.el
lisp/org/org-freemind.el
+1
-1
src/gfilenotify.c
src/gfilenotify.c
+1
-1
No files found.
lisp/cedet/semantic/bovine/el.el
View file @
8abee653
...
...
@@ -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"
))
;;
s
ource file does not exist
s
;;
S
ource file does not exist
.
(
name
(
message
"semantic: cannot find source file %s"
(
concat
name
".el"
)))
(
t
...
...
lisp/gnus/registry.el
View file @
8abee653
...
...
@@ -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 exist
s
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?
...
...
lisp/net/tramp-compat.el
View file @
8abee653
...
...
@@ -184,7 +184,7 @@
'file-expand-wildcards
'around
'tramp-advice-file-expand-wildcards
)
(
ad-activate
'file-expand-wildcards
)))))
;; `with-temp-message' does not exist
s
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 exist
s
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
...
...
lisp/org/org-freemind.el
View file @
8abee653
...
...
@@ -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 exist
s
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.
...
...
src/gfilenotify.c
View file @
8abee653
...
...
@@ -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 exist
s
"
,
Fcons
(
file
,
Qnil
));
report_file_error
(
"File does not exist"
,
list1
(
file
));
CHECK_LIST
(
flags
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment