diff options
| author | Glenn Morris | 2012-12-31 12:13:28 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-12-31 12:13:28 -0800 |
| commit | b83a2ddd474ef0277395380e310520b4b44ae2d0 (patch) | |
| tree | d7b2017ad89e92a6f71bb69ba2c47be801c7fb17 | |
| parent | 9800c5b0597984c71ef40fc6e5438d4242227ec4 (diff) | |
| download | emacs-b83a2ddd474ef0277395380e310520b4b44ae2d0.tar.gz emacs-b83a2ddd474ef0277395380e310520b4b44ae2d0.zip | |
* lisp/vc/log-edit.el (log-edit-header-contents-regexp): Add doc string.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc/log-edit.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6a1ebc7e0e6..e910b2cc502 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-12-31 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * vc/log-edit.el (log-edit-header-contents-regexp): Add doc string. | ||
| 4 | |||
| 1 | 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca> | 5 | 2012-12-31 Fabián Ezequiel Gallina <fgallina@cuca> |
| 2 | 6 | ||
| 3 | * progmodes/python.el: Support other commands triggering | 7 | * progmodes/python.el: Support other commands triggering |
diff --git a/lisp/vc/log-edit.el b/lisp/vc/log-edit.el index 3c34a762a1b..793644d9091 100644 --- a/lisp/vc/log-edit.el +++ b/lisp/vc/log-edit.el | |||
| @@ -319,7 +319,9 @@ automatically." | |||
| 319 | "AList of known headers and the face to use to highlight them.") | 319 | "AList of known headers and the face to use to highlight them.") |
| 320 | 320 | ||
| 321 | (defconst log-edit-header-contents-regexp | 321 | (defconst log-edit-header-contents-regexp |
| 322 | "[ \t]*\\(.*\\(\n[ \t].*\\)*\\)\n?") | 322 | "[ \t]*\\(.*\\(\n[ \t].*\\)*\\)\n?" |
| 323 | "Regular expression matching a header field. | ||
| 324 | The first subexpression is the actual text of the field.") | ||
| 323 | 325 | ||
| 324 | (defun log-edit-match-to-eoh (_limit) | 326 | (defun log-edit-match-to-eoh (_limit) |
| 325 | ;; FIXME: copied from message-match-to-eoh. | 327 | ;; FIXME: copied from message-match-to-eoh. |