Very specific question that I hope is not too dumb.
(setq-default fill-column 120)
sets the width of the buffer fill to 120 columns. Default for me otherwise is 74.
This command, when put in my .emacs
file, works for all major modes I use (C++, Perl, etc). However, it seems not to affect the Change Log major mode (change-log-mode-hook
). Do you know how I can set the fill-column
for this mode?
add-hook
when I already set the default value with(setq-default fill-column 120)
? – Cnut