Variable: srecode-document-autocomment-param-alist

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

Value

(("[Cc]txt" . "Context")
 ("[Ii]d" . "Identifier of")
 ("[Tt]ype" . "Type of")
 ("[Nn]ame" . "Name of")
 ("argc" . "Number of arguments")
 ("argv" . "Argument vector")
 ("envp" . "Environment variable vector"))

Documentation

Alist of common variable names appearing as function parameters.

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 of text to use to describe MATCH. When one is encountered, document-insert-parameters will automatically place this comment after the parameter name.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/document.el.gz
(defcustom srecode-document-autocomment-param-alist
  '( ("[Cc]txt" . "Context")
     ("[Ii]d" . "Identifier of")
     ("[Tt]ype" . "Type of")
     ("[Nn]ame" . "Name of")
     ("argc" . "Number of arguments")
     ("argv" . "Argument vector")
     ("envp" . "Environment variable vector")
     )
  "Alist of common variable names appearing as function parameters.
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 of text to use to describe MATCH.
When one is encountered, document-insert-parameters will automatically
place this comment after the parameter name."
  :type '(repeat (cons (regexp :tag "Regexp")
		       (string :tag "Doc Text"))))