Function: flymake-after-change-function
flymake-after-change-function is a byte-compiled function defined in
flymake.el.gz.
Signature
(flymake-after-change-function START STOP LEN)
Documentation
Start syntax check for current buffer if it isn't already running.
START and STOP and LEN are as in after-change-functions.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/flymake.el.gz
(defun flymake-after-change-function (start stop _len)
"Start syntax check for current buffer if it isn't already running.
START and STOP and LEN are as in `after-change-functions'."
(let((new-text (buffer-substring start stop)))
(push (list start stop new-text) flymake--recent-changes)
(flymake--schedule-timer-maybe)))