emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r99735: * log-edit.el (log-edit-befor


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r99735: * log-edit.el (log-edit-before-checkin-process): Doc fix.
Date: Tue, 23 Mar 2010 20:27:24 -0700
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99735
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Tue 2010-03-23 20:27:24 -0700
message:
  * log-edit.el (log-edit-before-checkin-process): Doc fix.
modified:
  lisp/ChangeLog
  lisp/log-edit.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-03-24 03:19:15 +0000
+++ b/lisp/ChangeLog    2010-03-24 03:27:24 +0000
@@ -1,5 +1,7 @@
 2010-03-24  Glenn Morris  <address@hidden>
 
+       * 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.
 

=== modified file 'lisp/log-edit.el'
--- a/lisp/log-edit.el  2010-03-19 09:37:41 +0000
+++ b/lisp/log-edit.el  2010-03-24 03:27:24 +0000
@@ -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:
-
-(\"^#.*\" . nil)
+All lines matching REGEXP are removed.  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


reply via email to

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