From 3dc846ae3852b391e45c8454de702397b8db836a Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Sat, 20 Nov 2010 12:33:37 +0100 Subject: [PATCH] Make org-edit-special call the formula editor if cursor is in TBLFM line * lisp/org.el (org-edit-special): Check also for TBLFM line. Patch by Thorsten Wagner. --- lisp/org.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 023e0195c..6049f2f27 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -17259,7 +17259,10 @@ When in an #+include line, visit the include file. Otherwise call ((org-edit-fixed-width-region)) ((org-at-table.el-p) (org-edit-src-code)) - ((org-at-table-p) + ((or (org-at-table-p) + (save-excursion + (beginning-of-line 1) + (looking-at "[ \t]*#\\+TBLFM:"))) (call-interactively 'org-table-edit-formulas)) (t (call-interactively 'ffap)))) -- 2.11.4.GIT