]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/gnus/nnir.el (nnir-make-specs): Use the current buffer.
authorAndrew G Cohen <cohen@andy.bu.edu>
Wed, 17 May 2017 02:39:57 +0000 (10:39 +0800)
committerAndrew G Cohen <cohen@andy.bu.edu>
Wed, 17 May 2017 02:39:57 +0000 (10:39 +0800)
lisp/gnus/nnir.el

index 4c13a1b84ce96c57a613e85f5fbdeefa5517e09a..af38a3ee9fc4e4123dd2ebc32e4a8f68511037d4 100644 (file)
@@ -1375,30 +1375,29 @@ environment unless `not-global' is non-nil."
 (defvar gnus-topic-alist)
 
 (defun nnir-make-specs (nnir-extra-parms &optional specs)
-  (with-current-buffer gnus-group-buffer
-    (let* ((group-spec
-           (or (cdr (assq 'nnir-group-spec specs))
-               (if (gnus-server-server-name)
-                   (list (list (gnus-server-server-name)))
-                 (nnselect-categorize
-                  (or gnus-group-marked
-                      (if (gnus-group-group-name)
-                          (list (gnus-group-group-name))
-                        (cdr (assoc (gnus-group-topic-name) gnus-topic-alist))))
-                  'nnselect-group-server))))
-          (query-spec
-           (or (cdr (assq 'nnir-query-spec specs))
-               (apply
-                'append
-                (list (cons 'query
-                            (read-string "Query: " nil 'nnir-search-history)))
-                (when nnir-extra-parms
-                  (mapcar
-                   (lambda (x)
-                     (nnir-read-parms (nnir-server-to-search-engine (car x))))
-                   group-spec))))))
-      (list (cons 'nnir-query-spec query-spec)
-           (cons 'nnir-group-spec group-spec)))))
+  (let* ((group-spec
+         (or (cdr (assq 'nnir-group-spec specs))
+             (if (gnus-server-server-name)
+                 (list (list (gnus-server-server-name)))
+               (nnselect-categorize
+                (or gnus-group-marked
+                    (if (gnus-group-group-name)
+                        (list (gnus-group-group-name))
+                      (cdr (assoc (gnus-group-topic-name) gnus-topic-alist))))
+                'nnselect-group-server))))
+        (query-spec
+         (or (cdr (assq 'nnir-query-spec specs))
+             (apply
+              'append
+              (list (cons 'query
+                          (read-string "Query: " nil 'nnir-search-history)))
+              (when nnir-extra-parms
+                (mapcar
+                 (lambda (x)
+                   (nnir-read-parms (nnir-server-to-search-engine (car x))))
+                 group-spec))))))
+    (list (cons 'nnir-query-spec query-spec)
+         (cons 'nnir-group-spec group-spec))))
 
 ;; The end.
 (provide 'nnir)