Function: TeX-comment-padding-string
TeX-comment-padding-string is a byte-compiled function defined in
tex.el.
Signature
(TeX-comment-padding-string)
Documentation
Return comment padding as a string.
The variable comment-padding can hold an integer or a string.
This function will return the appropriate string representation
regardless of its data type.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-comment-padding-string ()
"Return comment padding as a string.
The variable `comment-padding' can hold an integer or a string.
This function will return the appropriate string representation
regardless of its data type."
(if (integerp comment-padding)
(make-string comment-padding ? )
comment-padding))