From bcac4afc03d602262c807cf78fe6ad01e5a05953 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 30 Oct 2017 20:04:45 +0100 Subject: [PATCH] =?UTF-8?q?[Org]=20Don=E2=80=99t=20use=20too=20large=20num?= =?UTF-8?q?bers=20in=20clock=20consistency=20checks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit They could get too large and could be automatically converted to floats then, resulting in strange errors. --- site-lisp/db-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 7529dbb..079ea3b 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -331,7 +331,7 @@ forces clocking in of the default task." org-agenda-search-headline-for-time nil) (setq org-agenda-clock-consistency-checks - '(:max-duration 999999999 + '(:max-duration 9999999 :min-duration 0 :max-gap 0 :gap-ok-around nil