Function: gnus-search-query-next-term
gnus-search-query-next-term is a byte-compiled function defined in
gnus-search.el.gz.
Signature
(gnus-search-query-next-term &optional COUNT)
Documentation
Return the next TERM from the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-search.el.gz
(defun gnus-search-query-next-term (&optional count)
"Return the next TERM from the current buffer."
(let ((term (gnus-search-query-next-symbol count)))
;; What sort of term is this?
(cond
;; negated term
((eq term 'not) (list 'not (gnus-search-query-next-expr nil 'halt)))
;; generic term
(t term))))