Variable: edebug-dotted-spec
edebug-dotted-spec is a variable defined in edebug.el.gz.
Value
nil
Documentation
Set to t when matching after the dot in a dotted spec list.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;;; Cursors for traversal of list and vector elements with offsets.
;; Edebug's instrumentation is based on parsing the sexps, which come with
;; auxiliary position information. Instead of keeping the position
;; information together with the sexps, it is kept in a "parallel
;; tree" of offsets.
;;
;; An "edebug cursor" is a pair of a *list of sexps* (called the
;; "expressions") together with a matching list of offsets.
;; When we're parsing the content of a list, the
;; `edebug-cursor-expressions' is simply the list but when parsing
;; a vector, the `edebug-cursor-expressions' is a list formed of the
;; elements of the vector.
(defvar edebug-dotted-spec nil
"Set to t when matching after the dot in a dotted spec list.")