[Timeline] Make sure buffer is unfolded before iterating over clocklines

This commit is contained in:
Daniel Borchmann 2018-11-21 17:19:06 +01:00
parent f75609e987
commit 70c3fc3aee
Signed by: exot
GPG Key ID: 4F63DB96D45AA9C6

View File

@ -125,6 +125,10 @@ on the start of the headline. Traversal will be done from the
end of the file upwards. If the buffer is narrowed, only this end of the file upwards. If the buffer is narrowed, only this
region will be traversed." region will be traversed."
(when (eq major-mode 'org-mode) (when (eq major-mode 'org-mode)
;; Make sure everything is visible, as otherwise editing may produce odd
;; results
(org-cycle '(64))
(let* ((re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*" (let* ((re (concat "^\\(\\*+\\)[ \t]\\|^[ \t]*"
org-clock-string org-clock-string
"[ \t]*\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)"))) "[ \t]*\\(\\[.*?\\]\\)-+\\(\\[.*?\\]\\)")))