Variable: org-table-fix-formulas-confirm

org-table-fix-formulas-confirm is a customizable variable defined in org-table.el.gz.

Value

nil

Documentation

Whether the user should confirm when Org fixes formulas.

This variable was added, or its default value changed, in Emacs 24.1.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-table-fix-formulas-confirm nil
  "Whether the user should confirm when Org fixes formulas."
  :group 'org-table-editing
  :version "24.1"
  :type '(choice
	  (const :tag "with yes-or-no" yes-or-no-p)
	  (const :tag "with y-or-n" y-or-n-p)
	  (const :tag "no confirmation" nil)))