From a4b41431327c89392066f76910fd3af8e8b5d13a Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 8 Jan 2013 15:57:10 +0100 Subject: [PATCH] org-src.el (org-edit-src-code): Fix bug when trying to edit a table.el table * org-src.el (org-edit-src-code): Fix bug when trying to edit a table.el table. Thanks to Jacobo de Vera for reporting this regression. --- lisp/org-src.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org-src.el b/lisp/org-src.el index 221ae367c..277196bb7 100644 --- a/lisp/org-src.el +++ b/lisp/org-src.el @@ -211,7 +211,8 @@ edited version. An optional argument CONTEXT is used by \\[org-edit-src-save] when calling this function. See `org-src-window-setup' to configure the display of windows containing the Org buffer and the code buffer." (interactive) - (if (not (org-in-block-p '("src" "example" "latex" "html"))) + (if (not (or (org-in-block-p '("src" "example" "latex" "html")) + (org-at-table.el-p))) (user-error "Not in a source code or example block") (unless (eq context 'save) (setq org-edit-src-saved-temp-window-config (current-window-configuration)))