Variable: srecode-document-autocomment-param-type-alist

srecode-document-autocomment-param-type-alist is a customizable variable defined in document.el.gz.

Value

(("const" . "Constant")
 ("void" . "Empty")
 ("char[ ]*\\*" . "String ")
 ("\\*\\*" . "Pointer to ")
 ("\\*" . "Pointer ")
 ("char[ ]*\\([^        *]\\|$\\)" . "Character")
 ("int\\|long" . "Number of")
 ("FILE" . "File of")
 ("float\\|double" . "Value of")
 ("Bool\\|BOOL" . "Flag")
 ("Window" . "Window")
 ("GC" . "Graphic Context")
 ("Widget" . "Widget"))

Documentation

Alist of input parameter types and strings describing them.

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-param-type-alist
  '(("const" . "Constant")
    ("void" . "Empty")
    ("char[ ]*\\*" . "String ")
    ("\\*\\*" . "Pointer to ")
    ("\\*" . "Pointer ")
    ("char[ ]*\\([^ \t*]\\|$\\)" . "Character")
    ("int\\|long" . "Number of")
    ("FILE" . "File of")
    ("float\\|double" . "Value of")
    ;; How about some X things?
    ("Bool\\|BOOL" . "Flag")
    ("Window" . "Window")
    ("GC" . "Graphic Context")
    ("Widget" . "Widget")
    )
  "Alist of input parameter types and strings describing them.
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"))))