From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Sebastien Vauban" Subject: [PATCH] Separate file time from its tasks times Date: Fri, 30 Mar 2012 15:10:27 +0200 Message-ID: <80398qb5fg.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org 2012-03-30 Sebastien Vauban * org-clock.el (org-clocktable-write-default): Make the sum appear visually correct by not mixing the total time per file and sub-totals. >From 148cdf141add43798e21925ca852587017f6312a Mon Sep 17 00:00:00 2001 From: Sebastien Vauban Date: Fri, 30 Mar 2012 15:07:01 +0200 Subject: [PATCH] Separate file time from its tasks times --- lisp/org-clock.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lisp/org-clock.el b/lisp/org-clock.el index 7c2c2ab..b7351a7 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -2293,7 +2293,7 @@ from the dynamic block definition." properties "|") "|") "") ;properties columns, maybe (if indent (org-clocktable-indent-string level) "") ; indentation hlc headline hlc "|" ; headline - (make-string (min (1- ntcol) (or (- level 1))) ?|) + (make-string (min (1- ntcol) (or level)) ?|) ; empty fields for higher levels hlc (org-minutes-to-hh:mm-string (nth 3 entry)) hlc ; time "|\n" ; close line -- 1.7.9 Best regards, Seb -- Sebastien Vauban