Function: cperl-font-lock-unfontify-region-function

cperl-font-lock-unfontify-region-function is a byte-compiled function defined in cperl-mode.el.gz.

This function is obsolete since 30.1.

Signature

(cperl-font-lock-unfontify-region-function BEG END)

Documentation

Remove fontification between BEG and END.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
;;; Plug for wrong font-lock:

(defun cperl-font-lock-unfontify-region-function (beg end)
  "Remove fontification between BEG and END."
  (declare (obsolete nil "30.1"))
  (with-silent-modifications
    (remove-text-properties beg end '(face nil))))