Function: reftex-all-assoc-string
reftex-all-assoc-string is a byte-compiled function defined in
reftex.el.gz.
Signature
(reftex-all-assoc-string KEY LIST)
Documentation
Return a list of all associations of KEY in LIST. Comparison with string=.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex.el.gz
(defun reftex-all-assoc-string (key list)
"Return a list of all associations of KEY in LIST. Comparison with string=."
(let (rtn)
(while list
(if (string= (car (car list)) key)
(push (car list) rtn))
(pop list))
(nreverse rtn)))