Variable: comment-style
comment-style is a customizable variable defined in newcomment.el.gz.
Value
indent
Documentation
Style to be used for comment-region.
See comment-styles for a list of available styles.
This variable was added, or its default value changed, in Emacs 23.1.
Probably introduced at or before Emacs version 21.1.
Source Code
;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
;;;###autoload
(defcustom comment-style 'indent
"Style to be used for `comment-region'.
See `comment-styles' for a list of available styles."
:type (if (boundp 'comment-styles)
`(choice
,@(mapcar (lambda (s)
`(const :tag ,(format "%s: %s" (car s) (nth 5 s))
,(car s)))
comment-styles))
'symbol)
:version "23.1"
:group 'comment)