Function: gnus-summary-make-group-from-search
gnus-summary-make-group-from-search is an interactive and
byte-compiled function defined in gnus-sum.el.gz.
Signature
(gnus-summary-make-group-from-search)
Documentation
Make a persistent group from the current ephemeral search group.
Probably introduced at or before Emacs version 28.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-make-group-from-search ()
"Make a persistent group from the current ephemeral search group."
(interactive nil gnus-summary-mode)
(if (not (gnus-nnselect-group-p gnus-newsgroup-name))
(gnus-message 3 "%s is not a search group" gnus-newsgroup-name)
(let ((name (gnus-read-group "Group name: ")))
(with-current-buffer gnus-group-buffer
(gnus-group-make-group
name
(list 'nnselect "nnselect")
nil
(list (cons 'nnselect-specs
(gnus-group-get-parameter gnus-newsgroup-name
'nnselect-specs t))))))))