]> git.eshelyaron.com Git - emacs.git/commitdiff
message-goto-body-1: Fix regexp so as not to match multi-line
authorKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 21 Feb 2017 00:24:05 +0000 (00:24 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Tue, 21 Feb 2017 00:24:05 +0000 (00:24 +0000)
* lisp/gnus/message.el (message-goto-body-1):
Fix regexp so as not to match multi-line.

lisp/gnus/message.el

index 079ed52ba5188307091cf81262992781b4ac894e..a8f2b143f21b0ebbf5c77b1498f98ac706236cb2 100644 (file)
@@ -3119,7 +3119,7 @@ M-RET    `message-newline-and-reformat' (break the line and reformat)."
       ;; hard way.
       (progn
        ;; Skip past all headers and continuation lines.
-       (while (looking-at "[^:]+:\\|[\t ]+[^\t ]")
+       (while (looking-at "[^\t\n :]+:\\|[\t ]+[^\t\n ]")
          (forward-line 1))
        ;; We're now at the first empty line, so perhaps move past it.
        (when (and (eolp)