Function: org-table-maybe-recalculate-line

org-table-maybe-recalculate-line is an autoloaded, interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-maybe-recalculate-line)

Documentation

Recompute the current line if marked for it, and if we haven't just done it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun org-table-maybe-recalculate-line ()
  "Recompute the current line if marked for it, and if we haven't just done it."
  (interactive)
  (and org-table-allow-automatic-line-recalculation
       (not (and (memq last-command org-recalc-commands)
		 (eq org-last-recalc-line (line-beginning-position))))
       (save-excursion (beginning-of-line 1)
		       (looking-at org-table-auto-recalculate-regexp))
       (org-table-recalculate) t))