diff options
| author | Katsumi Yamaoka | 2017-02-21 00:24:05 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2017-02-21 00:24:05 +0000 |
| commit | 18c476956d552f2e6f833b74faa95c095c441541 (patch) | |
| tree | 09f9a22ee169271bbecb92109acf8d3b0f4fdc85 | |
| parent | 2f53c0c468561313dd9840e28371436c669153c2 (diff) | |
| download | emacs-18c476956d552f2e6f833b74faa95c095c441541.tar.gz emacs-18c476956d552f2e6f833b74faa95c095c441541.zip | |
message-goto-body-1: Fix regexp so as not to match multi-line
* lisp/gnus/message.el (message-goto-body-1):
Fix regexp so as not to match multi-line.
| -rw-r--r-- | lisp/gnus/message.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 079ed52ba51..a8f2b143f21 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -3119,7 +3119,7 @@ M-RET `message-newline-and-reformat' (break the line and reformat)." | |||
| 3119 | ;; hard way. | 3119 | ;; hard way. |
| 3120 | (progn | 3120 | (progn |
| 3121 | ;; Skip past all headers and continuation lines. | 3121 | ;; Skip past all headers and continuation lines. |
| 3122 | (while (looking-at "[^:]+:\\|[\t ]+[^\t ]") | 3122 | (while (looking-at "[^\t\n :]+:\\|[\t ]+[^\t\n ]") |
| 3123 | (forward-line 1)) | 3123 | (forward-line 1)) |
| 3124 | ;; We're now at the first empty line, so perhaps move past it. | 3124 | ;; We're now at the first empty line, so perhaps move past it. |
| 3125 | (when (and (eolp) | 3125 | (when (and (eolp) |