0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-16 20:46:27 +00:00

Bugfix: Better indentation for new clock/logbook drawers

This commit is contained in:
Carsten Dominik 2009-03-02 06:41:29 +01:00
parent 8b38105040
commit 721dae7dd5
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-03-02 Carsten Dominik <carsten.dominik@gmail.com>
* org-clock.el (org-clock-find-position): Better indentation of
new clock drawers.
2009-03-01 Carsten Dominik <carsten.dominik@gmail.com>
* org-agenda.el (org-agenda-quit): Delete window only when the

View file

@ -444,12 +444,12 @@ the clocking selection, associated with the letter `d'."
(stringp org-clock-into-drawer)
(and (integerp org-clock-into-drawer)
(< org-clock-into-drawer 2)))
(org-indent-line-function)
(insert ":" drawer ":\n:END:\n")
(beginning-of-line 0)
(org-indent-line-function)
(beginning-of-line 0)
(org-flag-drawer t)
(org-indent-line-function)
(beginning-of-line 2)
(or org-log-states-order-reversed
(and (re-search-forward org-property-end-re nil t)