Iterate table with `C-c C-u C-c C-c' in #+TBLFM line
This commit is contained in:
parent
44259b3231
commit
cdc5054835
|
@ -1,5 +1,8 @@
|
|||
2009-09-28 Carsten Dominik <carsten.dominik@gmail.com>
|
||||
|
||||
* 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.
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue