help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Is there a way to instrument for edebug a form (say, a progn) given


From: Drew Adams
Subject: RE: Is there a way to instrument for edebug a form (say, a progn) given to `eval'?
Date: Mon, 4 Jan 2016 14:58:12 -0800 (PST)

> OK, so try C-u C-M-x with this form:
> (eval '(progn (message "foo") (message "bar")))
> and see how Edebug doesn't step into the progn.
> 
> I suspect that it's impossible to actually edebug the `progn' form here,
> I just would like to make sure.

Well, as I said earlier, you can at least do this:

(progn
  (debug)
  (eval '(progn (message "foo") (message "bar"))))

or this:

(eval '(progn (debug) (message "foo") (message "bar")))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]