Fix last commit.
authorSimon Josefsson <jas@extundo.com>
Sat, 25 Jan 2003 18:53:19 +0000 (18:53 +0000)
committerSimon Josefsson <jas@extundo.com>
Sat, 25 Jan 2003 18:53:19 +0000 (18:53 +0000)
lisp/nnmail.el

index 0abb9e3..1bf47e1 100644 (file)
@@ -1012,7 +1012,12 @@ FUNC will be called with the group name to determine the article number."
        (erase-buffer)
        (insert-buffer-substring obuf)
        ;; Narrow to headers.
-       (mail-narrow-to-head)
+       (narrow-to-region
+        (goto-char (point-min))
+        (if (search-forward "\n\n" nil t)
+            (match-beginning 0)
+          (point-max)))
+       (goto-char (point-min))
        ;; Decode MIME headers and charsets.
        (when nnmail-mail-splitting-decodes
          (let ((mail-parse-charset nnmail-mail-splitting-charset))