From 9a9a3390adc7ed286442300d46c87ecfdc764614 Mon Sep 17 00:00:00 2001 From: Andrew G Cohen Date: Fri, 18 Feb 2022 14:01:55 +0800 Subject: [PATCH] Make sure nnselect search query is properly parsed * 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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/gnus/gnus-search.el b/lisp/gnus/gnus-search.el index ec4dc4cf502..27b07e36556 100644 --- a/lisp/gnus/gnus-search.el +++ b/lisp/gnus/gnus-search.el @@ -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 -- 2.39.5