Function: registry-lookup-breaks-before-lexbind

registry-lookup-breaks-before-lexbind is a byte-compiled function defined in registry.el.gz.

Signature

(registry-lookup-breaks-before-lexbind ARG &rest ARGS)

Implementations

(registry-lookup-breaks-before-lexbind (DB registry-db) KEYS) in `registry.el'.

Search for KEYS in the registry-db DB. Returns an alist of the key followed by the entry in a list, not a cons cell.

Source Code

;; Defined in /usr/src/emacs/lisp/registry.el.gz
(cl-defmethod registry-lookup-breaks-before-lexbind ((db registry-db) keys)
  "Search for KEYS in the registry-db DB.
Returns an alist of the key followed by the entry in a list, not a cons cell."
  (let ((data (oref db data)))
    (delq nil
	  (cl-loop for key in keys
                   when (gethash key data)
                   collect (list key (gethash key data))))))