projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a924c8
)
Make sure nnselect search query is properly parsed
author
Andrew G Cohen
<cohen@andy.bu.edu>
Fri, 18 Feb 2022 06:01:55 +0000
(14:01 +0800)
committer
Andrew 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
patch
|
blob
|
history
diff --git
a/lisp/gnus/gnus-search.el
b/lisp/gnus/gnus-search.el
index ec4dc4cf5021a51527b01bb36580b863bac8dace..27b07e36556f562a1c63e97b45457789ed568f65 100644
(file)
--- 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