Synch to Oort Gnus 200304142212.
authoryamaoka <yamaoka>
Mon, 14 Apr 2003 22:14:54 +0000 (22:14 +0000)
committeryamaoka <yamaoka>
Mon, 14 Apr 2003 22:14:54 +0000 (22:14 +0000)
lisp/ChangeLog
lisp/gnus-msg.el

index 1f0d5cd..9d4f05a 100644 (file)
@@ -1,3 +1,14 @@
+2003-04-14  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * gnus-msg.el (gnus-summary-news-other-window): Use delq instead
+       of remove which is a cl run-time function in Emacs 20.
+
+2003-04-14  Jesper Harder  <harder@ifa.au.dk>
+
+       * gnus-msg.el (gnus-summary-news-other-window): Make a buffer
+       local copy of gnus-discouraged-post-methods with the current
+       method removed.
+
 2003-04-14  Simon Josefsson  <jas@extundo.com>
 
        * mailcap.el (mailcap-mime-data): Add application/pgp-keys.
index 3f3eca3..d0306f5 100644 (file)
@@ -720,7 +720,12 @@ network.  The corresponding backend must have a 'request-post method."
                  gnus-newsgroup-name))
          ;; #### see comment in gnus-setup-message -- drv
          (gnus-setup-message 'message
-           (message-news (gnus-group-real-name gnus-newsgroup-name))))
+           (progn
+             (message-news (gnus-group-real-name gnus-newsgroup-name))
+             (set (make-local-variable 'gnus-discouraged-post-methods)
+                  (delq
+                   (car (gnus-find-method-for-group gnus-newsgroup-name))
+                   gnus-discouraged-post-methods)))))
       (save-excursion
        (set-buffer buffer)
        (setq gnus-newsgroup-name group)))))