From 942c4a99dd29b6cb0f942f676b33b86962ed426f Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 4 Dec 2017 19:05:41 +0100 Subject: [PATCH] =?UTF-8?q?[Org]=20Don=E2=80=99t=20use=20UTC=20when=20conv?= =?UTF-8?q?erting=20time=20for=20reporting?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site-lisp/db-org.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 6f05e19..12c1985 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -988,10 +988,10 @@ always true that TSTART ≤ END ≤ TEND or TSTART ≤ START ≤ TEND." org-clock-string "[ \t]*\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)")) (level 0) - (tstart (cond ((stringp tstart) (org-time-string-to-seconds tstart t)) + (tstart (cond ((stringp tstart) (org-time-string-to-seconds tstart)) ((consp tstart) (float-time tstart)) (t tstart))) - (tend (cond ((stringp tend) (org-time-string-to-seconds tend t)) + (tend (cond ((stringp tend) (org-time-string-to-seconds tend)) ((consp tend) (float-time tend)) (t tend))) (t1 0)