From 3a94b2d07fe268f3643c44209d564798346cc93b Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Thu, 1 May 2008 10:04:14 +0200 Subject: [PATCH] Bug fix for clock drawers. --- ChangeLog | 3 +++ lisp/org-clock.el | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2a72bfce3..2f5a1ddbb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-05-01 Carsten Dominik + * lisp/org-clock.el (org-clock-find-position): Don't include notes + into clock drawer. + * lisp/org-archive.el (org-archive-subtree): No longer remove an extra line after cutting the subtree. `org-cut-subtree' already takes care of this. diff --git a/lisp/org-clock.el b/lisp/org-clock.el index 08844686c..d889d50cd 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -295,7 +295,6 @@ the clocking selection, associated with the letter `d'." ;; Wrap current entries into a new drawer (goto-char last) (beginning-of-line 2) - (if (org-at-item-p) (org-end-of-item)) (insert ":END:\n") (beginning-of-line 0) (org-indent-line-function)