Function: flyspell-after-change-function

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

Signature

(flyspell-after-change-function START STOP LEN)

Documentation

Save the current buffer and point for Flyspell's post-command hook.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/flyspell.el.gz
;;*---------------------------------------------------------------------*/
;;*    flyspell-after-change-function ...                               */
;;*---------------------------------------------------------------------*/
(defun flyspell-after-change-function (start stop _len)
  "Save the current buffer and point for Flyspell's post-command hook."
  (push (cons start stop) flyspell-changes))