Function: idlwave-all-assq

idlwave-all-assq is a byte-compiled function defined in idlwave.el.gz.

Signature

(idlwave-all-assq KEY LIST)

Documentation

Return a list of all associations of Key in LIST.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlwave.el.gz
(defun idlwave-all-assq (key list)
  "Return a list of all associations of Key in LIST."
  (let (rtn elt)
    (while (setq elt (assq key list))
      (push elt rtn)
      (setq list (cdr (memq elt list))))
    (nreverse rtn)))