Function: meta-comment-region
meta-comment-region is an interactive and byte-compiled function
defined in meta-mode.el.gz.
Signature
(meta-comment-region BEG END &optional ARG)
Documentation
Comment out active region as Metafont or MetaPost source.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-comment-region (beg end &optional arg)
"Comment out active region as Metafont or MetaPost source."
(interactive "r")
(comment-region beg end arg))