Browse Source

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
Carsten Dominik 14 years ago
parent
commit
af71c1b049
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lisp/org.el

+ 2 - 1
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))