Fix org-clock-load
commit13751c32491872c1d7c750d0283620a7cc461f8b
authorMatt Lundin <mdl@imapmail.org>
Mon, 19 Dec 2016 23:32:26 +0000 (19 17:32 -0600)
committerNicolas Goaziou <mail@nicolasgoaziou.fr>
Tue, 20 Dec 2016 17:01:02 +0000 (20 18:01 +0100)
treeaff557be139da8151876451b42e8f1a27bbbe80f
parent1d7f1349c9d753a5afd8fe1decf7e87a247cc55c
Fix org-clock-load

Since commit fda64f1ae2110175662b52daa3a5ec0f967f0c0d on November 6,
org-clock-load no longer restores clocks in org-clock-persist-file. The
contents of the file look like this:

(setq org-clock-stored-history '(("/home/matt/org/inbox.org" . 39479) ("/home/matt/org/reading.org" . 63478)))

The files both exist; the position information is correct; and
org-clock-persist is t. And yet after calling org-clock-load,
org-clock-history, org-clock-loaded, and org-clock-stored-history remain
nil.

The problem, it seems, is that the logic/order of the if statement was
reversed in the commit above. The attached patch should fix the issue.

Best,
Matt

[4. text/x-diff; 0001-org-clock-Fix-org-clock-load.patch]
From 6d649016fbbfaa28c902ee1e71c20ecf332f8a14 Mon Sep 17 00:00:00 2001
From: Matt Lundin <mdl@imapmail.org>
Date: Mon, 19 Dec 2016 17:24:10 -0600
Subject: [PATCH] org-clock: Fix org-clock-load

* lisp/org-clock.el: (org-clock-load): Fix incorrect order in if
statement that was preventing org-load from loading stored data and
populating org-clock-history.
lisp/org-clock.el