Function: idlwave-rinfo-assq
idlwave-rinfo-assq is a byte-compiled function defined in
idlwave.el.gz.
Signature
(idlwave-rinfo-assq NAME TYPE CLASS LIST)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/idlwave.el.gz
(defun idlwave-rinfo-assq (name type class list)
;; Works like assq, but also checks type and class
(catch 'exit
(let (match)
(while (setq match (assq name list))
(and (or (eq type t)
(eq (nth 1 match) type))
(eq (nth 2 match) class)
(throw 'exit match))
(setq list (cdr (memq match list)))))))