summaryrefslogtreecommitdiff
path: root/lisp/files.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/files.el b/lisp/files.el
index 5ceaacd744e..0c3da1fe3cc 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -2132,9 +2132,9 @@ think it does, because \"free\" is pretty hard to define in practice."
"If file SIZE larger than `large-file-warning-threshold', allow user to abort.
OP-TYPE specifies the file operation being performed (for message
to user). If OFFER-RAW is true, give user the additional option
-to open the file literally. If the user chooses this option,
-`abort-if-file-too-large' returns the symbol `raw'. Otherwise, it
-returns nil or exits non-locally."
+to open the file literally. If the user chooses this option,
+`abort-if-file-too-large' returns the symbol `raw'. Otherwise,
+it returns nil or exits non-locally."
(let ((choice (and large-file-warning-threshold size
(> size large-file-warning-threshold)
;; No point in warning if we can't read it.
@@ -4177,8 +4177,8 @@ This function returns either:
NODE is assumed to be a cons cell where the car is either a
string or a symbol representing a mode name.
-If it is a mode then the the depth of the mode (ie, how many
-parents that mode has) will be returned.
+If it is a mode then the depth of the mode (ie, how many parents
+that mode has) will be returned.
If it is a string then the length of the string plus 1000 will be
returned.
@@ -5934,7 +5934,7 @@ This returns non-nil if the current buffer is visiting a readable file
whose modification time does not match that of the buffer.
This function only handles buffers that are visiting files.
-Non-file buffers need a custom function"
+Non-file buffers need a custom function."
(and buffer-file-name
(file-readable-p buffer-file-name)
(not (buffer-modified-p (current-buffer)))