Function: cperl-after-change-function

cperl-after-change-function is a byte-compiled function defined in cperl-mode.el.gz.

Signature

(cperl-after-change-function BEG END OLD-LEN)

Documentation

Process information provided as an after-change-function.

Reset CPerl mode's syntax pointer to BEG.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
  nil)					; Do not iterate

;; Called when any modification is made to buffer text.
(defun cperl-after-change-function (beg _end _old-len)
  "Process information provided as an `after-change-function'.
Reset CPerl mode's syntax pointer to BEG."
  ;; We should have been informed about changes by `font-lock'.  Since it
  ;; does not inform as which calls are deferred, do it ourselves
  (if cperl-syntax-done-to
      (setq cperl-syntax-done-to (min cperl-syntax-done-to beg))))