]> git.eshelyaron.com Git - emacs.git/commitdiff
Make sure nnselect search query is properly parsed
authorAndrew G Cohen <cohen@andy.bu.edu>
Fri, 18 Feb 2022 06:01:55 +0000 (14:01 +0800)
committerAndrew G Cohen <cohen@andy.bu.edu>
Fri, 18 Feb 2022 06:01:55 +0000 (14:01 +0800)
* lisp/gnus/gnus-search.el (gnus-search-make-spec): The search query
should not be interpreted as raw, but whatever the underlying search
engine expects.

lisp/gnus/gnus-search.el

index ec4dc4cf5021a51527b01bb36580b863bac8dace..27b07e36556f562a1c63e97b45457789ed568f65 100644 (file)
@@ -2188,8 +2188,7 @@ article came from is also searched."
                (read-from-minibuffer
                 "Query: " nil gnus-search-minibuffer-map
                 nil 'gnus-search-history)))
-       (cons 'raw
-              (or (gnus-nnselect-group-p (gnus-group-group-name)) arg))))
+       (cons 'raw arg)))
 
 (provide 'gnus-search)
 ;;; gnus-search.el ends here