diff options
| author | Glenn Morris | 2010-03-23 20:27:24 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-03-23 20:27:24 -0700 |
| commit | 495b517c6f0f9e7da4ada2efce2ddcd4a386b94a (patch) | |
| tree | 48eebf99f5a16f6cdf370e458ca442c92ee386e7 | |
| parent | 16d8cf52c66762b5ddf440ab7796d524b94e7d2b (diff) | |
| download | emacs-495b517c6f0f9e7da4ada2efce2ddcd4a386b94a.tar.gz emacs-495b517c6f0f9e7da4ada2efce2ddcd4a386b94a.zip | |
* log-edit.el (log-edit-before-checkin-process): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/log-edit.el | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b845dd1205..b09b479b76d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2010-03-24 Glenn Morris <rgm@gnu.org> | 1 | 2010-03-24 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * log-edit.el (log-edit-before-checkin-process): Doc fix. | ||
| 4 | |||
| 3 | * cedet/semantic/bovine/c.el (semantic-c-describe-environment): | 5 | * cedet/semantic/bovine/c.el (semantic-c-describe-environment): |
| 4 | Consistently check ede-object is bound throughout. | 6 | Consistently check ede-object is bound throughout. |
| 5 | 7 | ||
diff --git a/lisp/log-edit.el b/lisp/log-edit.el index 57f79bd4b13..09dce0eb859 100644 --- a/lisp/log-edit.el +++ b/lisp/log-edit.el | |||
| @@ -191,22 +191,20 @@ when this variable is set to nil.") | |||
| 191 | (defvar log-edit-extra-flags nil | 191 | (defvar log-edit-extra-flags nil |
| 192 | "List of extra flags to pass to the check in command.") | 192 | "List of extra flags to pass to the check in command.") |
| 193 | (defvar log-edit-before-checkin-process nil | 193 | (defvar log-edit-before-checkin-process nil |
| 194 | "Alist that contains instructions for processing the commit message before check in. | 194 | "Alist with instructions for processing the commit message before check in. |
| 195 | |||
| 196 | The format is: (REGEXP . INSTRUCTIONS). | 195 | The format is: (REGEXP . INSTRUCTIONS). |
| 196 | All lines matching REGEXP are removed. For example: | ||
| 197 | 197 | ||
| 198 | All lines matching REGEXP are removed. | 198 | \(\"^#.*\" . nil) |
| 199 | |||
| 200 | For example: | ||
| 201 | 199 | ||
| 202 | (\"^#.*\" . nil) | ||
| 203 | means: just remove all lines starting with #. This can be used | 200 | means: just remove all lines starting with #. This can be used |
| 204 | to insert lines in the commit buffer that contain, for example, the | 201 | to insert lines in the commit buffer that contain, for example, the |
| 205 | list of files to be committed. | 202 | list of files to be committed. |
| 206 | 203 | ||
| 207 | (\"Author: \\(.*\\)\" . (list \"--author\" (match-string 1))) | 204 | \(\"Author: \\\\(.*\\\\)\" . (list \"--author\" (match-string 1))) |
| 208 | means: append (list \"--author\" (match-string 1)) to | 205 | |
| 209 | `log-edit-extra-flags'.") | 206 | means: append (list \"--author\" (match-string 1)) to `log-edit-extra-flags'.") |
| 207 | |||
| 210 | (defvar log-edit-parent-buffer nil) | 208 | (defvar log-edit-parent-buffer nil) |
| 211 | 209 | ||
| 212 | ;;; Originally taken from VC-Log mode | 210 | ;;; Originally taken from VC-Log mode |