]> git.eshelyaron.com Git - emacs.git/commitdiff
Docfix for require-final-newline in Lisp manual.
authorChristopher Schmidt <christopher@ch.ristopher.com>
Wed, 18 Apr 2012 06:20:47 +0000 (14:20 +0800)
committerChong Yidong <cyd@gnu.org>
Wed, 18 Apr 2012 06:20:47 +0000 (14:20 +0800)
* doc/lispref/files.texi (Saving Buffers): Document `visit and `visit-save'
values of require-final-newline.

doc/lispref/ChangeLog
doc/lispref/files.texi

index e56317ad70a10e3d13a14becf5f296de1b63f66a..264e0cfbe413f5b37a4bb5cea89d886526e6e61b 100644 (file)
@@ -1,3 +1,8 @@
+2012-04-18  Christopher Schmidt  <christopher@ch.ristopher.com>
+
+       * files.texi (Saving Buffers): Document `visit and `visit-save'
+       values of require-final-newline.
+
 2012-04-18  Glenn Morris  <rgm@gnu.org>
 
        * processes.texi (Output from Processes, Filter Functions):
index 3e96a448963f66b690581407ae4a9afd0cd1eb7f..062368e810d2bd72b61f03dd73d9ee766b3a8987 100644 (file)
@@ -490,11 +490,13 @@ in particular buffers.
 @defopt require-final-newline
 This variable determines whether files may be written out that do
 @emph{not} end with a newline.  If the value of the variable is
-@code{t}, then @code{save-buffer} silently adds a newline at the end of
-the file whenever the buffer being saved does not already end in one.
-If the value of the variable is non-@code{nil}, but not @code{t}, then
-@code{save-buffer} asks the user whether to add a newline each time the
-case arises.
+@code{t}, then @code{save-buffer} silently adds a newline at the end
+of the buffer whenever it does not already end in one.  If the value
+is @code{visit}, Emacs adds a missing newline just after it visits the
+file.  If the value is @code{visit-save}, Emacs adds a missing newline
+both on visiting and on saving.  For any other non-@code{nil} value,
+@code{save-buffer} asks the user whether to add a newline each time
+the case arises.
 
 If the value of the variable is @code{nil}, then @code{save-buffer}
 doesn't add newlines at all.  @code{nil} is the default value, but a few