Function: nnir-imap-next-term

nnir-imap-next-term is a byte-compiled function defined in nnir.el.gz.

Signature

(nnir-imap-next-term &optional COUNT)

Documentation

Return the next (COUNT) term from the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defun nnir-imap-next-term (&optional count)
  "Return the next (COUNT) term from the current buffer."
  (let ((term (nnir-imap-next-symbol count)))
    ;; What sort of term is this?
    (cond
     ;; and -- just ignore it
     ((eq term 'and) 'and)
     ;; negated term
     ((eq term 'not) (list 'not (nnir-imap-next-expr)))
     ;; generic term
     (t term))))