Variable: srecode-document-autocomment-return-first-alist
srecode-document-autocomment-return-first-alist is a customizable
variable defined in document.el.gz.
Value
(("static" . "Locally defined function which ")
("Bool\\|BOOL" . "Status of "))
Documentation
List of regexp matches for types.
They provide a little bit of text when typing information is
described.
This is an alist with each element of the form:
(MATCH . RESULT)
MATCH is a regexp to match in the type field.
RESULT is a string.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/srecode/document.el.gz
(defcustom srecode-document-autocomment-return-first-alist
'(
;; Static must be first in the list to provide the intro to the sentence
("static" . "Locally defined function which ")
("Bool\\|BOOL" . "Status of ")
)
"List of regexp matches for types.
They provide a little bit of text when typing information is
described.
This is an alist with each element of the form:
(MATCH . RESULT)
MATCH is a regexp to match in the type field.
RESULT is a string."
:type '(repeat (cons (regexp :tag "Regexp")
(string :tag "Doc Text"))))