I want to set the require-final-newline
for every buffer to nil
.
In my config file, I have :
(setq require-final-newline nil)
(setq-default require-final-newline nil)
It appears to set the global value correctly. However in every buffer that I open, the local value is still t
. Using describe-variable
, I get :
require-final-newline is a variable defined in `files.el'.
Its value is t
Original value was nil
Local in buffer myfile.js; global value is nil
files.el
is in /usr/local/Cellar/emacs/24.5/share/emacs/24.5/lisp/
, so I guess I should not modify it.
How do I set this local value to nil
?