* (nnspool-retrieve-headers): Protect against empty body.
authoryamaoka <yamaoka>
Thu, 14 Jan 1999 00:20:49 +0000 (00:20 +0000)
committeryamaoka <yamaoka>
Thu, 14 Jan 1999 00:20:49 +0000 (00:20 +0000)
lisp/nnspool.el

index 6914f78..1cca067 100644 (file)
@@ -137,9 +137,13 @@ there.")
              (setq beg (point))
              (inline (nnheader-insert-head file))
              (goto-char beg)
-             (search-forward "\n\n" nil t)
-             (forward-char -1)
-             (insert ".\n")
+             (if (search-forward "\n\n" nil t)
+                 (progn (forward-char -1)
+                        (insert ".\n"))
+               (goto-char (point-max))
+               (if (bolp)
+                   (insert ".\n")
+                 (insert "\n.\n")))
              (delete-region (point) (point-max)))
 
            (and do-message