Function: org-table-formula-from-user
org-table-formula-from-user is a byte-compiled function defined in
org-table.el.gz.
Signature
(org-table-formula-from-user S)
Documentation
Convert a formula from user to internal representation.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-formula-from-user (s)
"Convert a formula from user to internal representation."
(if org-table-use-standard-references
(org-table-convert-refs-to-rc s)
s))