From af71c1b04959e7c03f0bf6571ba7a8fc461ff55d Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Fri, 12 Nov 2010 09:28:22 -0600 Subject: [PATCH] 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 --- lisp/org.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 18e7fc5f6..ea2c9a8da 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))