aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Cohen2011-08-05 23:29:17 +0000
committerKatsumi Yamaoka2011-08-05 23:29:17 +0000
commitd747b53feb3e403571c724cc5add1e5e354f4408 (patch)
tree751173f0368bfd1fa38226f99e30936398259a32
parent4640dd881c07162a6120ccb3b117b748badf78c9 (diff)
downloademacs-d747b53feb3e403571c724cc5add1e5e354f4408.tar.gz
emacs-d747b53feb3e403571c724cc5add1e5e354f4408.zip
gnus-sum.el (gnus-summary-refer-article): Warp to article. This allows article-referral to work from an nnir group.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-sum.el1
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index df6a5fcd95c..e13d2d594ca 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12011-08-05 Andrew Cohen <cohen@andy.bu.edu>
2
3 * gnus-sum.el (gnus-summary-refer-article): Warp to article. This
4 allows article-referral to work from an nnir group.
5
12011-08-04 Andrew Cohen <cohen@andy.bu.edu> 62011-08-04 Andrew Cohen <cohen@andy.bu.edu>
2 7
3 * gnus.el (registry-ignore): Add nnir groups to the ignore-list. 8 * gnus.el (registry-ignore): Add nnir groups to the ignore-list.
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index a8cf5e7c427..dda9cb3fbf6 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -9037,6 +9037,7 @@ non-numeric or nil fetch the number specified by the
9037(defun gnus-summary-refer-article (message-id) 9037(defun gnus-summary-refer-article (message-id)
9038 "Fetch an article specified by MESSAGE-ID." 9038 "Fetch an article specified by MESSAGE-ID."
9039 (interactive "sMessage-ID: ") 9039 (interactive "sMessage-ID: ")
9040 (gnus-warp-to-article)
9040 (when (and (stringp message-id) 9041 (when (and (stringp message-id)
9041 (not (zerop (length message-id)))) 9042 (not (zerop (length message-id))))
9042 (setq message-id (gnus-replace-in-string message-id " " "")) 9043 (setq message-id (gnus-replace-in-string message-id " " ""))