# HG changeset patch # User Glenn Morris # Date 1269401244 25200 # Node ID 1161bde4ebd6892b51ca735c574bb3af9709adc9 # Parent 2630a1cf07ac301f880e94c8c961a2bde04a0b93 * log-edit.el (log-edit-before-checkin-process): Doc fix. diff -r 2630a1cf07ac -r 1161bde4ebd6 lisp/ChangeLog --- a/lisp/ChangeLog Tue Mar 23 20:21:53 2010 -0700 +++ b/lisp/ChangeLog Tue Mar 23 20:27:24 2010 -0700 @@ -1,5 +1,7 @@ 2010-03-24 Glenn Morris + * log-edit.el (log-edit-before-checkin-process): Doc fix. + * cedet/semantic/bovine/c.el (semantic-c-describe-environment): Consistently check ede-object is bound throughout. diff -r 2630a1cf07ac -r 1161bde4ebd6 lisp/log-edit.el --- a/lisp/log-edit.el Tue Mar 23 20:21:53 2010 -0700 +++ b/lisp/log-edit.el Tue Mar 23 20:27:24 2010 -0700 @@ -191,22 +191,20 @@ (defvar log-edit-extra-flags nil "List of extra flags to pass to the check in command.") (defvar log-edit-before-checkin-process nil - "Alist that contains instructions for processing the commit message before check in. - + "Alist with instructions for processing the commit message before check in. The format is: (REGEXP . INSTRUCTIONS). +All lines matching REGEXP are removed. For example: -All lines matching REGEXP are removed. +\(\"^#.*\" . nil) -For example: - -(\"^#.*\" . nil) means: just remove all lines starting with #. This can be used to insert lines in the commit buffer that contain, for example, the list of files to be committed. -(\"Author: \\(.*\\)\" . (list \"--author\" (match-string 1))) -means: append (list \"--author\" (match-string 1)) to -`log-edit-extra-flags'.") +\(\"Author: \\\\(.*\\\\)\" . (list \"--author\" (match-string 1))) + +means: append (list \"--author\" (match-string 1)) to `log-edit-extra-flags'.") + (defvar log-edit-parent-buffer nil) ;;; Originally taken from VC-Log mode