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