Function: recentf-string-member

recentf-string-member is a byte-compiled function defined in recentf.el.gz.

Signature

(recentf-string-member ELT LIST)

Documentation

Return non-nil if ELT is an element of LIST.

The value is actually the tail of LIST whose car is ELT. ELT must be a string and LIST a list of strings. Ignore case if recentf-case-fold-search is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/recentf.el.gz
(defun recentf-string-member (elt list)
  "Return non-nil if ELT is an element of LIST.
The value is actually the tail of LIST whose car is ELT.
ELT must be a string and LIST a list of strings.
Ignore case if `recentf-case-fold-search' is non-nil."
  (while (and list (not (recentf-string-equal elt (car list))))
    (setq list (cdr list)))
  list)