Function: srecode-template-inserter-include-wrap

srecode-template-inserter-include-wrap is a byte-compiled function defined in insert.el.gz.

Signature

(srecode-template-inserter-include-wrap &rest SLOTS)

Documentation

Create a new object of class type srecode-template-inserter-include-wrap(var)/srecode-template-inserter-include-wrap(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
;;
;; This template combines the include template and the sectional template.
;; It will first insert the included template, then insert the embedded
;; template wherever the $^$ in the included template was.
;;
;; Since it uses dual inheritance, it will magically get the end-matching
;; behavior of #, with the including feature of >.
;;
(defclass srecode-template-inserter-include-wrap (srecode-template-inserter-include srecode-template-inserter-section-start)
   ((key :initform ?<
	 :allocation :class
	 :documentation
	 "The character code used to identify inserters of this style.")
    )
   "Include a different template into this one, and add text at the ^ macro.
The included template will have additional dictionary entries from the subdictionary
stored specified by this macro.  If the included macro includes a ^ macro,
then the text between this macro and the end macro will be inserted at
the ^ macro.")