Variable: edebug-arrow-alist

edebug-arrow-alist is a variable defined in edebug.el.gz.

Value

((Continue-fast . "=") (Trace-fast . "-") (continue . ">")
 (trace . "->") (step . "=>") (next . "=>") (go . "<>")
 (Go-nonstop . ".."))

Documentation

Association list of arrows for each edebug mode.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;;; Display related functions

(defconst edebug-arrow-alist
  '((Continue-fast . "=")
    (Trace-fast . "-")
    (continue . ">")
    (trace . "->")
    (step . "=>")
    (next . "=>")
    (go . "<>")
    (Go-nonstop . "..")
    )
  "Association list of arrows for each edebug mode.")