Function: srecode-semantic-handle-:blank
srecode-semantic-handle-:blank is a byte-compiled function defined in
args.el.gz.
Signature
(srecode-semantic-handle-:blank DICT)
Documentation
Add macros into the dictionary DICT specifying blank line spacing.
The wrapgap means make sure the first and last lines of the macro do not contain any text from preceding or following text.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/args.el.gz
;;; Code:
;;; :blank
;;
;; Using :blank means that the template should force blank lines
;; before and after the template, regardless of where the insertion
;; is occurring.
(defun srecode-semantic-handle-:blank (dict)
"Add macros into the dictionary DICT specifying blank line spacing.
The wrapgap means make sure the first and last lines of the macro
do not contain any text from preceding or following text."
;; This won't actually get used, but it might be nice
;; to know about it.
(srecode-dictionary-set-value dict "BLANK" t)
)