mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
* lisp/vc/add-log.el (change-log-mode): Bind comment-start to nil.
This fixes M-q for Change Log entries which contain "(Bug#123)".
This commit is contained in:
parent
3e861c8a0d
commit
73e2bbc5a3
2 changed files with 3 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
|||
2012-08-09 Chong Yidong <cyd@gnu.org>
|
||||
|
||||
* vc/add-log.el (change-log-mode): Bind comment-start to nil.
|
||||
|
||||
* descr-text.el (describe-char): Don't insert extra newlines
|
||||
(Bug#10127).
|
||||
|
||||
|
|
|
|||
|
|
@ -1049,6 +1049,7 @@ Runs `change-log-mode-hook'.
|
|||
show-trailing-whitespace t)
|
||||
(set (make-local-variable 'fill-forward-paragraph-function)
|
||||
'change-log-fill-forward-paragraph)
|
||||
(set (make-local-variable 'comment-start) nil)
|
||||
;; Make sure we call `change-log-indent' when filling.
|
||||
(set (make-local-variable 'fill-indent-according-to-mode) t)
|
||||
;; Avoid that filling leaves behind a single "*" on a line.
|
||||
|
|
|
|||
Loading…
Reference in a new issue