Function: forms--checkmod
forms--checkmod is a byte-compiled function defined in forms.el.gz.
Signature
(forms--checkmod)
Documentation
Check if this form has been modified, and call forms--update if so.
Source Code
;; Defined in /usr/src/emacs/lisp/forms.el.gz
(defun forms--checkmod ()
"Check if this form has been modified, and call forms--update if so."
(if (buffer-modified-p nil)
(let ((here (point)))
(forms--update)
(set-buffer-modified-p nil)
(goto-char here))))