aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/files.el
diff options
context:
space:
mode:
authorLuc Teirlinck <[email protected]>2005-05-01 12:56:42 +0000
committerLuc Teirlinck <[email protected]>2005-05-01 12:56:42 +0000
commit0776da52f9847af9ec39840912763a5ee469f383 (patch)
tree3f32e99eb5102247992abd747c3717690718000b /lisp/files.el
parenta87fdbbdb8ddd308522452fc9b7c91dd8a4cb648 (diff)
(require-final-newline): Make Custom tags consistent
with mode-require-final-newline. (mode-require-final-newline): Doc fix.
Diffstat (limited to 'lisp/files.el')
-rw-r--r--lisp/files.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index a2b74f8273..ea4799968f 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -287,13 +287,13 @@ from `mode-require-final-newline'."
(const :tag "When saving" t)
(const :tag "When visiting or saving" visit-save)
(const :tag "Don't add newlines" nil)
- (other :tag "Ask" ask))
+ (other :tag "Ask each time" ask))
:group 'editing-basics)
(defcustom mode-require-final-newline t
"*Whether to add a newline at end of file, in certain major modes.
Those modes set `require-final-newline' to this value when you enable them.
-They do so because they are used for files that are supposed
+They do so because they are often used for files that are supposed
to end in newlines, and the question is how to arrange that.
A value of t means do this only when the file is about to be saved.