Variable: uncomment-region-function

uncomment-region-function is a variable defined in newcomment.el.gz.

Value

uncomment-region-default

Documentation

Function to uncomment a region.

Its args are the same as those of uncomment-region, but BEG and END are guaranteed to be correctly ordered. It is called within save-excursion.

Applicable at least in modes for languages like fixed-format Fortran where comments always start in column zero.

Source Code

;; Defined in /usr/src/emacs/lisp/newcomment.el.gz
(defvar uncomment-region-function 'uncomment-region-default
  "Function to uncomment a region.
Its args are the same as those of `uncomment-region', but BEG and END are
guaranteed to be correctly ordered.  It is called within `save-excursion'.

Applicable at least in modes for languages like fixed-format Fortran where
comments always start in column zero.")