For personal notes, I create ChangeLog
files of the following format:
2015-01-27+0000 Felix E. Klee <felix.klee@inka.de>
* Today, I asked my first question on emacs.stackexchange.com:
- My question is about issues with ChangeLog files.
Local Variables:
fill-column: 79
fill-indent-according-to-mode: nil
coding: utf-8
add-log-time-format: (lambda () (format-time-string "%Y-%m-%d%z"))
End:
The problem: After upgrading to version 24.4.1, when I press return at the end
of files.
, then the line changes identation depth:
* Today, I asked my first question on emacs.stackexchange.com:
- My question is about issues with ChangeLog files.
How do I prevent identation from changing in that case?
Already I tried specifying buffer local variables, to no avail:
adaptive-fill-regexp: "\\s *\\|\\s -"
paragraph-start: "\\s *$\\|\f\\|^\\<\\|\\s -$"
FYI after upgrading to Emacs 23, I had another ChangeLog indentation
issue, which IIRC I may have solved by editing changelog-mode
source
code. I would like to avoid that this time.