diff options
| author | Andrew G Cohen | 2017-04-23 09:05:49 +0800 |
|---|---|---|
| committer | Andrew G Cohen | 2017-04-23 09:05:49 +0800 |
| commit | 5317193fe55d130a456fe0cf06c56f027d617b09 (patch) | |
| tree | 37f87db2b0453aa9b7af199d131a626667c75775 | |
| parent | 03f63888923404cd99023b853294f92536d3c87c (diff) | |
| download | emacs-5317193fe55d130a456fe0cf06c56f027d617b09.tar.gz emacs-5317193fe55d130a456fe0cf06c56f027d617b09.zip | |
Eliminate unneeded warp-to-article in gnus article referral
* lisp/gnus/gnus-sum.el (gnus-summary-refer-thread):
(gnus-summary-refer-article): Remove gnus-warp-to article call.
| -rw-r--r-- | lisp/gnus/gnus-sum.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el index 2414e866574..183cd46fa45 100644 --- a/lisp/gnus/gnus-sum.el +++ b/lisp/gnus/gnus-sum.el | |||
| @@ -9016,7 +9016,6 @@ LIMIT (the numerical prefix) old headers. If LIMIT is | |||
| 9016 | non-numeric or nil fetch the number specified by the | 9016 | non-numeric or nil fetch the number specified by the |
| 9017 | `gnus-refer-thread-limit' variable." | 9017 | `gnus-refer-thread-limit' variable." |
| 9018 | (interactive "P") | 9018 | (interactive "P") |
| 9019 | (gnus-warp-to-article) | ||
| 9020 | (let* ((header (gnus-summary-article-header)) | 9019 | (let* ((header (gnus-summary-article-header)) |
| 9021 | (id (mail-header-id header)) | 9020 | (id (mail-header-id header)) |
| 9022 | (gnus-inhibit-demon t) | 9021 | (gnus-inhibit-demon t) |
| @@ -9105,7 +9104,6 @@ non-numeric or nil fetch the number specified by the | |||
| 9105 | (defun gnus-summary-refer-article (message-id) | 9104 | (defun gnus-summary-refer-article (message-id) |
| 9106 | "Fetch an article specified by MESSAGE-ID." | 9105 | "Fetch an article specified by MESSAGE-ID." |
| 9107 | (interactive "sMessage-ID: ") | 9106 | (interactive "sMessage-ID: ") |
| 9108 | (gnus-warp-to-article) | ||
| 9109 | (when (and (stringp message-id) | 9107 | (when (and (stringp message-id) |
| 9110 | (not (zerop (length message-id)))) | 9108 | (not (zerop (length message-id)))) |
| 9111 | (setq message-id (replace-regexp-in-string " " "" message-id)) | 9109 | (setq message-id (replace-regexp-in-string " " "" message-id)) |