Function: edebug-print-trace-before
edebug-print-trace-before is a byte-compiled function defined in
edebug.el.gz.
Signature
(edebug-print-trace-before MSG)
Documentation
Function called to print trace info before expression evaluation.
MSG is printed after ::::{ .
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
(defun edebug-print-trace-before (msg)
"Function called to print trace info before expression evaluation.
MSG is printed after `::::{ '."
(edebug-trace-display
edebug-trace-buffer "%s{ %s" (make-string edebug-stack-depth ?\:) msg))