]> git.eshelyaron.com Git - emacs.git/commitdiff
(mode-require-final-newline): Minor doc fix.
authorLuc Teirlinck <teirllm@auburn.edu>
Sun, 24 Apr 2005 14:45:08 +0000 (14:45 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Sun, 24 Apr 2005 14:45:08 +0000 (14:45 +0000)
lisp/files.el

index d14bddc769f98fdfa9f66b7f5a59f4ae12710820..d80a806d239af0b3716d8e37871a80918130a02e 100644 (file)
@@ -302,13 +302,13 @@ 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 when saving.
 
-If you set this to nil, you be must careful to manually add a final newline
+If you set this to nil, you must be careful to manually 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)
-                (other :tag "Ask" ask)
-                (const :tag "Don't add newlines" nil))
+                (const :tag "Don't add newlines" nil)
+                (other :tag "Ask" ask))
   :group 'editing-basics
   :version "22.1")