Send table in Org-mode as well, just like radio tables do it in other modes

* lisp/org.el (org-ctrl-c-ctrl-c): Consider sending a radio table also in Org
This commit is contained in:
Carsten Dominik 2010-11-12 09:28:22 -06:00
parent dd7b13bde8
commit af71c1b049
1 changed files with 2 additions and 1 deletions

View File

@ -17320,7 +17320,8 @@ This command does many different things, depending on context:
(if arg
(call-interactively 'org-table-recalculate)
(org-table-maybe-recalculate-line))
(call-interactively 'org-table-align))
(call-interactively 'org-table-align)
(orgtbl-send-table 'maybe))
((or (org-footnote-at-reference-p)
(org-footnote-at-definition-p))
(call-interactively 'org-footnote-action))