Hi,
Commit: 807c73ee4799206046b7605eb67710495269a40d
which intends to check that we are at a planning element when changing
timestamps causes a bug for me:
I get: "Not an Org time string: #+TITLE: TTTT", when trying to update
timestamps.
This is almost certainly because the added line modifies match data (
org-element-at-point may do so, according to docstring)
(org-element-type-p (org-element-at-point) 'planning)
And so `(setq ts (match-string 1))` gets the wrong match data.
I guess saving (match-string 1) to a variable first would be a solution.
Best,
Anders Johansson