]> git.eshelyaron.com Git - emacs.git/commitdiff
(mode-require-final-newline, require-final-newline, enable-local-variables,
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 14 May 2007 10:42:39 +0000 (10:42 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 14 May 2007 10:42:39 +0000 (10:42 +0000)
enable-local-eval): Doc fixes.

lisp/ChangeLog
lisp/files.el

index 32a307cb809a9d243eef5bd922579ce19dbb5f00..58283c5cfee3fdb3c85df35e38ea8cd0557e0992 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-14  Juanma Barranquero  <lekktu@gmail.com>
+
+       * files.el (mode-require-final-newline, require-final-newline)
+       (enable-local-variables, enable-local-eval): Doc fixes.
+
 2007-05-13  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
 
        * ps-print.el: Use default color when foreground or background color
index 85478ac40a0ef1036b68a47ce8ba7fee5c500b0d..a2d9192246a30b33a976ba8ddcb7f64e5559a6ea 100644 (file)
@@ -287,7 +287,7 @@ A value of t means do this only when the file is about to be saved.
 A value of `visit' means do this right after the file is visited.
 A value of `visit-save' means do it at both of those times.
 Any other non-nil value means ask user whether to add a newline, when saving.
-nil means don't add newlines.
+A value of nil means don't add newlines.
 
 Certain major modes set this locally to the value obtained
 from `mode-require-final-newline'."
@@ -309,10 +309,10 @@ A value of `visit' means do this right after the file is visited.
 A value of `visit-save' means do it at both of those times.
 Any other non-nil value means ask user whether to add a newline, when saving.
 
-nil means do not add newlines.  That is a risky choice in this variable
-since this value is used for modes for files that ought to have final newlines.
-So if you set this to nil, you must explicitly check and add
-a final newline, whenever you save a file that really needs one."
+A value of nil means do not add newlines.  That is a risky choice in this
+variable since this value is used for modes for files that ought to have
+final newlines.  So if you set this to nil, you must explicitly check and
+add a final newline, whenever you save a file that really needs one."
   :type '(choice (const :tag "When visiting" visit)
                 (const :tag "When saving" t)
                 (const :tag "When visiting or saving" visit-save)
@@ -459,7 +459,7 @@ not safe, Emacs queries you, once, whether to set them all.
 :safe means set the safe variables, and ignore the rest.
 :all means set all variables, whether safe or not.
  (Don't set it permanently to :all.)
-nil means always ignore the file local variables.
+A value of nil means always ignore the file local variables.
 
 Any other value means always query you once whether to set them all.
 \(When you say yes to certain values, they are remembered as safe, but
@@ -491,7 +491,7 @@ specified in a -*- line.")
   "Control processing of the \"variable\" `eval' in a file's local variables.
 The value can be t, nil or something else.
 A value of t means obey `eval' variables;
-nil means ignore them; anything else means query."
+A value of nil means ignore them; anything else means query."
   :type '(choice (const :tag "Obey" t)
                 (const :tag "Ignore" nil)
                 (other :tag "Query" other))