Mercurial > emacs
changeset 61797:a7edd5d648fa
(mode-require-final-newline): Minor doc fix.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Sun, 24 Apr 2005 14:45:08 +0000 |
parents | 447490ba1339 |
children | 994a6fb78d4c |
files | lisp/files.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/files.el Sun Apr 24 13:24:29 2005 +0000 +++ b/lisp/files.el Sun Apr 24 14:45:08 2005 +0000 @@ -302,13 +302,13 @@ 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")