summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2010-11-12 09:28:22 -0600
committerCarsten Dominik <carsten.dominik@gmail.com>2010-11-12 09:28:22 -0600
commitaf71c1b04959e7c03f0bf6571ba7a8fc461ff55d (patch)
tree342649b2c7f7123ea29fd0d6732406aac6451b37
parentdd7b13bde8cedd93c0e90693c837a6946710cb73 (diff)
downloadorg-mode-af71c1b04959e7c03f0bf6571ba7a8fc461ff55d.tar.gz
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
-rw-r--r--lisp/org.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 18e7fc5..ea2c9a8 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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))