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 in CPerl mode.

See comment-region.

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 in CPerl mode.
See `comment-region'."
  (interactive "r\np")
  (let ((comment-start "#"))
    (comment-region b e arg)))