Function: gnus-summary-make-search-group
gnus-summary-make-search-group is an interactive and byte-compiled
function defined in nnselect.el.gz.
Signature
(gnus-summary-make-search-group NO-PARSE)
Documentation
Search a group from the summary buffer.
Pass NO-PARSE on to the search engine.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnselect.el.gz
(defun gnus-summary-make-search-group (no-parse)
"Search a group from the summary buffer.
Pass NO-PARSE on to the search engine."
(interactive "P")
(gnus-warp-to-article)
(let ((spec
(list
(cons 'search-group-spec
(list (list
(gnus-group-server gnus-newsgroup-name)
gnus-newsgroup-name))))))
(gnus-group-make-search-group no-parse spec)))