Function: cperl-comment-region

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

Signature

(cperl-comment-region B E ARG)

Documentation

Comment or uncomment 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-comment-region (b e arg)
  "Comment or uncomment 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)))