Variable: peg--actions
peg--actions is a variable defined in peg.el.gz.
Value
nil
Documentation
Actions collected along the current parse.
Used at runtime for backtracking. It's a list ((POS . THUNK)...). Each THUNK is executed at the corresponding POS. Thunks are executed in a post-processing step, not during parsing.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/peg.el.gz
(defvar peg--actions nil
"Actions collected along the current parse.
Used at runtime for backtracking. It's a list ((POS . THUNK)...).
Each THUNK is executed at the corresponding POS. Thunks are
executed in a post-processing step, not during parsing.")