Function: comment-region-default
comment-region-default is a byte-compiled function defined in
newcomment.el.gz.
Signature
(comment-region-default BEG END &optional ARG)
Source Code
;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
(defun comment-region-default (beg end &optional arg)
(if comment-combine-change-calls
(combine-change-calls beg
;; A new line might get inserted and whitespace deleted
;; after END for line comments. Ensure the next argument is
;; after any and all changes.
(save-excursion
(goto-char end)
(forward-line)
(point))
(comment-region-default-1 beg end arg))
(comment-region-default-1 beg end arg)))