diff options
| author | Luc Teirlinck | 2005-04-24 14:45:08 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2005-04-24 14:45:08 +0000 |
| commit | 993746115ba48e3e4feb4d3f0df15103b783ca10 (patch) | |
| tree | cb96e03c6b3cb103feb4a638ee27ed9a54a652db | |
| parent | 5eb20bca14dde4f968cff06e8e40664bc3a7e29f (diff) | |
| download | emacs-993746115ba48e3e4feb4d3f0df15103b783ca10.tar.gz emacs-993746115ba48e3e4feb4d3f0df15103b783ca10.zip | |
(mode-require-final-newline): Minor doc fix.
| -rw-r--r-- | lisp/files.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/files.el b/lisp/files.el index d14bddc769f..d80a806d239 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -302,13 +302,13 @@ A value of `visit-save' means do it at both of those times. | |||
| 302 | Any other non-nil value means ask user whether to add a newline, when saving. | 302 | Any other non-nil value means ask user whether to add a newline, when saving. |
| 303 | nil means do not add newlines when saving. | 303 | nil means do not add newlines when saving. |
| 304 | 304 | ||
| 305 | If you set this to nil, you be must careful to manually add a final newline | 305 | If you set this to nil, you must be careful to manually add a final newline |
| 306 | whenever you save a file that really needs one." | 306 | whenever you save a file that really needs one." |
| 307 | :type '(choice (const :tag "When visiting" visit) | 307 | :type '(choice (const :tag "When visiting" visit) |
| 308 | (const :tag "When saving" t) | 308 | (const :tag "When saving" t) |
| 309 | (const :tag "When visiting or saving" visit-save) | 309 | (const :tag "When visiting or saving" visit-save) |
| 310 | (other :tag "Ask" ask) | 310 | (const :tag "Don't add newlines" nil) |
| 311 | (const :tag "Don't add newlines" nil)) | 311 | (other :tag "Ask" ask)) |
| 312 | :group 'editing-basics | 312 | :group 'editing-basics |
| 313 | :version "22.1") | 313 | :version "22.1") |
| 314 | 314 | ||