mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
require-final-newline doc string clarification
* lisp/files.el (require-final-newline): Mention that the variable applies to visited files (bug#34986).
This commit is contained in:
parent
674515dd75
commit
2a41fe2eaf
1 changed files with 5 additions and 1 deletions
|
|
@ -337,7 +337,11 @@ Any other non-nil value means ask user whether to add a newline, when saving.
|
|||
A value of nil means don't add newlines.
|
||||
|
||||
Certain major modes set this locally to the value obtained
|
||||
from `mode-require-final-newline'."
|
||||
from `mode-require-final-newline'.
|
||||
|
||||
This variable is only heeded when visiting files (or saving
|
||||
visited files). Writing data to the file system with
|
||||
`write-region' and the like is not influenced by this variable."
|
||||
:safe #'symbolp
|
||||
:type '(choice (const :tag "When visiting" visit)
|
||||
(const :tag "When saving" t)
|
||||
|
|
|
|||
Loading…
Reference in a new issue