Function: srecode-parse-input
srecode-parse-input is a byte-compiled function defined in
compile.el.gz.
Signature
(srecode-parse-input ARG &rest ARGS)
Implementations
((ins srecode-template-inserter-section-start) tag input state) in `srecode/insert.el'.
For the section inserter INS, parse INPUT. Shorten input until the END token is found. Return the remains of INPUT.
((ins srecode-template-inserter) tag input state) in `srecode/compile.el'.
For the template inserter INS, parse INPUT. Shorten input only by the amount needed. Return the remains of INPUT. STATE is the current compilation state.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/compile.el.gz
(cl-defmethod srecode-parse-input ((_ins srecode-template-inserter)
_tag input _STATE)
"For the template inserter INS, parse INPUT.
Shorten input only by the amount needed.
Return the remains of INPUT.
STATE is the current compilation state."
input)