Function: registry-full

registry-full is a byte-compiled function defined in registry.el.gz.

Signature

(registry-full ARG &rest ARGS)

Implementations

(registry-full (DB registry-db)) in `registry.el'.

Check if registry-db DB is full.

Source Code

;; Defined in /usr/src/emacs/lisp/registry.el.gz
(cl-defmethod registry-full ((db registry-db))
  "Check if registry-db DB is full."
  (>= (registry-size db)
      (oref db max-size)))