From cdc5054835fe5541bc2008bd827148cbb701851b Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Mon, 28 Sep 2009 07:47:18 +0100 Subject: [PATCH] Iterate table with `C-c C-u C-c C-c' in #+TBLFM line --- lisp/ChangeLog | 3 +++ lisp/org.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 9b6480617..25be313b3 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2009-09-28 Carsten Dominik + * org.el (org-ctrl-c-ctrl-c): Pass prefix arg to + org-table-recalculate when cursor is in TBLFM line. + * org-list.el (org-renumber-ordered-list): Fix cursor position when bullet length has changed. diff --git a/lisp/org.el b/lisp/org.el index 89d3bc893..bde12b15e 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -15111,7 +15111,7 @@ This command does many different things, depending on context: (beginning-of-line 1) (skip-chars-backward " \r\n\t") (if (org-at-table-p) - (org-call-with-arg 'org-table-recalculate t)))) + (org-call-with-arg 'org-table-recalculate (or arg t))))) (t ; (org-set-regexps-and-options) ; (org-restart-font-lock)