Function: srecode-template-inserter-point-p
srecode-template-inserter-point-p is a byte-compiled function defined
in insert.el.gz.
Signature
(srecode-template-inserter-point-p OBJ)
Documentation
Return non-nil if OBJ is an object of type
srecode-template-inserter-point(var)/srecode-template-inserter-point(fun).
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
(defclass srecode-template-inserter-point (srecode-template-inserter)
((key :initform ?^
:allocation :class
:documentation
"The character code used to identify inserters of this style.")
(point :type (or null marker)
:allocation :class
:initform nil
:documentation
"Record the value of (point) in this class slot.
It is the responsibility of the inserter algorithm to clear this
after a successful insertion."))
"Record the value of (point) when inserted.
The cursor is placed at the ^ macro after insertion.
Some inserter macros, such as `srecode-template-inserter-include-wrap'
will place text at the ^ macro from the included macro.")