Variable: vc-comment-alist
vc-comment-alist is a customizable variable defined in vc.el.gz.
Value
((nroff-mode ".\\\"" ""))
Documentation
Special comment delimiters for generating VC headers.
Add an entry in this list if you need to override the normal comment-start
and comment-end variables. This will only be necessary if the mode language
is sensitive to blank lines.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc.el.gz
(defcustom vc-comment-alist
'((nroff-mode ".\\\"" ""))
"Special comment delimiters for generating VC headers.
Add an entry in this list if you need to override the normal `comment-start'
and `comment-end' variables. This will only be necessary if the mode language
is sensitive to blank lines."
:type '(repeat (list :format "%v"
(symbol :tag "Mode")
(string :tag "Comment Start")
(string :tag "Comment End"))))