Function: extract-from-klist
extract-from-klist is a byte-compiled function defined in
cl-compat.el.gz.
Signature
(extract-from-klist KLIST KEY &optional DEF)
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/cl-compat.el.gz
(defun extract-from-klist (klist key &optional def)
(let ((res (assq key klist))) (if res (cdr res) def)))