mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
52789f7fb3
* .dir-locals.el: (log-edit-move): Add the "Author: " header. * lisp/vc/log-edit.el (log-edit-mode-map): Add binding for `log-edit-beginning-of-line'. (log-edit-setup-add-author): New user option. (log-edit-beginning-of-line): New command. (log-edit): Move major mode call above the contents setup so that the local variable values are already applied. (log-edit): Only insert "Author: " when `log-edit-setup-add-author' is non-nil. (log-edit): When SETUP is non-nil, position point after ": " instead of point-min.
17 lines
706 B
EmacsLisp
17 lines
706 B
EmacsLisp
((nil . ((tab-width . 8)
|
|
(sentence-end-double-space . t)
|
|
(fill-column . 70)))
|
|
(c-mode . ((c-file-style . "GNU")))
|
|
(objc-mode . ((c-file-style . "GNU")))
|
|
;; You must set bugtracker_debbugs_url in your bazaar.conf for this to work.
|
|
;; See admin/notes/bugtracker.
|
|
(log-edit-mode . ((log-edit-rewrite-fixes
|
|
"[ \n](bug#\\([0-9]+\\))" . "debbugs:\\1")
|
|
(log-edit-font-lock-gnu-style . t)
|
|
(log-edit-setup-add-author . t)))
|
|
(change-log-mode . ((add-log-time-zone-rule . t)
|
|
(fill-column . 74)
|
|
(bug-reference-url-format . "http://debbugs.gnu.org/%s")
|
|
(mode . bug-reference)))
|
|
(diff-mode . ((mode . whitespace))))
|