Function: cperl-uncomment-region

cperl-uncomment-region is an interactive and byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-uncomment-region B E ARG)

Documentation

Uncomment or comment each line in the region between B and E.

ARG is passed to comment-region, which see.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-uncomment-region (b e arg)
  "Uncomment or comment each line in the region between B and E.
ARG is passed to `comment-region', which see."
  (interactive "r\np")
  (let ((comment-start "#"))
    (comment-region b e (- arg))))