Function: uncomment-region-default

uncomment-region-default is a byte-compiled function defined in newcomment.el.gz.

Signature

(uncomment-region-default BEG END &optional ARG)

Documentation

Uncomment each line in the BEG .. END region.

The numeric prefix ARG can specify a number of chars to remove from the comment markers.

Source Code

;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
(defun uncomment-region-default (beg end &optional arg)
  "Uncomment each line in the BEG .. END region.
The numeric prefix ARG can specify a number of chars to remove from the
comment markers."
  (if comment-combine-change-calls
      (combine-change-calls beg end (uncomment-region-default-1 beg end arg))
    (uncomment-region-default-1 beg end arg)))