Variable: edebug--unwrap-cache

edebug--unwrap-cache is a variable defined in edebug.el.gz.

Value

#s(hash-table test eq weakness key)

Documentation

Hash-table containing the results of unwrapping cons cells.

These results are reused to avoid redundant work but also to avoid infinite loops when the code/environment contains a circular object.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defconst edebug--unwrap-cache
  (make-hash-table :test 'eq :weakness 'key)
  "Hash-table containing the results of unwrapping cons cells.
These results are reused to avoid redundant work but also to avoid
infinite loops when the code/environment contains a circular object.")