Function: srecode-template-inserter-blank

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

Signature

(srecode-template-inserter-blank &rest SLOTS)

Documentation

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

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
(defclass srecode-template-inserter-blank (srecode-template-inserter)
   ((key :initform "\r"
	 :allocation :class
	 :documentation
	 "The character representing this inserter style.
Can't be blank, or it might be used by regular variable insertion.")
    (where :initform 'begin
	   :initarg :where
	   :documentation
	   "This should be `begin' or `end', indicating where to insert a CR.
When `begin', insert a CR if not at `bol'.
When `end', insert a CR if not at `eol'.")
    ;; @TODO - Add slot and control for the number of blank
    ;;         lines before and after point.
   )
   "Insert a newline before and after a template, and possibly do indenting.
Specify the :blank argument to enable this inserter.")