* lisp/emacs-lisp/edebug.el (edebug-list-form): Don't gate so eagerly
The `edebug-gate` is fairly heavy handed, so don't activate it just because we seem to have found what looks like a valid form.
This commit is contained in:
parent
211ee13fb5
commit
8ef1933a04
1 changed files with 1 additions and 3 deletions
|
@ -1544,9 +1544,7 @@ contains a circular object."
|
|||
(defun edebug-list-form (cursor)
|
||||
;; Return an instrumented form built from the list form.
|
||||
;; The after offset will be left in the cursor after processing the form.
|
||||
(let ((head (edebug-top-element-required cursor "Expected elements"))
|
||||
;; Prevent backtracking whenever instrumenting.
|
||||
(edebug-gate t))
|
||||
(let ((head (edebug-top-element-required cursor "Expected elements")))
|
||||
;; Skip the first offset.
|
||||
(edebug-set-cursor cursor (edebug-cursor-expressions cursor)
|
||||
(cdr (edebug-cursor-offsets cursor)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue