Function: c-lookup-lists

c-lookup-lists is a byte-compiled function defined in cc-defs.el.gz.

Signature

(c-lookup-lists LIST ALIST1 ALIST2)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defsubst c-lookup-lists (list alist1 alist2)
  ;; first, find the first entry from LIST that is present in ALIST1,
  ;; then find the entry in ALIST2 for that entry.
  (assq (car (c-intersect-lists list alist1)) alist2))