Variable: log-edit-require-final-newline
log-edit-require-final-newline is a customizable variable defined in
log-edit.el.gz.
Value
t
Documentation
Enforce a newline at the end of commit log messages.
Enforce it silently if t, query if non-nil and don't do anything if nil.
Probably introduced at or before Emacs version 24.3.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/log-edit.el.gz
(defcustom log-edit-require-final-newline t
"Enforce a newline at the end of commit log messages.
Enforce it silently if t, query if non-nil and don't do anything if nil."
:group 'log-edit
:type '(choice (const ask) (const t) (const nil)))