diff --git a/lisp/org-table.el b/lisp/org-table.el index 6172e1cbd..a6f7ac447 100644 --- a/lisp/org-table.el +++ b/lisp/org-table.el @@ -369,8 +369,9 @@ and table.el tables." (if (y-or-n-p "Convert table to Org-mode table? ") (org-table-convert))) ((org-at-table-p) - (if (y-or-n-p "Convert table to table.el table? ") - (org-table-convert))) + (when (y-or-n-p "Convert table to table.el table? ") + (org-table-align) + (org-table-convert))) (t (call-interactively 'table-insert)))) (defun org-table-create-or-convert-from-region (arg)