Function: comment-quote-nested

comment-quote-nested is a byte-compiled function defined in newcomment.el.gz.

Signature

(comment-quote-nested CS CE UNP)

Documentation

Quote or unquote nested comments.

If UNP is non-nil, unquote nested comment markers.

Source Code

;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
(defun comment-quote-nested (cs ce unp)
  "Quote or unquote nested comments.
If UNP is non-nil, unquote nested comment markers."
  (setq cs (comment-string-strip cs t t))
  (setq ce (comment-string-strip ce t t))
  (when (and comment-quote-nested
	     (> (length ce) 0))
    (funcall comment-quote-nested-function cs ce unp)))