Function: org-before-change-function

org-before-change-function is a byte-compiled function defined in org.el.gz.

Signature

(org-before-change-function BEG END)

Documentation

Every change indicates that a table might need an update.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;;;; Define the Org mode

(defun org-before-change-function (_beg _end)
  "Every change indicates that a table might need an update."
  (setq org-table-may-need-update t))