Function: texinfo-filter

texinfo-filter is a byte-compiled function defined in texinfo.el.gz.

Signature

(texinfo-filter SECTION LIST)

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/texinfo.el.gz
(defun texinfo-filter (section list)
  (let (res)
    (dolist (x list) (if (eq section (cadr x)) (push (car x) res)))
    res))