]> git.eshelyaron.com Git - emacs.git/commitdiff
(news-mail-reply): Restore the saved narrowing before calling `mail'.
authorRichard M. Stallman <rms@gnu.org>
Sat, 17 Dec 1994 00:50:52 +0000 (00:50 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 17 Dec 1994 00:50:52 +0000 (00:50 +0000)
lisp/mail/rnewspost.el

index 2824a0fbb0fe81f5535f79db650be9875635d462..157892489b53a0b0de5f16c10fd1965d256e05e4 100644 (file)
@@ -270,18 +270,18 @@ original message into it."
       (setq from (mail-fetch-field "from")
            subject (mail-fetch-field "subject")
            reply-to (mail-fetch-field "reply-to")
-           date (mail-fetch-field "date"))
-      (setq to from)
-      (pop-to-buffer "*mail*")
-      (mail nil
-           (if reply-to reply-to to)
-           subject
-           (let ((stop-pos (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
-             (concat (if stop-pos (substring from 0 stop-pos) from)
-                     "'s message of "
-                     date))
-           nil
-          buffer))))
+           date (mail-fetch-field "date")))
+    (setq to from)
+    (pop-to-buffer "*mail*")
+    (mail nil
+         (if reply-to reply-to to)
+         subject
+         (let ((stop-pos (string-match "  *at \\|  *@ \\| *(\\| *<" from)))
+           (concat (if stop-pos (substring from 0 stop-pos) from)
+                   "'s message of "
+                   date))
+         nil
+        buffer)))
 
 ;@@ the guts of news-reply and news-post-news should be combined. -tower
 (defun news-reply ()