Cu CMx
evaluates defun form with the edebug tool. Can I do this programmatically? I want to do this because I want to write an elisp file of the following form:
;;; define a function with edebug instrumented. ... ;;; do something that invokes the function with particular arguments. ...
then I can run emacs -q --load
in this elisp file, go through the code, get an idea of ββfurther investigation of the error, edit the elisp file in my original emacs session, run emacs -q --load
and try again.
source share