]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "Don't eagerly store articles in the Agent by default"
authorLars Ingebrigtsen <larsi@gnus.org>
Fri, 9 Oct 2020 04:26:17 +0000 (06:26 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 9 Oct 2020 04:26:17 +0000 (06:26 +0200)
This reverts commit def34a20766ea5179afd5e5ed090a2b86fcccb5e.

This made storing articles in the Agent very slow.

lisp/gnus/gnus-agent.el
lisp/gnus/gnus-art.el
lisp/gnus/gnus-async.el

index f748996acc86743bd19733a1312560745f25a1af..6a7e81b3e9123ec89d0bbcbef1c377bcd9ff56e3 100644 (file)
@@ -3812,7 +3812,6 @@ has been fetched."
         t))))
 
 (defun gnus-agent-store-article (article group)
-  (declare (obsolete nil "28.1"))
   (let* ((gnus-command-method (gnus-find-method-for-group group))
         (file (gnus-agent-article-name (number-to-string article) group))
         (file-name-coding-system nnmail-pathname-coding-system)
index b1147924ffa25106996f92efb110f35432d46e17..2d9d5ece01a0bf9855fb30c335b8c5ac4823003a 100644 (file)
@@ -7092,7 +7092,10 @@ If given a prefix, show the hidden text instead."
                                              gnus-summary-buffer)
                    (when gnus-keep-backlog
                      (gnus-backlog-enter-article
-                      group article (current-buffer))))
+                      group article (current-buffer)))
+                   (when (and gnus-agent
+                              (gnus-agent-group-covered-p group))
+                     (gnus-agent-store-article article group)))
                  (setq result 'article))
                 (methods
                  (setq gnus-override-method (pop methods)))
index 9bcb6c33a64022c0da14118e91ed752ebcb6cb75..e3e81c8bbced94238ef6f7ec47cd4002956554b0 100644 (file)
@@ -225,6 +225,12 @@ that was fetched."
       (save-excursion
        (save-restriction
          (narrow-to-region mark (point-max))
+         ;; Put the articles into the agent, if they aren't already.
+         (when (and gnus-agent
+                    (gnus-agent-group-covered-p group))
+           (save-restriction
+             (narrow-to-region mark (point-max))
+             (gnus-agent-store-article article group)))
          ;; Prefetch images for the groups that want that.
          (when (fboundp 'gnus-html-prefetch-images)
            (gnus-html-prefetch-images summary))