]> git.eshelyaron.com Git - emacs.git/commitdiff
* log-edit.el (log-edit-before-checkin-process): Doc fix.
authorGlenn Morris <rgm@gnu.org>
Wed, 24 Mar 2010 03:27:24 +0000 (20:27 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 24 Mar 2010 03:27:24 +0000 (20:27 -0700)
lisp/ChangeLog
lisp/log-edit.el

index 0b845dd120513aadcc8ce92425282a21886ec59f..b09b479b76dd08076d77ecc171472c99cfb87680 100644 (file)
@@ -1,5 +1,7 @@
 2010-03-24  Glenn Morris  <rgm@gnu.org>
 
+       * 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.
 
index 57f79bd4b135f25925af2d60eb9561b25c54b307..09dce0eb8591719d2d5d53525ffec0e9e3f2b9db 100644 (file)
@@ -191,22 +191,20 @@ when this variable is set to nil.")
 (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.
-
-For example:
+\(\"^#.*\" . nil)
 
-(\"^#.*\" . 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