Function: org-table-fedit-abort

org-table-fedit-abort is an interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-fedit-abort)

Documentation

Abort editing formulas, without installing the changes.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
(defun org-table-fedit-abort ()
  "Abort editing formulas, without installing the changes."
  (interactive)
  (org-table-remove-rectangle-highlight)
  (let ((pos org-pos) (sel-win org-selected-window))
    (set-window-configuration org-window-configuration)
    (select-window sel-win)
    (goto-char pos)
    (move-marker pos nil)
    (message "Formula editing aborted without installing changes")))