2001-01-19 23:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 20 Jan 2001 04:08:06 +0000 (04:08 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sat, 20 Jan 2001 04:08:06 +0000 (04:08 +0000)
* message.el (message-cite-original-without-signature): Don't peel
off the blank line.

lisp/ChangeLog
lisp/message.el

index cb3e147..11ccff5 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-19 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * message.el (message-cite-original-without-signature): Don't peel
+       off the blank line.
+
 2001-01-20  Simon Josefsson  <sj@extundo.com>
 
        * mm-decode.el (mm-handle-multipart-from): Add.
index 02a7055..960c96a 100644 (file)
@@ -2118,7 +2118,10 @@ prefix, and don't delete any headers."
       (while (looking-at "^[ \t]*$")
        (forward-line -1))
       (forward-line 1)
-      (delete-region (point) end))
+      (delete-region (point) end)
+      (unless (search-backward "\n\n" start t)
+       ;; Insert a blank line if it is peeled off.
+       (insert "\n")))
     (goto-char start)
     (while functions
       (funcall (pop functions)))