Function: comment-quote-re
comment-quote-re is a byte-compiled function defined in
newcomment.el.gz.
Signature
(comment-quote-re STR UNP)
Source Code
;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
(defun comment-quote-re (str unp)
(concat (regexp-quote (substring str 0 1))
"\\\\" (if unp "+" "*")
(regexp-quote (substring str 1))))