Variable: org-calc-default-modes

org-calc-default-modes is a customizable variable defined in org-table.el.gz.

Value

(calc-internal-prec 12 calc-float-format
		    (float 8)
		    calc-angle-mode deg calc-prefer-frac nil calc-symbolic-mode nil calc-date-format
		    (YYYY "-" MM "-" DD " " Www
			  (" " hh ":" mm))
		    calc-display-working-message t)

Documentation

List with Calc mode settings for use in calc-eval for table formulas.

The list must contain alternating symbols (Calc modes variables and values). Don't remove any of the default settings, just change the values. Org mode relies on the variables to be present in the list.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defcustom org-calc-default-modes
  '(calc-internal-prec 12
		       calc-float-format  (float 8)
		       calc-angle-mode    deg
		       calc-prefer-frac   nil
		       calc-symbolic-mode nil
		       calc-date-format (YYYY "-" MM "-" DD " " Www (" " hh ":" mm))
		       calc-display-working-message t)
  "List with Calc mode settings for use in `calc-eval' for table formulas.
The list must contain alternating symbols (Calc modes variables and values).
Don't remove any of the default settings, just change the values.  Org mode
relies on the variables to be present in the list."
  :group 'org-table-calculation
  :type 'plist)