emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109533: * lisp/vc/add-log.el (change


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109533: * lisp/vc/add-log.el (change-log-mode): Bind comment-start to nil.
Date: Thu, 09 Aug 2012 16:16:13 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109533
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Thu 2012-08-09 16:16:13 +0800
message:
  * 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)".
modified:
  lisp/ChangeLog
  lisp/vc/add-log.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-08-09 08:10:32 +0000
+++ b/lisp/ChangeLog    2012-08-09 08:16:13 +0000
@@ -1,5 +1,7 @@
 2012-08-09  Chong Yidong  <address@hidden>
 
+       * vc/add-log.el (change-log-mode): Bind comment-start to nil.
+
        * descr-text.el (describe-char): Don't insert extra newlines
        (Bug#10127).
 

=== modified file 'lisp/vc/add-log.el'
--- a/lisp/vc/add-log.el        2012-07-25 05:48:19 +0000
+++ b/lisp/vc/add-log.el        2012-08-09 08:16:13 +0000
@@ -1049,6 +1049,7 @@
        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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]