Function: hs-hide-comment-region

hs-hide-comment-region is a byte-compiled function defined in hideshow.el.gz.

This function is obsolete since 31.1; Use hs-hide-block-at-point instead.

Signature

(hs-hide-comment-region BEG END &optional REPOS-END)

Documentation

Hide a region from BEG to END, marking it as a comment.

Optional arg REPOS-END means reposition at end.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
(defun hs-hide-comment-region (beg end &optional _repos-end)
  "Hide a region from BEG to END, marking it as a comment.
Optional arg REPOS-END means reposition at end."
  (declare (obsolete "Use `hs-hide-block-at-point' instead." "31.1"))
  (hs-hide-block-at-point (list beg end)))