Fixed bug with timestamp increment during S-RET copy in tables.

This commit is contained in:
Carsten Dominik 2008-10-22 17:29:27 +02:00
parent b7db897e6d
commit 7d30bd5c47
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2008-10-22 Carsten Dominik <dominik@science.uva.nl>
* org-table.el (org-table-copy-down): Fix bug with time stamp
increment.
* org-mouse.el (org-mouse-features): New option.
(org-mode-hook): Turn on features depending on
`org-mouse-features'.

View File

@ -894,7 +894,7 @@ in order to easily repeat the interval."
(insert txt)
(org-move-to-column col)
(if (and org-table-copy-increment (org-at-timestamp-p t))
(org-timestamp-up 1)
(org-timestamp-up-day)
(org-table-maybe-recalculate-line))
(org-table-align)
(org-move-to-column col))