emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
@ 2023-10-20  3:51 Vladimir Nikishkin
  2023-10-20  7:37 ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-10-20  3:51 UTC (permalink / raw)
  To: emacs-orgmode

Dear Org developers,

org-contrib has the following lines 206 and 207 in org-eldoc:
#+begin_src elisp
;;;###autoload
(add-hook 'org-mode-hook #'org-eldoc-load)
#+end_src

which set up that hook automatically when the package org-contrib is
installed.

that hook is, seemingly, incompatible with the recent org-element,
and in general it seems dubious to automatically add features from a
deprecated repo.

Could those lines be removed? If someone is interested in
patching/using/maintaining that code, he can probably try to refactor it
in a better way.

(In any case, it is probably better to add such hooks in the :hook
clause of use-package.)

-- 
Your sincerely,
Vladimir Nikishkin (MiEr, lockywolf)
(Laptop)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-10-20  3:51 [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)] Vladimir Nikishkin
@ 2023-10-20  7:37 ` Ihor Radchenko
  2023-10-20  7:39   ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-10-20  7:37 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

> org-contrib has the following lines 206 and 207 in org-eldoc:
> #+begin_src elisp
> ;;;###autoload
> (add-hook 'org-mode-hook #'org-eldoc-load)
> #+end_src
>
> which set up that hook automatically when the package org-contrib is
> installed.
>
> that hook is, seemingly, incompatible with the recent org-element,

May you elaborate about incompatibility?

> ... and in general it seems dubious to automatically add features from a
> deprecated repo.

This repo not deprecated, but rather not much maintained.

> Could those lines be removed? If someone is interested in
> patching/using/maintaining that code, he can probably try to refactor it
> in a better way.
>
> (In any case, it is probably better to add such hooks in the :hook
> clause of use-package.)

That would constitute incompatible change for the existing users.
Although, autoload may cause org-eldoc to be loaded for users of
org-contrib, who are not interested in org-eldoc.
What we might do as a compromise is removing the autoload cookie only
and leaving the (add-hook ...) to be executed upon (require 'org-eldoc).

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-10-20  7:37 ` Ihor Radchenko
@ 2023-10-20  7:39   ` Vladimir Nikishkin
  2023-10-20  7:49     ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-10-20  7:39 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode


Ihor Radchenko <yantar92@posteo.net> writes:

> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
>> org-contrib has the following lines 206 and 207 in org-eldoc:
>> #+begin_src elisp
>> ;;;###autoload
>> (add-hook 'org-mode-hook #'org-eldoc-load)
>> #+end_src
>>
>> which set up that hook automatically when the package org-contrib is
>> installed.
>>
>> that hook is, seemingly, incompatible with the recent org-element,
>
> May you elaborate about incompatibility?
>

Yes. With org-eldoc loaded, and having a property '#+date: unpublished'
in an org file, I am having the '*Messages*' buffer filled with
#+begin_src elisp
⛔ Warning (org-element-cache): org-element--cache: Org parser error in 2015_Passwords.org.rclignore::53653. Resetting.
 The error was: (error "Invalid search bound (wrong side of point)")
 Backtrace:
"  backtrace-to-string(nil)
  org-element-at-point()
  org-eldoc-get-src-lang()
  org-eldoc-documentation-function(#f(compiled-function (string &rest plist) #<bytecode 0x76e7a7311110465>))
  #<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_17>(org-eldoc-documentation-function)
  eldoc-documentation-default()
  eldoc--invoke-strategy(nil)
  eldoc-print-current-symbol-info()
  #<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12>()
  apply(#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12> nil)
  timer-event-handler([t 0 0 500000 nil #<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12> nil idle 0 nil])
"
 Please report this to Org mode mailing list (M-x org-submit-bug-report).
#+end_src

>> Could those lines be removed? If someone is interested in
>> patching/using/maintaining that code, he can probably try to refactor it
>> in a better way.
>>
>> (In any case, it is probably better to add such hooks in the :hook
>> clause of use-package.)
>
> That would constitute incompatible change for the existing users.
> Although, autoload may cause org-eldoc to be loaded for users of
> org-contrib, who are not interested in org-eldoc.
> What we might do as a compromise is removing the autoload cookie only
> and leaving the (add-hook ...) to be executed upon (require 'org-eldoc).

Yes, maybe that is even better. Why would one (require 'org-eldoc) with
no intention of using it?

-- 
Your sincerely,
Vladimir Nikishkin (MiEr, lockywolf)
(Laptop)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-10-20  7:39   ` Vladimir Nikishkin
@ 2023-10-20  7:49     ` Ihor Radchenko
  2023-11-10  1:22       ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-10-20  7:49 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

>> May you elaborate about incompatibility?
>>
>
> Yes. With org-eldoc loaded, and having a property '#+date: unpublished'
> in an org file, I am having the '*Messages*' buffer filled with
> #+begin_src elisp
> ⛔ Warning (org-element-cache): org-element--cache: Org parser error in 2015_Passwords.org.rclignore::53653. Resetting.
>  The error was: (error "Invalid search bound (wrong side of point)")
>  Backtrace:
> "  backtrace-to-string(nil)
>   org-element-at-point()

This has nothing to do with eldoc.
If you can reproduce this problem consistently, may you create a minimal
example as described in https://orgmode.org/manual/Feedback.html#Feedback ?

>> That would constitute incompatible change for the existing users.
>> Although, autoload may cause org-eldoc to be loaded for users of
>> org-contrib, who are not interested in org-eldoc.
>> What we might do as a compromise is removing the autoload cookie only
>> and leaving the (add-hook ...) to be executed upon (require 'org-eldoc).
>
> Yes, maybe that is even better. Why would one (require 'org-eldoc) with
> no intention of using it?

Fixed, on master.
https://git.sr.ht/~bzg/org-contrib/commit/6e208c87bf6ede9251c9c5733b81b004b1e44966

As for `require', it is not so simple. Things like C-h f can trigger
loading libraries. But addressing such peculiarities is beyond the level
of maintenance we can provide for org-contrib.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-10-20  7:49     ` Ihor Radchenko
@ 2023-11-10  1:22       ` Vladimir Nikishkin
  2023-12-26  9:27         ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-11-10  1:22 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode


Ihor Radchenko <yantar92@posteo.net> writes:

> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
>>> May you elaborate about incompatibility?
>>>
>>
>> Yes. With org-eldoc loaded, and having a property '#+date: unpublished'
>> in an org file, I am having the '*Messages*' buffer filled with
>> #+begin_src elisp
>> ⛔ Warning (org-element-cache): org-element--cache: Org parser error in 2015_Passwords.org.rclignore::53653. Resetting.
>>  The error was: (error "Invalid search bound (wrong side of point)")
>>  Backtrace:
>> "  backtrace-to-string(nil)
>>   org-element-at-point()
>
> This has nothing to do with eldoc.
> If you can reproduce this problem consistently, may you create a minimal
> example as described in https://orgmode.org/manual/Feedback.html#Feedback ?

I found and fixed this problem.
It was actually unrelated to bare org, it was due to my experiments with
org-ts-mode. Sorry for the confusion.


-- 
Your sincerely,
Vladimir Nikishkin (MiEr, lockywolf)
(Laptop)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-11-10  1:22       ` Vladimir Nikishkin
@ 2023-12-26  9:27         ` Vladimir Nikishkin
  2023-12-26 12:12           ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26  9:27 UTC (permalink / raw)
  To: Ihor Radchenko, emacs-orgmode


Vladimir Nikishkin <lockywolf@gmail.com> writes:

> Ihor Radchenko <yantar92@posteo.net> writes:
>
>> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>>
>>>> May you elaborate about incompatibility?
>>>>
>>>
>>> Yes. With org-eldoc loaded, and having a property '#+date: unpublished'
>>> in an org file, I am having the '*Messages*' buffer filled with
>>> #+begin_src elisp
>>> ⛔ Warning (org-element-cache): org-element--cache: Org parser error in 2015_Passwords.org.rclignore::53653. Resetting.
>>>  The error was: (error "Invalid search bound (wrong side of point)")
>>>  Backtrace:
>>> "  backtrace-to-string(nil)
>>>   org-element-at-point()
>>
>> This has nothing to do with eldoc.
>> If you can reproduce this problem consistently, may you create a minimal
>> example as described in https://orgmode.org/manual/Feedback.html#Feedback ?
>
> I found and fixed this problem.
> It was actually unrelated to bare org, it was due to my experiments with
> org-ts-mode. Sorry for the confusion.

So, this might not actually be the case.
I am getting a lot of org-element-cache errors recently, and I don't
seem to be able to find what triggers them to appear.
The error message is always the same,
"Invalid search bound (wrong side of point)"

Any ideas on how to debug this?

-- 
Your sincerely,
Vladimir Nikishkin (MiEr, lockywolf)
(Laptop)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26  9:27         ` Vladimir Nikishkin
@ 2023-12-26 12:12           ` Ihor Radchenko
  2023-12-26 12:13             ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-12-26 12:12 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

> So, this might not actually be the case.
> I am getting a lot of org-element-cache errors recently, and I don't
> seem to be able to find what triggers them to appear.
> The error message is always the same,
> "Invalid search bound (wrong side of point)"
>
> Any ideas on how to debug this?

If you are using the latest main, you can set `debug-on-error' to t.
Then, you will see the backtrace of the error that you can share.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 12:12           ` Ihor Radchenko
@ 2023-12-26 12:13             ` Vladimir Nikishkin
  2023-12-26 12:23               ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26 12:13 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode


Ihor Radchenko <yantar92@posteo.net> writes:

> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
>> So, this might not actually be the case.
>> I am getting a lot of org-element-cache errors recently, and I don't
>> seem to be able to find what triggers them to appear.
>> The error message is always the same,
>> "Invalid search bound (wrong side of point)"
>>
>> Any ideas on how to debug this?
>
> If you are using the latest main, you can set `debug-on-error' to t.
> Then, you will see the backtrace of the error that you can share.

Did that, but it's not very useful:

#+begin_src elisp
Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
  org-element-paragraph-parser(23 (23))
  org-element--current-element(23 element nil nil)
  org-element--parse-to(573 nil nil)
  org-element--cache-process-request([552 552 3010 22 nil 1] nil 3010 nil nil nil)
  org-element--cache-sync(#<buffer index.org> 3010)
  org-element-at-point()
  org-eldoc-get-src-lang()
  org-eldoc-documentation-function(#f(compiled-function (string &rest plist) #<bytecode 0x138508dae21a79a6>))
  eldoc-documentation-default()
  eldoc--invoke-strategy(nil)
  eldoc-print-current-symbol-info()
  #<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12>()
  apply(#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12> nil)
  timer-event-handler([t 0 0 500000 nil #<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12> nil idle 0 nil])
#+end_src

The beginning of the call stack may be different, but the deep levels,
with "org-element--parse-to" are always more or less the same, and
produce the same error.

-- 
Your sincerely,
Vladimir Nikishkin (MiEr, lockywolf)
(Laptop)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 12:13             ` Vladimir Nikishkin
@ 2023-12-26 12:23               ` Ihor Radchenko
  2023-12-26 12:26                 ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-12-26 12:23 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

>> If you are using the latest main, you can set `debug-on-error' to t.
>> Then, you will see the backtrace of the error that you can share.
>
> Did that, but it's not very useful:
>
> #+begin_src elisp
> Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
>   org-element-paragraph-parser(23 (23))

Then, you can disable debug-on-error, and add the following to your config:
(setq org-element--cache-self-verify 'backtrace)
(setq org-element--cache-self-verify-frequency 1.0)

This will make Org mode produce the detailed parser logs, which you can
share. (Note that the log may contain parts of your Org file, so you
may consider sharing privately or obfuscating the logs)

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 12:23               ` Ihor Radchenko
@ 2023-12-26 12:26                 ` Vladimir Nikishkin
  2023-12-26 12:34                   ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26 12:26 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

On Tue, 26 Dec 2023 at 20:20, Ihor Radchenko <yantar92@posteo.net> wrote:
>
> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
> >> If you are using the latest main, you can set `debug-on-error' to t.
> >> Then, you will see the backtrace of the error that you can share.
> >
> > Did that, but it's not very useful:
> >
> > #+begin_src elisp
> > Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
> >   org-element-paragraph-parser(23 (23))
>
> Then, you can disable debug-on-error, and add the following to your config:
> (setq org-element--cache-self-verify 'backtrace)
> (setq org-element--cache-self-verify-frequency 1.0)
>
> This will make Org mode produce the detailed parser logs, which you can
> share. (Note that the log may contain parts of your Org file, so you
> may consider sharing privately or obfuscating the logs)
>
> --
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>

In which buffer?

-- 
Yours sincerely, Vladimir Nikishkin
(Sent from GMail web interface.)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 12:26                 ` Vladimir Nikishkin
@ 2023-12-26 12:34                   ` Vladimir Nikishkin
  2023-12-26 13:22                     ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26 12:34 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1486 bytes --]

Ah, never mind.

Logs attached, the file is very simple, also attached:


On Tue, 26 Dec 2023 at 20:26, Vladimir Nikishkin <lockywolf@gmail.com> wrote:
>
> On Tue, 26 Dec 2023 at 20:20, Ihor Radchenko <yantar92@posteo.net> wrote:
> >
> > Vladimir Nikishkin <lockywolf@gmail.com> writes:
> >
> > >> If you are using the latest main, you can set `debug-on-error' to t.
> > >> Then, you will see the backtrace of the error that you can share.
> > >
> > > Did that, but it's not very useful:
> > >
> > > #+begin_src elisp
> > > Debugger entered--Lisp error: (error "Invalid search bound (wrong side of point)")
> > >   org-element-paragraph-parser(23 (23))
> >
> > Then, you can disable debug-on-error, and add the following to your config:
> > (setq org-element--cache-self-verify 'backtrace)
> > (setq org-element--cache-self-verify-frequency 1.0)
> >
> > This will make Org mode produce the detailed parser logs, which you can
> > share. (Note that the log may contain parts of your Org file, so you
> > may consider sharing privately or obfuscating the logs)
> >
> > --
> > Ihor Radchenko // yantar92,
> > Org mode contributor,
> > Learn more about Org mode at <https://orgmode.org/>.
> > Support Org development at <https://liberapay.com/org-mode>,
> > or support my work at <https://liberapay.com/yantar92>
>
> In which buffer?
>
> --
> Yours sincerely, Vladimir Nikishkin
> (Sent from GMail web interface.)



-- 
Yours sincerely, Vladimir Nikishkin
(Sent from GMail web interface.)

[-- Attachment #2: test.org --]
[-- Type: application/octet-stream, Size: 391 bytes --]

# -*- mode: org; eval: (visual-line-mode) -*-
# Time-stamp: <2023-12-26 20:31:15 lockywolf>
#+title: Test title.
#+author: Lockywolf
#+date: <2023-12-26 Tue 20:31>
#+created: <2023-12-26 Tue 20:30:37>
#+refiled:
#+language: en
#+category: essays
#+tags: essay, literature, review, technology, terrorism
#+creator: Emacs-29.1.90/org-mode-9.6.13


* TODO Abstract

* TODO Body


** Test file


[-- Attachment #3: org-mode-log-2.log --]
[-- Type: text/x-log, Size: 354932 bytes --]

⛔ Warning (org-element-cache): org-element--cache: Warning(test.org): (handle-switch-frame) Cached element is incorrect in test.org. (Cache tic up to date: "yes") Resetting.
If this warning appears regularly, please report the warning text to Org mode mailing list (M-x org-submit-bug-report).
The element is: "(paragraph (:begin 1 :end 23 :contents-begin 1 :contents-end 23 :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . -288230376151711645) :cached t :parent (section (:begin 1 :end 23 :contents-begin 1 :contents-end 23 :robust-begin 1 :robust-end 21 :post-blank 0 :post-affiliated 1 :mode first-section :granularity element :org-element--cache-sync-key (36 . -576460752303423403) :cached t :parent (org-data ...)))))"
 The real element is: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:48 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :parent (org-data ...)))))"
 Cache around :begin:
nil
(paragraph (:begin 1 :end 23 :contents-begin 1 :contents-end 23 :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . -288230376151711645) :cached t :parent (section (:begin 1 :end 23 :contents-begin 1 :contents-end 23 :robust-begin 1 :robust-end 21 :post-blank 0 :post-affiliated 1 :mode first-section :granularity element :org-element--cache-sync-key (36 . -576460752303423403) :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 23 :end 23 :robust-begin 3 :robust-end 21 :post-blank 0 :post-affiliated 1 :path nil :mode org-data :CATEGORY nil :org-element--cache-sync-key (36 . -1152921504606846919) :cached t))))))
nil
Backtrace:
  org-element-cache diagnostics( *temp*): Added new element with (36 . -288230376151711645) key: "(paragraph (:begin 1 :end 23 :contents-begin 1 :contents-end 23 :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . -288230376151711645)))"
  org-element-cache diagnostics( *temp*): Added new element with (36 . -576460752303423403) key: "(section (:begin 1 :end 23 :contents-begin 1 :contents-end 23 :robust-begin 1 :robust-end 21 :post-blank 0 :post-affiliated 1 :mode first-section :granularity element :org-element--cache-sync-key (36 . -576460752303423403)))"
  org-element-cache diagnostics( *temp*): Added new element with (36 . -1152921504606846919) key: "(org-data (:begin 1 :contents-begin 1 :contents-end 23 :end 23 :robust-begin 3 :robust-end 21 :post-blank 0 :post-affiliated 1 :path nil :mode org-data :CATEGORY nil :org-element--cache-sync-key (36 . -1152921504606846919)))"
  org-element-cache diagnostics( *temp*): Nothing in cache. Adding org-data: "(org-data (:begin 1 :contents-begin 1 :contents-end 23 :end 23 :robust-begin 3 :robust-end 21 :post-blank 0 :post-affiliated 1 :path nil :mode org-data :CATEGORY nil))"
  org-element-cache diagnostics( *temp*): Interrupt: position 136 after threshold 1
  org-element-cache diagnostics( *temp*): Phase 1
  org-element-cache diagnostics( *temp*): org-element-cache: Processing request [114 114 344 22 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1] up to nil-1, next: nil
  org-element-cache diagnostics( *temp*): Updating next request offset to 22: [114 114 64 22 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics( *temp*): org-element-cache: Finished process. The cache size is 0. The remaining sync requests: "([-1 1 344 22 nil 0] [114 114 64 0 ... 1])"
  org-element-cache diagnostics( *temp*): Phase 0 deleted all elements in cache after -1!
  org-element-cache diagnostics( *temp*): Decreasing cache size to 0
  org-element-cache diagnostics( *temp*): removing (36 . 247)::"(keyword (:key \"TAGS\" :value #1=\"\" :begin 247 :end 256 :post-blank 0 :post-affiliated 247 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 247)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 1
  org-element-cache diagnostics( *temp*): removing (36 . 228)::"(keyword (:key \"CATEGORY\" :value \"essays\" :begin 228 :end 247 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 228)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 2
  org-element-cache diagnostics( *temp*): removing (36 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 213)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 3
  org-element-cache diagnostics( *temp*): removing (36 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 202)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 4
  org-element-cache diagnostics( *temp*): removing (36 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 165)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 5
  org-element-cache diagnostics( *temp*): removing (36 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 134)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 6
  org-element-cache diagnostics( *temp*): removing (36 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 114)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 7
  org-element-cache diagnostics( *temp*): removing (36 . 57)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:09 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . 57) :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (36 . 0)))))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 8
  org-element-cache diagnostics( *temp*): removing (36 . 0)::"(section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 343 :end 344 :robust-begin 3 :robust-end 341 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached nil :org-element--cache-sync-key (36 . -1))) :org-element--cache-sync-key (36 . 0)))"
  org-element-cache diagnostics( *temp*): Decreasing cache size to 9
  org-element-cache diagnostics( *temp*): removing (36 . -1)::"(org-data (:begin 1 :contents-begin 1 :contents-end 343 :end 344 :robust-begin 3 :robust-end 341 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (36 . -1)))"
  org-element-cache diagnostics( *temp*): Phase 0
  org-element-cache diagnostics( *temp*): org-element-cache: Processing request [-1 1 344 22 nil 0] up to nil-1, next: 114
  org-element-cache diagnostics( *temp*): Syncing down to 1-1
  org-element-cache diagnostics( *temp*): Extending to non-robust element "(org-data (:begin 1 :contents-begin 1 :contents-end 343 :end 344 :robust-begin 3 :robust-end 341 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (36 . -1)))"
  org-element-cache diagnostics( *temp*): Interrupt: position 114 after threshold 1
  org-element-cache diagnostics( *temp*): Phase 1
  org-element-cache diagnostics( *temp*): org-element-cache: Processing request [114 114 64 0 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1] up to 1-1, next: nil
  org-element-cache diagnostics( *temp*): Syncing down to 1-1
  org-element-cache diagnostics( *temp*): Adding new phase 0 request
  org-element-cache diagnostics( *temp*): Submitting new synchronization request for [1..1]𝝙22
  org-element-cache diagnostics( *temp*): nil is about to modify text: warning nil
  org-element-cache diagnostics( *temp*): After change
  org-element-cache diagnostics( *temp*): nil is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (36 . 57) key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:09 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . 57)))"
  org-element-cache diagnostics(test.org): Interrupt: position 114 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [114 114 64 0 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 0: [114 114 93 0 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 9. The remaining sync requests: "([114 114 64 29 #1=... 1] [114 114 93 -29 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[114 114 64 29 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1]"
"[114 114 93 -29 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 64: (36 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (36 . 57)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . 57) :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [57 1 64 29 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 0] up to nil-47, next: 114
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . 57) :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 343 :end 344 :robust-begin 3 :robust-end 341 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 314 :end 315 :robust-begin 3 :robust-end 312 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (36 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . 57) :cached t :parent (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 :robust-end 266 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 85 after threshold 62
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [114 114 93 -29 (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 ...)) 1] up to 47-62, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-62
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): nil is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): nil is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (36 . 57) key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (36 . 57)))"
  org-element-cache diagnostics(test.org): Interrupt: position 85 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 93: (36 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 :robust-end 266 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (36 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 :robust-end 266 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 10
  org-element-cache diagnostics(test.org): removing (36 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:01 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 :robust-end 266 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (36 . 0))) :org-element--cache-sync-key (36 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:01 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 :robust-end 266 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (35 . 0))) :org-element--cache-sync-key (35 . 1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 314 :end 315 :robust-begin 3 :robust-end 312 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 270 :contents-begin 1 :contents-end 268 :robust-begin 1 :robust-end 266 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 343 :end 344 :robust-begin 3 :robust-end 341 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (35 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:01 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (35 . 0))) :org-element--cache-sync-key (35 . 1)))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): nil is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): nil is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TAGS\" :value \"\" :begin 247 :end 256 :post-blank 0 :post-affiliated 247 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"essays\" :begin 228 :end 247 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 246 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (35 . 228)::"(keyword (:key \"CATEGORY\" :value \"essay\" :begin 228 :end 246 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 228)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (35 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (35 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (35 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (35 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (35 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (35 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0))) :org-element--cache-sync-key (35 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 246 1 (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 ...)) 0] up to nil-228, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 228-228
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0)))))"
 2: "(keyword (:key \"CATEGORY\" :value \"essay\" :begin 228 :end 246 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 343 :end 344 :robust-begin 3 :robust-end 341 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 299 :contents-begin 1 :contents-end 297 :robust-begin 1 :robust-end 295 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 342 :end 343 :robust-begin 3 :robust-end 340 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (34 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (34 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [228..245]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"essay\" :begin 228 :end 246 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 245 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (34 . 228)::"(keyword (:key \"CATEGORY\" :value \"essa\" :begin 228 :end 245 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 228)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (34 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (34 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (34 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (34 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (34 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (34 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0))) :org-element--cache-sync-key (34 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 245 1 (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 ...)) 0] up to nil-228, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 228-228
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0)))))"
 2: "(keyword (:key \"CATEGORY\" :value \"essa\" :begin 228 :end 245 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 342 :end 343 :robust-begin 3 :robust-end 340 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 298 :contents-begin 1 :contents-end 296 :robust-begin 1 :robust-end 294 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 341 :end 342 :robust-begin 3 :robust-end 339 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (33 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (33 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [228..244]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"essa\" :begin 228 :end 245 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 244 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (33 . 228)::"(keyword (:key \"CATEGORY\" :value \"ess\" :begin 228 :end 244 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 228)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (33 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (33 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (33 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (33 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (33 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (33 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0))) :org-element--cache-sync-key (33 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 244 1 (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 ...)) 0] up to nil-228, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 228-228
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0)))))"
 2: "(keyword (:key \"CATEGORY\" :value \"ess\" :begin 228 :end 244 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 341 :end 342 :robust-begin 3 :robust-end 339 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 297 :contents-begin 1 :contents-end 295 :robust-begin 1 :robust-end 293 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 340 :end 341 :robust-begin 3 :robust-end 338 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (32 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (32 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [228..243]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"ess\" :begin 228 :end 244 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 243 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (32 . 228)::"(keyword (:key \"CATEGORY\" :value \"es\" :begin 228 :end 243 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 228)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (32 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (32 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (32 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (32 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (32 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (32 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0))) :org-element--cache-sync-key (32 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 243 1 (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 ...)) 0] up to nil-228, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 228-228
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0)))))"
 2: "(keyword (:key \"CATEGORY\" :value \"es\" :begin 228 :end 243 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 340 :end 341 :robust-begin 3 :robust-end 338 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 296 :contents-begin 1 :contents-end 294 :robust-begin 1 :robust-end 292 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 339 :end 340 :robust-begin 3 :robust-end 337 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (31 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (31 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [228..242]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"es\" :begin 228 :end 243 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 242 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (31 . 228)::"(keyword (:key \"CATEGORY\" :value \"e\" :begin 228 :end 242 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 228)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (31 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (31 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (31 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (31 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (31 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (31 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0))) :org-element--cache-sync-key (31 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 242 1 (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 ...)) 0] up to nil-228, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 228-228
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0)))))"
 2: "(keyword (:key \"CATEGORY\" :value \"e\" :begin 228 :end 242 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 339 :end 340 :robust-begin 3 :robust-end 337 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 295 :contents-begin 1 :contents-end 293 :robust-begin 1 :robust-end 291 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 338 :end 339 :robust-begin 3 :robust-end 336 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (30 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (30 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [228..241]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"e\" :begin 228 :end 242 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 241 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (30 . 228)::"(keyword (:key \"CATEGORY\" :value #1=\"\" :begin 228 :end 241 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 228)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (30 . 213)::"(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (30 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (30 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (30 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (30 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (30 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0))) :org-element--cache-sync-key (30 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 241 1 (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 ...)) 0] up to nil-228, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 228-228
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0)))))"
 2: "(keyword (:key \"CATEGORY\" :value #1=\"\" :begin 228 :end 241 :post-blank 0 :post-affiliated 228 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 338 :end 339 :robust-begin 3 :robust-end 336 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 294 :contents-begin 1 :contents-end 292 :robust-begin 1 :robust-end 290 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 337 :end 338 :robust-begin 3 :robust-end 335 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (29 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (29 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [228..240]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"\" :begin 228 :end 241 :post-blank 0 :post-affiliated 228 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"en\" :begin 213 :end 228 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 227 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (29 . 213)::"(keyword (:key \"LANGUAGE\" :value \"e\" :begin 213 :end 227 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0))) :org-element--cache-sync-key (29 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (29 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0))) :org-element--cache-sync-key (29 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (29 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0))) :org-element--cache-sync-key (29 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (29 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0))) :org-element--cache-sync-key (29 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (29 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0))) :org-element--cache-sync-key (29 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (29 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0))) :org-element--cache-sync-key (29 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 227 1 (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 ...)) 0] up to nil-213, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 213-213
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0)))))"
 2: "(keyword (:key \"LANGUAGE\" :value \"e\" :begin 213 :end 227 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 337 :end 338 :robust-begin 3 :robust-end 335 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 293 :contents-begin 1 :contents-end 291 :robust-begin 1 :robust-end 289 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 336 :end 337 :robust-begin 3 :robust-end 334 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (28 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (28 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [213..226]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"e\" :begin 213 :end 227 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 226 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (28 . 213)::"(keyword (:key \"LANGUAGE\" :value #1=\"\" :begin 213 :end 226 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0))) :org-element--cache-sync-key (28 . 213)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (28 . 202)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0))) :org-element--cache-sync-key (28 . 202)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (28 . 165)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0))) :org-element--cache-sync-key (28 . 165)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (28 . 134)::"(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0))) :org-element--cache-sync-key (28 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (28 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0))) :org-element--cache-sync-key (28 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (28 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0))) :org-element--cache-sync-key (28 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 226 1 (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 ...)) 0] up to nil-213, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 213-213
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0)))))"
 2: "(keyword (:key \"LANGUAGE\" :value #1=\"\" :begin 213 :end 226 :post-blank 0 :post-affiliated 213 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 336 :end 337 :robust-begin 3 :robust-end 334 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 292 :contents-begin 1 :contents-end 290 :robust-begin 1 :robust-end 288 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 335 :end 336 :robust-begin 3 :robust-end 333 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (27 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (27 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [213..225]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"\" :begin 213 :end 226 :post-blank 0 :post-affiliated 213 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 202 :end 213 :post-blank 0 :post-affiliated 202 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 165 :end 202 :post-blank 0 :post-affiliated 165 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"<2023-12-26 Tue 20:31>\" :begin 134 :end 165 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 3. The remaining sync requests: "([93 93 143 22 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 93!
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (27 . 143)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 143 :end 180 :post-blank 0 :post-affiliated 143 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0))) :org-element--cache-sync-key (27 . 143)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (27 . 134)::"(keyword (:key \"DATE\" :value #1=\"\" :begin 134 :end 143 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0))) :org-element--cache-sync-key (27 . 134)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (27 . 114)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0))) :org-element--cache-sync-key (27 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (27 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0))) :org-element--cache-sync-key (27 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 143 22 (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 ...)) 0] up to nil-134, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 134-134
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0)))))"
 2: "(keyword (:key \"DATE\" :value #1=\"\" :begin 134 :end 143 :post-blank 0 :post-affiliated 134 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 335 :end 336 :robust-begin 3 :robust-end 333 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 291 :contents-begin 1 :contents-end 289 :robust-begin 1 :robust-end 287 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 313 :end 314 :robust-begin 3 :robust-end 311 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (26 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [134..142]𝝙22
  org-element-cache diagnostics(test.org): org-time-stamp is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-time-stamp is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 143 :end 180 :post-blank 0 :post-affiliated 143 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"\" :begin 134 :end 143 :post-blank 0 :post-affiliated 134 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 114 :end 134 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:31:01 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 64 29 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (26 . 1)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (26 . 0))) :org-element--cache-sync-key (26 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 64 29 (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (25 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 313 :end 314 :robust-begin 3 :robust-end 311 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 284 :end 285 :robust-begin 3 :robust-end 282 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (25 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 240 :contents-begin 1 :contents-end 238 :robust-begin 1 :robust-end 236 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (25 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 93 -29 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (25 . 93)::"(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 240 :contents-begin 1 :contents-end 238 :robust-begin 1 :robust-end 236 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (25 . 0))) :org-element--cache-sync-key (25 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (25 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 240 :contents-begin 1 :contents-end 238 :robust-begin 1 :robust-end 236 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (25 . 0))) :org-element--cache-sync-key (25 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 240 :contents-begin 1 :contents-end 238 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 240 :contents-begin 1 :contents-end 238 :robust-begin 1 :robust-end 236 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (24 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 284 :end 285 :robust-begin 3 :robust-end 282 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 240 :contents-begin 1 :contents-end 238 :robust-begin 1 :robust-end 236 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 313 :end 314 :robust-begin 3 :robust-end 311 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (24 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (24 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title.\" :begin 93 :end 114 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 314 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (24 . 93)::"(keyword (:key \"TITLE\" :value \"Test title\" :begin 93 :end 113 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (24 . 0))) :org-element--cache-sync-key (24 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (24 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (24 . 0))) :org-element--cache-sync-key (24 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 314 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (23 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 313 :end 314 :robust-begin 3 :robust-end 311 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 313 :end 314 :robust-begin 3 :robust-end 311 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 269 :contents-begin 1 :contents-end 267 :robust-begin 1 :robust-end 265 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 312 :end 313 :robust-begin 3 :robust-end 310 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (23 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 268 :contents-begin 1 :contents-end 266 :robust-begin 1 :robust-end 264 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (23 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..112]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test title\" :begin 93 :end 113 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 313 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (23 . 93)::"(keyword (:key \"TITLE\" :value \"Test titl\" :begin 93 :end 112 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 268 :contents-begin 1 :contents-end 266 :robust-begin 1 :robust-end 264 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (23 . 0))) :org-element--cache-sync-key (23 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (23 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 268 :contents-begin 1 :contents-end 266 :robust-begin 1 :robust-end 264 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (23 . 0))) :org-element--cache-sync-key (23 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 313 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 268 :contents-begin 1 :contents-end 266 :robust-begin 1 :robust-end 264 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (22 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 312 :end 313 :robust-begin 3 :robust-end 310 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 312 :end 313 :robust-begin 3 :robust-end 310 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 268 :contents-begin 1 :contents-end 266 :robust-begin 1 :robust-end 264 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 311 :end 312 :robust-begin 3 :robust-end 309 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (22 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 267 :contents-begin 1 :contents-end 265 :robust-begin 1 :robust-end 263 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (22 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..111]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test titl\" :begin 93 :end 112 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 312 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (22 . 93)::"(keyword (:key \"TITLE\" :value \"Test tit\" :begin 93 :end 111 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 267 :contents-begin 1 :contents-end 265 :robust-begin 1 :robust-end 263 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (22 . 0))) :org-element--cache-sync-key (22 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (22 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 267 :contents-begin 1 :contents-end 265 :robust-begin 1 :robust-end 263 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (22 . 0))) :org-element--cache-sync-key (22 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 312 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 267 :contents-begin 1 :contents-end 265 :robust-begin 1 :robust-end 263 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (21 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 311 :end 312 :robust-begin 3 :robust-end 309 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 311 :end 312 :robust-begin 3 :robust-end 309 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 267 :contents-begin 1 :contents-end 265 :robust-begin 1 :robust-end 263 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 310 :end 311 :robust-begin 3 :robust-end 308 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (21 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (21 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..110]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test tit\" :begin 93 :end 111 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 311 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (21 . 93)::"(keyword (:key \"TITLE\" :value \"Test ti\" :begin 93 :end 110 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (21 . 0))) :org-element--cache-sync-key (21 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (21 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (21 . 0))) :org-element--cache-sync-key (21 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 311 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (20 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 310 :end 311 :robust-begin 3 :robust-end 308 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 310 :end 311 :robust-begin 3 :robust-end 308 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 309 :end 310 :robust-begin 3 :robust-end 307 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (20 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (20 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..109]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test ti\" :begin 93 :end 110 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 310 -1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (20 . 93)::"(keyword (:key \"TITLE\" :value \"Test tie\" :begin 93 :end 111 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (20 . 0))) :org-element--cache-sync-key (20 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (20 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (20 . 0))) :org-element--cache-sync-key (20 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 310 -1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (19 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 309 :end 310 :robust-begin 3 :robust-end 307 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 309 :end 310 :robust-begin 3 :robust-end 307 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 310 :end 311 :robust-begin 3 :robust-end 308 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (19 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (19 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..110]𝝙-1
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test tie\" :begin 93 :end 111 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 311 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (19 . 93)::"(keyword (:key \"TITLE\" :value \"Test ti\" :begin 93 :end 110 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (19 . 0))) :org-element--cache-sync-key (19 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (19 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (19 . 0))) :org-element--cache-sync-key (19 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 311 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (18 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 310 :end 311 :robust-begin 3 :robust-end 308 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 310 :end 311 :robust-begin 3 :robust-end 308 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 266 :contents-begin 1 :contents-end 264 :robust-begin 1 :robust-end 262 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 309 :end 310 :robust-begin 3 :robust-end 307 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (18 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (18 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..109]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test ti\" :begin 93 :end 110 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 310 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (18 . 93)::"(keyword (:key \"TITLE\" :value \"Test t\" :begin 93 :end 109 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (18 . 0))) :org-element--cache-sync-key (18 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (18 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (18 . 0))) :org-element--cache-sync-key (18 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 310 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (17 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 309 :end 310 :robust-begin 3 :robust-end 307 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 309 :end 310 :robust-begin 3 :robust-end 307 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 265 :contents-begin 1 :contents-end 263 :robust-begin 1 :robust-end 261 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 308 :end 309 :robust-begin 3 :robust-end 306 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (17 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 264 :contents-begin 1 :contents-end 262 :robust-begin 1 :robust-end 260 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (17 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..108]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test t\" :begin 93 :end 109 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 309 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (17 . 93)::"(keyword (:key \"TITLE\" :value \"Test\" :begin 93 :end 108 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 264 :contents-begin 1 :contents-end 262 :robust-begin 1 :robust-end 260 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (17 . 0))) :org-element--cache-sync-key (17 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (17 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 264 :contents-begin 1 :contents-end 262 :robust-begin 1 :robust-end 260 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (17 . 0))) :org-element--cache-sync-key (17 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 309 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 264 :contents-begin 1 :contents-end 262 :robust-begin 1 :robust-end 260 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (16 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 308 :end 309 :robust-begin 3 :robust-end 306 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 308 :end 309 :robust-begin 3 :robust-end 306 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 264 :contents-begin 1 :contents-end 262 :robust-begin 1 :robust-end 260 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 307 :end 308 :robust-begin 3 :robust-end 305 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (16 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 263 :contents-begin 1 :contents-end 261 :robust-begin 1 :robust-end 259 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (16 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..107]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test\" :begin 93 :end 108 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 308 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (16 . 93)::"(keyword (:key \"TITLE\" :value \"Test\" :begin 93 :end 107 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 263 :contents-begin 1 :contents-end 261 :robust-begin 1 :robust-end 259 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (16 . 0))) :org-element--cache-sync-key (16 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (16 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 263 :contents-begin 1 :contents-end 261 :robust-begin 1 :robust-end 259 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (16 . 0))) :org-element--cache-sync-key (16 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 308 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 263 :contents-begin 1 :contents-end 261 :robust-begin 1 :robust-end 259 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (15 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 307 :end 308 :robust-begin 3 :robust-end 305 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 307 :end 308 :robust-begin 3 :robust-end 305 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 263 :contents-begin 1 :contents-end 261 :robust-begin 1 :robust-end 259 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 306 :end 307 :robust-begin 3 :robust-end 304 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (15 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 262 :contents-begin 1 :contents-end 260 :robust-begin 1 :robust-end 258 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (15 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..106]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Test\" :begin 93 :end 107 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 307 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (15 . 93)::"(keyword (:key \"TITLE\" :value \"Tes\" :begin 93 :end 106 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 262 :contents-begin 1 :contents-end 260 :robust-begin 1 :robust-end 258 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (15 . 0))) :org-element--cache-sync-key (15 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (15 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 262 :contents-begin 1 :contents-end 260 :robust-begin 1 :robust-end 258 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (15 . 0))) :org-element--cache-sync-key (15 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 307 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 262 :contents-begin 1 :contents-end 260 :robust-begin 1 :robust-end 258 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (14 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 306 :end 307 :robust-begin 3 :robust-end 304 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 306 :end 307 :robust-begin 3 :robust-end 304 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 262 :contents-begin 1 :contents-end 260 :robust-begin 1 :robust-end 258 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 305 :end 306 :robust-begin 3 :robust-end 303 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (14 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 261 :contents-begin 1 :contents-end 259 :robust-begin 1 :robust-end 257 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (14 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..105]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Tes\" :begin 93 :end 106 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 306 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (14 . 93)::"(keyword (:key \"TITLE\" :value \"Te\" :begin 93 :end 105 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 261 :contents-begin 1 :contents-end 259 :robust-begin 1 :robust-end 257 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (14 . 0))) :org-element--cache-sync-key (14 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (14 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 261 :contents-begin 1 :contents-end 259 :robust-begin 1 :robust-end 257 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (14 . 0))) :org-element--cache-sync-key (14 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 306 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 261 :contents-begin 1 :contents-end 259 :robust-begin 1 :robust-end 257 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (13 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 305 :end 306 :robust-begin 3 :robust-end 303 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 305 :end 306 :robust-begin 3 :robust-end 303 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 261 :contents-begin 1 :contents-end 259 :robust-begin 1 :robust-end 257 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 304 :end 305 :robust-begin 3 :robust-end 302 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (13 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 260 :contents-begin 1 :contents-end 258 :robust-begin 1 :robust-end 256 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (13 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..104]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"Te\" :begin 93 :end 105 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 305 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (13 . 93)::"(keyword (:key \"TITLE\" :value \"T\" :begin 93 :end 104 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 260 :contents-begin 1 :contents-end 258 :robust-begin 1 :robust-end 256 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (13 . 0))) :org-element--cache-sync-key (13 . 93)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (13 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 260 :contents-begin 1 :contents-end 258 :robust-begin 1 :robust-end 256 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (13 . 0))) :org-element--cache-sync-key (13 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 305 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 260 :contents-begin 1 :contents-end 258 :robust-begin 1 :robust-end 256 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 304 :end 305 :robust-begin 3 :robust-end 302 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 304 :end 305 :robust-begin 3 :robust-end 302 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 260 :contents-begin 1 :contents-end 258 :robust-begin 1 :robust-end 256 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 303 :end 304 :robust-begin 3 :robust-end 301 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (12 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..103]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"T\" :begin 93 :end 104 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 304 1 nil 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (12 . 289)::"(headline (:raw-value #1=\"Test file\" :begin 289 :end 303 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 289 :title #1# :parent (headline (:raw-value #2=\"Body\" :begin 275 :end 303 :pre-blank 2 :contents-begin 289 :contents-end 302 :robust-begin 291 :robust-end 300 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 275 :title #2# :parent (org-data ...) :cached nil :org-element--cache-sync-key (12 . 275) :granularity element)) :cached t :org-element--cache-sync-key (12 . 289) :granularity element))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 3
  org-element-cache diagnostics(test.org): removing (12 . 275)::"(headline (:raw-value #1=\"Body\" :begin 275 :end 303 :pre-blank 2 :contents-begin 289 :contents-end 302 :robust-begin 291 :robust-end 300 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 275 :title #1# :parent (org-data (:begin 1 :contents-begin 1 :contents-end 303 :end 304 :robust-begin 3 :robust-end 301 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :cached t :org-element--cache-sync-key (12 . 275) :granularity element))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 4
  org-element-cache diagnostics(test.org): removing (12 . 258)::"(headline (:raw-value #1=\"Abstract\" :begin 258 :end 275 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 258 :title #1# :mode nil :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 303 :end 304 :robust-begin 3 :robust-end 301 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (12 . 258)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 5
  org-element-cache diagnostics(test.org): removing (12 . 215)::"(keyword (:key \"CREATOR\" :value \"Emacs-29.1.90/org-mode-9.6.13\" :begin 215 :end 258 :post-blank 2 :post-affiliated 215 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0))) :org-element--cache-sync-key (12 . 215)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 6
  org-element-cache diagnostics(test.org): removing (12 . 206)::"(keyword (:key \"TAGS\" :value #1=\"\" :begin 206 :end 215 :post-blank 0 :post-affiliated 206 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0))) :org-element--cache-sync-key (12 . 206)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (12 . 193)::"(keyword (:key \"CATEGORY\" :value #1=\"\" :begin 193 :end 206 :post-blank 0 :post-affiliated 193 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0))) :org-element--cache-sync-key (12 . 193)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (12 . 180)::"(keyword (:key \"LANGUAGE\" :value #1=\"\" :begin 180 :end 193 :post-blank 0 :post-affiliated 180 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0))) :org-element--cache-sync-key (12 . 180)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (12 . 169)::"(keyword (:key \"REFILED\" :value #1=\"\" :begin 169 :end 180 :post-blank 0 :post-affiliated 169 :mode nil :granularity element :org-element--cache-sync-key (12 . 169) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 10
  org-element-cache diagnostics(test.org): removing (12 . 132)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 132 :end 169 :post-blank 0 :post-affiliated 132 :mode nil :granularity element :org-element--cache-sync-key (12 . 132) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 11
  org-element-cache diagnostics(test.org): removing (12 . 123)::"(keyword (:key \"DATE\" :value #1=\"\" :begin 123 :end 132 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (12 . 123) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (12 . 103)::"(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 103 :end 123 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (12 . 103) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (12 . 93)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (12 . 93) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (12 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (12 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (12 . 1) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 304 1 nil 0] up to nil-93, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 93-93
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (11 . 1) :cached t :parent (section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(org-data (:begin 1 :contents-begin 1 :contents-end 303 :end 304 :robust-begin 3 :robust-end 301 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 303 :end 304 :robust-begin 3 :robust-end 301 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 259 :contents-begin 1 :contents-end 257 :robust-begin 1 :robust-end 255 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 302 :end 303 :robust-begin 3 :robust-end 300 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (11 . 1) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [93..102]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 15. The remaining sync requests: "([123 123 122 9 ... 2])"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): New parent at 132: (11 . 107)::"(keyword (:key \"DATE\" :value #1=\"\" :begin 123 :end 132 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 107) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 107) key: "(keyword (:key \"DATE\" :value \"\" :begin 123 :end 132 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 107)))"
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 122 9 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 1] up to nil-nil, next: nil
  org-element-cache diagnostics(test.org): Syncing down to nil-nil
  org-element-cache diagnostics(test.org): Interrupt: position 132 after threshold 102
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 122 9 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 1] up to nil-102, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 102-102
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Lockywolf\" :begin 103 :end 123 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 132 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 122 9 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 9: [123 123 121 9 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 122 1 #1=... 1] [123 123 121 8 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 122 1 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 1]"
"[123 123 121 8 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 122: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Lockywol\" :begin 103 :end 122 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 122 1 (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Lockywol\" :begin 103 :end 122 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 302 :end 303 :robust-begin 3 :robust-end 300 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 258 :contents-begin 1 :contents-end 256 :robust-begin 1 :robust-end 254 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 301 :end 302 :robust-begin 3 :robust-end 299 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 131 after threshold 121
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 121 8 (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 ...)) 1] up to 103-121, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-121
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..121]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Lockywol\" :begin 103 :end 122 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 131 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 121 8 (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 8: [123 123 120 8 (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 121 1 #1=... 1] [123 123 120 7 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 121 1 (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 ...)) 1]"
"[123 123 120 7 (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 121: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Lockywo\" :begin 103 :end 121 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 121 1 (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Lockywo\" :begin 103 :end 121 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 301 :end 302 :robust-begin 3 :robust-end 299 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 257 :contents-begin 1 :contents-end 255 :robust-begin 1 :robust-end 253 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 300 :end 301 :robust-begin 3 :robust-end 298 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 130 after threshold 120
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 120 7 (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 ...)) 1] up to 103-120, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-120
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..120]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Lockywo\" :begin 103 :end 121 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 130 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 120 7 (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 7: [123 123 119 7 (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 120 1 #1=... 1] [123 123 119 6 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 120 1 (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 ...)) 1]"
"[123 123 119 6 (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 120: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Lockyw\" :begin 103 :end 120 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 120 1 (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Lockyw\" :begin 103 :end 120 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 300 :end 301 :robust-begin 3 :robust-end 298 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 256 :contents-begin 1 :contents-end 254 :robust-begin 1 :robust-end 252 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 299 :end 300 :robust-begin 3 :robust-end 297 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 129 after threshold 119
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 119 6 (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 ...)) 1] up to 103-119, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-119
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..119]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Lockyw\" :begin 103 :end 120 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 129 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 119 6 (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 6: [123 123 118 6 (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 119 1 #1=... 1] [123 123 118 5 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 119 1 (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 ...)) 1]"
"[123 123 118 5 (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 119: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Locky\" :begin 103 :end 119 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 119 1 (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Locky\" :begin 103 :end 119 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 299 :end 300 :robust-begin 3 :robust-end 297 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 255 :contents-begin 1 :contents-end 253 :robust-begin 1 :robust-end 251 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 298 :end 299 :robust-begin 3 :robust-end 296 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 128 after threshold 118
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 118 5 (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 ...)) 1] up to 103-118, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-118
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..118]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Locky\" :begin 103 :end 119 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 128 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 118 5 (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 5: [123 123 117 5 (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 118 1 #1=... 1] [123 123 117 4 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 118 1 (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 ...)) 1]"
"[123 123 117 4 (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 118: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Lock\" :begin 103 :end 118 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 118 1 (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Lock\" :begin 103 :end 118 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 298 :end 299 :robust-begin 3 :robust-end 296 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 254 :contents-begin 1 :contents-end 252 :robust-begin 1 :robust-end 250 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 297 :end 298 :robust-begin 3 :robust-end 295 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 127 after threshold 117
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 117 4 (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 ...)) 1] up to 103-117, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-117
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..117]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Lock\" :begin 103 :end 118 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 127 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 117 4 (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 4: [123 123 116 4 (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 117 1 #1=... 1] [123 123 116 3 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 117 1 (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 ...)) 1]"
"[123 123 116 3 (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 117: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Loc\" :begin 103 :end 117 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 117 1 (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Loc\" :begin 103 :end 117 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 297 :end 298 :robust-begin 3 :robust-end 295 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 253 :contents-begin 1 :contents-end 251 :robust-begin 1 :robust-end 249 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 296 :end 297 :robust-begin 3 :robust-end 294 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 126 after threshold 116
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 116 3 (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 ...)) 1] up to 103-116, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-116
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..116]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Loc\" :begin 103 :end 117 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 126 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 116 3 (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 3: [123 123 115 3 (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 116 1 #1=... 1] [123 123 115 2 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 116 1 (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 ...)) 1]"
"[123 123 115 2 (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 116: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"Lo\" :begin 103 :end 116 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 116 1 (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"Lo\" :begin 103 :end 116 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 296 :end 297 :robust-begin 3 :robust-end 294 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 252 :contents-begin 1 :contents-end 250 :robust-begin 1 :robust-end 248 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 295 :end 296 :robust-begin 3 :robust-end 293 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 125 after threshold 115
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 115 2 (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 ...)) 1] up to 103-115, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-115
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..115]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"Lo\" :begin 103 :end 116 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 125 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 115 2 (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 ...)) 1] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 2: [123 123 114 2 (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([123 123 115 1 #1=... 1] [123 123 114 1 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[123 123 115 1 (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 ...)) 1]"
"[123 123 114 1 (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 115: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 92)::"(keyword (:key \"AUTHOR\" :value \"L\" :begin 103 :end 115 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 62)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [62 93 115 1 (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 ...)) 0] up to nil-103, next: 123
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value \"L\" :begin 103 :end 115 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92) :cached t :parent (section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 295 :end 296 :robust-begin 3 :robust-end 293 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 251 :contents-begin 1 :contents-end 249 :robust-begin 1 :robust-end 247 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 294 :end 295 :robust-begin 3 :robust-end 292 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (11 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 124 after threshold 114
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [123 123 114 1 (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 ...)) 1] up to 103-114, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-114
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..114]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (11 . 92) key: "(keyword (:key \"AUTHOR\" :value \"L\" :begin 103 :end 115 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 92)))"
  org-element-cache diagnostics(test.org): Added new element with (11 . 62) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 62)))"
  org-element-cache diagnostics(test.org): Interrupt: position 124 after threshold 103
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 114: (11 . 123)::"(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (11 . 123) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (11 . 114)::"(keyword (:key \"DATE\" :value #1=\"\" :begin 114 :end 123 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :org-element--cache-sync-key (11 . 114) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (11 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (11 . 103) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (11 . 93)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (11 . 93) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (11 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 114 1 (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 ...)) 0] up to nil-103, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 103-103
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (10 . 77) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
 2: "(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (10 . 103) :cached t :parent (section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 294 :end 295 :robust-begin 3 :robust-end 292 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 250 :contents-begin 1 :contents-end 248 :robust-begin 1 :robust-end 246 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 294 :robust-begin 3 :robust-end 291 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (10 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (10 . 77) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [103..113]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 15. The remaining sync requests: "([103 103 64 0 ... 2])"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): New parent at 103: (10 . 77)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (10 . 77) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Added new element with (10 . 77) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (10 . 77)))"
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-294, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 294-294
  org-element-cache diagnostics(test.org): Added new element with (10 . 51) key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:51 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (10 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 103 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 0: [103 103 93 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 13. The remaining sync requests: "([103 103 64 29 #1=... 1] [103 103 93 -29 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[103 103 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"
"[103 103 93 -29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 64: (10 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (10 . 103) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (10 . 51)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (10 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [51 1 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 0] up to nil-47, next: 103
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (10 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 294 :robust-begin 3 :robust-end 291 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 264 :end 265 :robust-begin 3 :robust-end 262 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (10 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (10 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 62
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 1] up to 47-62, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-62
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (10 . 51) key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (10 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 93: (10 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (10 . 103) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (10 . 93)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (10 . 93) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (10 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:48 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (10 . 1) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (10 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:48 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 264 :end 265 :robust-begin 3 :robust-end 262 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 294 :robust-begin 3 :robust-end 291 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (9 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:48 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 295. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 294 :robust-begin 3 :robust-end 291 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 294 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 294 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [294..295]𝝙-1
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 296. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 295 :robust-begin 3 :robust-end 291 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 295 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 2 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 295 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 2 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [295..296]𝝙-1
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 297. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 296 :robust-begin 3 :robust-end 291 :post-blank 3 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 296 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 3 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 296 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 3 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [296..297]𝝙-1
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-delete-backward-char is about to modify text: warning nil
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 15. The remaining sync requests: "([103 103 64 0 ... 2])"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): New parent at 103: (9 . 77)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (9 . 77) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Added new element with (9 . 77) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (9 . 77)))"
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-295, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 295-295
  org-element-cache diagnostics(test.org): Added new element with (9 . 51) key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:48 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 103 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 0: [103 103 93 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 13. The remaining sync requests: "([103 103 64 29 #1=... 1] [103 103 93 -29 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[103 103 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"
"[103 103 93 -29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 64: (9 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (9 . 103) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (9 . 51)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [51 1 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 0] up to nil-47, next: 103
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 297 :robust-begin 3 :robust-end 291 :post-blank 4 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 264 :end 268 :robust-begin 3 :robust-end 262 :post-blank 4 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (9 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 62
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 1] up to 47-62, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-62
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (9 . 51) key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 93: (9 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (9 . 103) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (9 . 93)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (9 . 93) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (9 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:46 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (9 . 1) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (9 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:46 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 264 :end 268 :robust-begin 3 :robust-end 262 :post-blank 4 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 297 :robust-begin 3 :robust-end 291 :post-blank 4 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (8 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:46 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 296. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 297 :robust-begin 3 :robust-end 291 :post-blank 4 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 297 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 4 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 297 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 4 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [296..296]𝝙1
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 295. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 296 :robust-begin 3 :robust-end 291 :post-blank 3 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 296 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 3 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 296 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 3 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [295..295]𝝙1
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 294. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 295 :robust-begin 3 :robust-end 291 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 295 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 2 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 295 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 2 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [294..294]𝝙1
  org-element-cache diagnostics(test.org): org-return-and-maybe-indent is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-return-and-maybe-indent is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 293. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 294 :robust-begin 3 :robust-end 291 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 294 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 294 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [293..293]𝝙1
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 293 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1# :mode section :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 14. The remaining sync requests: "([103 103 64 0 ... 2])"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): New parent at 103: (8 . 77)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (8 . 77) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Added new element with (8 . 77) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (8 . 77)))"
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-293, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 293-293
  org-element-cache diagnostics(test.org): Added new element with (8 . 51) key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:46 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 103 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 0: [103 103 93 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([103 103 64 29 #1=... 1] [103 103 93 -29 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[103 103 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"
"[103 103 93 -29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 64: (8 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (8 . 103) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (8 . 51)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [51 1 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 0] up to nil-47, next: 103
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 293 :robust-begin 3 :robust-end 291 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 264 :end 264 :robust-begin 3 :robust-end 262 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (8 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 62
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 1] up to 47-62, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-62
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (8 . 51) key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 93: (8 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (8 . 103) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (8 . 93)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (8 . 93) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (8 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:39 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (8 . 1) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (8 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:39 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 264 :end 264 :robust-begin 3 :robust-end 262 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 293 :robust-begin 3 :robust-end 291 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (4 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:39 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 14. The remaining sync requests: "([280 280 292 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 280!
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (7 . 280)::"(headline (:raw-value #1=\"Test file\" :begin 280 :end 292 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1# :mode section :granularity element :cached t :parent (headline (:raw-value #2=\"Body\" :begin 266 :end 293 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #2# :parent (org-data ...) :cached t :org-element--cache-sync-key (7 . 266) :granularity element)) :org-element--cache-sync-key (7 . 280)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [280 280 292 1 (headline (:raw-value #1="Test file" :begin 280 :end 292 :pre-blank 0 :contents-begin nil ...)) 0] up to 47-91, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-91
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 292 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1# :mode section :granularity element :cached t :parent (headline (:raw-value #2=\"Body\" :begin 266 :end 293 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #2# :parent (org-data ...) :cached t :org-element--cache-sync-key (6 . 266) :granularity element))))"
 2: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 292 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1# :mode section :granularity element :cached t :parent (headline (:raw-value #2=\"Body\" :begin 266 :end 293 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #2# :parent (org-data ...) :cached t :org-element--cache-sync-key (6 . 266) :granularity element))))"
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 293 :end 293 :robust-begin 3 :robust-end 291 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 293 :pre-blank 2 :contents-begin 280 :contents-end 293 :robust-begin 282 :robust-end 291 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..292]𝝙1
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Added new element with nil key: "(headline (:raw-value #1=\"Test file\" :begin 280 :end 292 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 2 :priority nil :tags nil :todo-keyword nil :todo-type nil :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 280 :title #1# :mode section :granularity element))"
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 291. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 292 :end 292 :robust-begin 3 :robust-end 290 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 292 :pre-blank 2 :contents-begin 280 :contents-end 292 :robust-begin 282 :robust-end 290 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..291]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 290. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 291 :end 291 :robust-begin 3 :robust-end 289 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 291 :pre-blank 2 :contents-begin 280 :contents-end 291 :robust-begin 282 :robust-end 289 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..290]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 289. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 290 :end 290 :robust-begin 3 :robust-end 288 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 290 :pre-blank 2 :contents-begin 280 :contents-end 290 :robust-begin 282 :robust-end 288 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..289]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 288. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 289 :end 289 :robust-begin 3 :robust-end 287 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 289 :pre-blank 2 :contents-begin 280 :contents-end 289 :robust-begin 282 :robust-end 287 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..288]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 287. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 288 :end 288 :robust-begin 3 :robust-end 286 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 288 :pre-blank 2 :contents-begin 280 :contents-end 288 :robust-begin 282 :robust-end 286 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..287]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 286. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 287 :end 287 :robust-begin 3 :robust-end 285 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 287 :pre-blank 2 :contents-begin 280 :contents-end 287 :robust-begin 282 :robust-end 285 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..286]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 285. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 286 :end 286 :robust-begin 3 :robust-end 284 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 286 :pre-blank 2 :contents-begin 280 :contents-end 286 :robust-begin 282 :robust-end 284 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..285]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 284. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 285 :end 285 :robust-begin 3 :robust-end 283 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 285 :pre-blank 2 :contents-begin 280 :contents-end 285 :robust-begin 282 :robust-end 283 :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..284]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 283. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 284 :end 284 :robust-begin 3 :robust-end 282 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 284 :pre-blank 2 :contents-begin 280 :contents-end 284 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 14. The remaining sync requests: "([279 280 282 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 279!
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (6 . 280)::"(paragraph (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :post-blank 0 :post-affiliated 280 :mode planning :granularity element :cached t :parent (section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached nil :parent (headline ...) :org-element--cache-sync-key (6 . 279))) :org-element--cache-sync-key (6 . 280)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 15
  org-element-cache diagnostics(test.org): removing (6 . 279)::"(section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached t :parent (headline (:raw-value #1=\"Body\" :begin 266 :end 283 :pre-blank 2 :contents-begin 280 :contents-end 283 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :parent (org-data ...) :cached t :org-element--cache-sync-key (6 . 266) :granularity element)) :org-element--cache-sync-key (6 . 279)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [279 280 282 1 (section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil ...)) 0] up to 280-283, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 280-283
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..283]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): Interrupt: time limit
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [279 280 282 1 (section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil ...)) 0] up to nil-nil, next: nil
  org-element-cache diagnostics(test.org): Syncing down to nil-nil
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached t :parent (headline (:raw-value #1=\"Body\" :begin 266 :end 283 :pre-blank 2 :contents-begin 280 :contents-end 283 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :parent (org-data ...) :cached t :org-element--cache-sync-key (5 . 266) :granularity element))))"
 2: "(section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached t :parent (headline (:raw-value #1=\"Body\" :begin 266 :end 283 :pre-blank 2 :contents-begin 280 :contents-end 283 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :parent (org-data ...) :cached t :org-element--cache-sync-key (5 . 266) :granularity element))))"
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 283 :end 283 :robust-begin 3 :robust-end 281 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 283 :pre-blank 2 :contents-begin 280 :contents-end 283 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..282]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning 2
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(paragraph (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :post-blank 0 :post-affiliated 280 :mode planning :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(section (:begin 280 :end 282 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 14. The remaining sync requests: "([279 280 281 1 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 279!
  org-element-cache diagnostics(test.org): Decreasing cache size to 14
  org-element-cache diagnostics(test.org): removing (5 . 280)::"(paragraph (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :post-blank 0 :post-affiliated 280 :mode planning :granularity element :cached t :parent (section (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached nil :parent (headline ...) :org-element--cache-sync-key (5 . 279))) :org-element--cache-sync-key (5 . 280)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 15
  org-element-cache diagnostics(test.org): removing (5 . 279)::"(section (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached t :parent (headline (:raw-value #1=\"Body\" :begin 266 :end 282 :pre-blank 2 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :parent (org-data ...) :cached t :org-element--cache-sync-key (5 . 266) :granularity element)) :org-element--cache-sync-key (5 . 279)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [279 280 281 1 (section (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :robust-begin nil ...)) 0] up to nil-280, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 280-280
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(section (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached t :parent (headline (:raw-value #1=\"Body\" :begin 266 :end 282 :pre-blank 2 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :parent (org-data ...) :cached t :org-element--cache-sync-key (4 . 266) :granularity element))))"
 2: "(section (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element :cached t :parent (headline (:raw-value #1=\"Body\" :begin 266 :end 282 :pre-blank 2 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 ...) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :parent (org-data ...) :cached t :org-element--cache-sync-key (4 . 266) :granularity element))))"
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 282 :end 282 :robust-begin 3 :robust-end 280 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 282 :pre-blank 2 :contents-begin 280 :contents-end 282 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..281]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning t
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning t
  org-element-cache diagnostics(test.org): Added new element with nil key: "(paragraph (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :post-blank 0 :post-affiliated 280 :mode planning :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(section (:begin 280 :end 281 :contents-begin 280 :contents-end 281 :robust-begin nil :robust-end nil :post-blank 0 :post-affiliated 280 :mode section :granularity element))"
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 280. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 281 :end 281 :robust-begin 3 :robust-end 279 :post-blank 0 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 281 :pre-blank 2 :contents-begin 280 :contents-end 281 :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 0 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [280..280]𝝙1
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning t
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-self-insert-command is about to modify text: warning nil
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 14. The remaining sync requests: "([103 103 64 0 ... 2])"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): New parent at 103: (4 . 77)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (4 . 77) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Added new element with (4 . 77) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (4 . 77)))"
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-280, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 280-280
  org-element-cache diagnostics(test.org): Added new element with (4 . 51) key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:39 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 103 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 64 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Updating next request offset to 0: [103 103 93 0 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([103 103 64 29 #1=... 1] [103 103 93 -29 #1# 1])"
  org-element-cache diagnostics(test.org): Phase 1: Unorderered requests. Merging: "[103 103 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"
"[103 103 93 -29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1]"

  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 64: (4 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (4 . 103) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (4 . 51)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [51 1 64 29 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 0] up to nil-47, next: 103
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 278 :end 280 :robust-begin 3 :robust-end 276 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 249 :end 251 :robust-begin 3 :robust-end 247 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (4 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 62
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [103 103 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 1] up to 47-62, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-62
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with (4 . 51) key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :org-element--cache-sync-key (4 . 51)))"
  org-element-cache diagnostics(test.org): Interrupt: position 74 after threshold 47
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 93: (4 . 103)::"(keyword (:key \"AUTHOR\" :value #1=\"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (4 . 103) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 12
  org-element-cache diagnostics(test.org): removing (4 . 93)::"(keyword (:key \"TITLE\" :value #1=\"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (4 . 93) :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (4 . 0)))))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 13
  org-element-cache diagnostics(test.org): removing (4 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0))) :org-element--cache-sync-key (4 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0))) :org-element--cache-sync-key (3 . 1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 249 :end 251 :robust-begin 3 :robust-end 247 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 220 :contents-begin 1 :contents-end 218 :robust-begin 1 :robust-end 216 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 278 :end 280 :robust-begin 3 :robust-end 276 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1))) :org-element--cache-sync-key (3 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0))) :org-element--cache-sync-key (3 . 1)))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): save-buffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 279. Terminating.
  org-element-cache diagnostics(test.org): Found non-robust change invalidating org-data. Re-parsing: "(org-data (:begin 1 :contents-begin 1 :contents-end 278 :end 280 :robust-begin 3 :robust-end 276 :post-blank 2 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"\" :parent nil :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Found non-robust headline that can be updated individually: "(headline (:raw-value #1=\"Body\" :begin 266 :end 280 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 2 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1#))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [279..279]𝝙1
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): org-return is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(headline (:raw-value #1=\"Body\" :begin 266 :end 279 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 266 :title #1# :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(headline (:raw-value #1=\"Abstract\" :begin 249 :end 266 :pre-blank 0 :contents-begin nil :contents-end nil :robust-begin nil :robust-end nil :level 1 :priority nil :tags nil :todo-keyword #(\"TODO\" 0 4 (face (org-todo org-level-1) fontified t)) :todo-type todo :post-blank 1 :footnote-section-p nil :archivedp nil :commentedp nil :post-affiliated 249 :title #1# :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 12. The remaining sync requests: "([172 146 135 25 ... 2])"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [172 146 135 25 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 2] up to nil-279, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 279-279
  org-element-cache diagnostics(test.org): Interrupt: threshold
  org-element-cache diagnostics(test.org): Reached threshold 171: "(keyword (:key \"CATEGORY\" :value \"\" :begin 184 :end 197 :post-blank 0 :post-affiliated 184 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0))) :org-element--cache-sync-key (3 . 159)))"
  org-element-cache diagnostics(test.org): Phase 2
  org-element-cache diagnostics(test.org): New parent at 171: (3 . 141)::"(keyword (:key \"REFILED\" :value \"\" :begin 160 :end 171 :post-blank 0 :post-affiliated 160 :mode nil :granularity element :org-element--cache-sync-key (3 . 141) :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0)))))"
  org-element-cache diagnostics(test.org): Added new element with (3 . 141) key: "(keyword (:key \"REFILED\" :value \"\" :begin 160 :end 171 :post-blank 0 :post-affiliated 160 :mode nil :granularity element :org-element--cache-sync-key (3 . 141)))"
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [146 146 135 25 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-171, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 171-171
  org-element-cache diagnostics(test.org): Interrupt: position 171 after threshold 123
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [146 146 135 25 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 1] up to nil-123, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 123-123
  org-element-cache diagnostics(test.org): Added new element with (3 . 136) key: "(keyword (:key \"CREATED\" :value \"<2023-12-26 Tue 20:30:37>\" :begin 123 :end 160 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :org-element--cache-sync-key (3 . 136)))"
  org-element-cache diagnostics(test.org): Added new element with (3 . 127) key: "(keyword (:key \"DATE\" :value \"\" :begin 114 :end 123 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :org-element--cache-sync-key (3 . 127)))"
  org-element-cache diagnostics(test.org): Added new element with (3 . 109) key: "(keyword (:key \"AUTHOR\" :value \"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :org-element--cache-sync-key (3 . 109)))"
  org-element-cache diagnostics(test.org): Added new element with (3 . 73) key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :org-element--cache-sync-key (3 . 73)))"
  org-element-cache diagnostics(test.org): Interrupt: position 171 after threshold 123
  org-element-cache diagnostics(test.org): Phase 1
  org-element-cache diagnostics(test.org): found element after 135: (3 . 146)::"(keyword (:key \"LANGUAGE\" :value \"\" :begin 146 :end 159 :post-blank 0 :post-affiliated 146 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0))) :org-element--cache-sync-key (3 . 146)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 7
  org-element-cache diagnostics(test.org): removing (3 . 135)::"(keyword (:key \"REFILED\" :value \"\" :begin 135 :end 146 :post-blank 0 :post-affiliated 135 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (3 . 0))) :org-element--cache-sync-key (3 . 135)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 8
  org-element-cache diagnostics(test.org): removing (3 . 123)::"(keyword (:key \"CREATED\" :value \"\" :begin 123 :end 135 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...))) :org-element--cache-sync-key (3 . 123)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 9
  org-element-cache diagnostics(test.org): removing (3 . 114)::"(keyword (:key \"DATE\" :value \"\" :begin 114 :end 123 :post-blank 0 :post-affiliated 114 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...))) :org-element--cache-sync-key (3 . 114)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 10
  org-element-cache diagnostics(test.org): removing (3 . 103)::"(keyword (:key \"AUTHOR\" :value \"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...))) :org-element--cache-sync-key (3 . 103)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 11
  org-element-cache diagnostics(test.org): removing (3 . 93)::"(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...))) :org-element--cache-sync-key (3 . 93)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [93 93 135 25 (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 ...)) 0] up to nil-123, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 123-123
  org-element-cache diagnostics(test.org): Extending to all elements between:
 1: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...)))))"
 2: "(keyword (:key \"CREATED\" :value \"\" :begin 123 :end 135 :post-blank 0 :post-affiliated 123 :mode nil :granularity element :cached t :parent (section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 278 :end 279 :robust-begin 3 :robust-end 276 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t :org-element--cache-sync-key (2 . -1)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 249 :contents-begin 1 :contents-end 247 :robust-begin 1 :robust-end 245 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 253 :end 254 :robust-begin 3 :robust-end 251 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t :org-element--cache-sync-key (2 . -1)))))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element :cached t :parent (section (:begin 1 :end 224 :contents-begin 1 :contents-end 222 :robust-begin 1 :robust-end 220 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [123..134]𝝙25
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATOR\" :value \"Emacs-29.1.90/org-mode-9.6.13\" :begin 181 :end 224 :post-blank 2 :post-affiliated 181 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TAGS\" :value \"\" :begin 172 :end 181 :post-blank 0 :post-affiliated 172 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CATEGORY\" :value \"\" :begin 159 :end 172 :post-blank 0 :post-affiliated 159 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"LANGUAGE\" :value \"\" :begin 146 :end 159 :post-blank 0 :post-affiliated 146 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"REFILED\" :value \"\" :begin 135 :end 146 :post-blank 0 :post-affiliated 135 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"CREATED\" :value \"\" :begin 123 :end 135 :post-blank 0 :post-affiliated 123 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"DATE\" :value \"\" :begin 114 :end 123 :post-blank 0 :post-affiliated 114 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"AUTHOR\" :value \"\" :begin 103 :end 114 :post-blank 0 :post-affiliated 103 :mode nil :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(keyword (:key \"TITLE\" :value \"\" :begin 93 :end 103 :post-blank 0 :post-affiliated 93 :mode property-drawer :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(section (:begin 1 :end 224 :contents-begin 1 :contents-end 222 :robust-begin 1 :robust-end 220 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 1. The remaining sync requests: "([0 1 195 29 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 0!
  org-element-cache diagnostics(test.org): Decreasing cache size to 1
  org-element-cache diagnostics(test.org): removing (2 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached nil :parent (org-data ...) :org-element--cache-sync-key (2 . 0))) :org-element--cache-sync-key (2 . 1)))"
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (2 . 0)::"(section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 253 :end 254 :robust-begin 3 :robust-end 251 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t)) :org-element--cache-sync-key (2 . 0)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [0 1 195 29 (org-data (:begin 1 :contents-begin 1 :contents-end 253 :end 254 :robust-begin 3 ...)) 0] up to nil-181, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 181-181
  org-element-cache diagnostics(test.org): Extending to non-robust element "(section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 253 :end 254 :robust-begin 3 :robust-end 251 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t)) :org-element--cache-sync-key (1 . 0)))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 253 :end 254 :robust-begin 3 :robust-end 251 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 224 :end 225 :robust-begin 3 :robust-end 222 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t)) :org-element--cache-sync-key (1 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (1 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [181..192]𝝙29
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-12-26 20:30:37 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 64 29 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (1 . 1)::"(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (1 . 0))) :org-element--cache-sync-key (1 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 64 29 (section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (0 . 0)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 224 :end 225 :robust-begin 3 :robust-end 222 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 195 :end 196 :robust-begin 3 :robust-end 193 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t)) :org-element--cache-sync-key (0 . 0)))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 166 :contents-begin 1 :contents-end 164 :robust-begin 1 :robust-end 162 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (0 . 0)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..62]𝝙29
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 64 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): org-element-cache: Finished process. The cache size is 2. The remaining sync requests: "([1 1 93 -29 ... 0])"
  org-element-cache diagnostics(test.org): Phase 0 deleted all elements in cache after 1!
  org-element-cache diagnostics(test.org): Decreasing cache size to 2
  org-element-cache diagnostics(test.org): removing (0 . 1)::"(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-11-29 10:19:32 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 166 :contents-begin 1 :contents-end 164 :robust-begin 1 :robust-end 162 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...) :org-element--cache-sync-key (0 . 0))) :org-element--cache-sync-key (0 . 1)))"
  org-element-cache diagnostics(test.org): Phase 0
  org-element-cache diagnostics(test.org): org-element-cache: Processing request [1 1 93 -29 (section (:begin 1 :end 166 :contents-begin 1 :contents-end 164 :robust-begin 1 ...)) 0] up to nil-47, next: nil
  org-element-cache diagnostics(test.org): Syncing down to 47-47
  org-element-cache diagnostics(test.org): Extending to non-robust element "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-11-29 10:19:32 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 166 :contents-begin 1 :contents-end 164 :robust-begin 1 :robust-end 162 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...)))))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(org-data (:begin 1 :contents-begin 1 :contents-end 195 :end 196 :robust-begin 3 :robust-end 193 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t))"
  org-element-cache diagnostics(test.org): Shifting end positions of robust parent: "(section (:begin 1 :end 166 :contents-begin 1 :contents-end 164 :robust-begin 1 :robust-end 162 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data (:begin 1 :contents-begin 1 :contents-end 224 :end 225 :robust-begin 3 :robust-end 222 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\" :cached t))))"
  org-element-cache diagnostics(test.org): Found non-robust element: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-11-29 10:19:32 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element :cached t :parent (section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element :cached t :parent (org-data ...)))))"
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [47..91]𝝙-29
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil
  org-element-cache diagnostics(test.org): Added new element with nil key: "(comment (:begin 1 :end 93 :value \"-*- mode: org; eval: (visual-line-mode) -*-
Time-stamp: <2023-11-29 10:19:32 lockywolf>\" :post-blank 0 :post-affiliated 1 :mode top-comment :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(section (:begin 1 :end 195 :contents-begin 1 :contents-end 193 :robust-begin 1 :robust-end 191 :post-blank 2 :post-affiliated 1 :mode first-section :granularity element))"
  org-element-cache diagnostics(test.org): Added new element with nil key: "(org-data (:begin 1 :contents-begin 1 :contents-end 224 :end 225 :robust-begin 3 :robust-end 222 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\"))"
  org-element-cache diagnostics(test.org): Nothing in cache. Adding org-data: "(org-data (:begin 1 :contents-begin 1 :contents-end 224 :end 225 :robust-begin 3 :robust-end 222 :post-blank 1 :post-affiliated 1 :path \"/tmp/test.org\" :mode org-data :CATEGORY \"test\"))"
  org-element-cache diagnostics(test.org): Nothing to remove. No elements in cache after 1. Terminating.
  org-element-cache diagnostics(test.org): Adding new phase 0 request
  org-element-cache diagnostics(test.org): Submitting new synchronization request for [1..1]𝝙224
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning 1
  org-element-cache diagnostics(test.org): After change
  org-element-cache diagnostics(test.org): ido-exit-minibuffer is about to modify text: warning nil

^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 12:34                   ` Vladimir Nikishkin
@ 2023-12-26 13:22                     ` Ihor Radchenko
  2023-12-26 13:25                       ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-12-26 13:22 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

> Logs attached, the file is very simple, also attached:

Looks like a bug fixed in Org 9.6.10:
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=37d6bde27

And you seems to be using Org 9.6.8.

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 13:22                     ` Ihor Radchenko
@ 2023-12-26 13:25                       ` Vladimir Nikishkin
  2023-12-26 13:31                         ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26 13:25 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

org-version variable returns 9.6.13
(org-version) function call also returns 9.6.13

The test.org file itself has the org version stamp.

On Tue, 26 Dec 2023 at 21:19, Ihor Radchenko <yantar92@posteo.net> wrote:
>
> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
> > Logs attached, the file is very simple, also attached:
>
> Looks like a bug fixed in Org 9.6.10:
> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=37d6bde27
>
> And you seems to be using Org 9.6.8.
>
> --
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>



-- 
Yours sincerely, Vladimir Nikishkin
(Sent from GMail web interface.)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 13:25                       ` Vladimir Nikishkin
@ 2023-12-26 13:31                         ` Ihor Radchenko
  2023-12-26 13:59                           ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-12-26 13:31 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

> org-version variable returns 9.6.13
> (org-version) function call also returns 9.6.13
>
> The test.org file itself has the org version stamp.

I see. What about the latest development version of Org mode (main branch)?

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 13:31                         ` Ihor Radchenko
@ 2023-12-26 13:59                           ` Vladimir Nikishkin
  2023-12-26 14:33                             ` Ihor Radchenko
  0 siblings, 1 reply; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26 13:59 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

:\ that patch doesn't cleanly apply on top of emacs' master by itself.

And I don't know how to merge org's master into Emacs gracefully.

I will try with melpa's org, but it's likely to produce a mess with the configs.
Let me see what I can do.


On Tue, 26 Dec 2023 at 21:27, Ihor Radchenko <yantar92@posteo.net> wrote:
>
> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
> > org-version variable returns 9.6.13
> > (org-version) function call also returns 9.6.13
> >
> > The test.org file itself has the org version stamp.
>
> I see. What about the latest development version of Org mode (main branch)?
>
> --
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>



-- 
Yours sincerely, Vladimir Nikishkin
(Sent from GMail web interface.)


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 13:59                           ` Vladimir Nikishkin
@ 2023-12-26 14:33                             ` Ihor Radchenko
  2023-12-26 14:45                               ` Vladimir Nikishkin
  0 siblings, 1 reply; 17+ messages in thread
From: Ihor Radchenko @ 2023-12-26 14:33 UTC (permalink / raw)
  To: Vladimir Nikishkin; +Cc: emacs-orgmode

Vladimir Nikishkin <lockywolf@gmail.com> writes:

> :\ that patch doesn't cleanly apply on top of emacs' master by itself.
>
> And I don't know how to merge org's master into Emacs gracefully.
>
> I will try with melpa's org, but it's likely to produce a mess with the configs.
> Let me see what I can do.

See https://orgmode.org/manual/Installation.html#Using-Org_0027s-git-repository-1

-- 
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>


^ permalink raw reply	[flat|nested] 17+ messages in thread

* Re: [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)]
  2023-12-26 14:33                             ` Ihor Radchenko
@ 2023-12-26 14:45                               ` Vladimir Nikishkin
  0 siblings, 0 replies; 17+ messages in thread
From: Vladimir Nikishkin @ 2023-12-26 14:45 UTC (permalink / raw)
  To: Ihor Radchenko; +Cc: emacs-orgmode

Yeah, but it's still getting funky when some init files load the
built-in version.

But nevertheless, I don't seem to see this problem any more.

This bug can be closed.

On Tue, 26 Dec 2023 at 22:30, Ihor Radchenko <yantar92@posteo.net> wrote:
>
> Vladimir Nikishkin <lockywolf@gmail.com> writes:
>
> > :\ that patch doesn't cleanly apply on top of emacs' master by itself.
> >
> > And I don't know how to merge org's master into Emacs gracefully.
> >
> > I will try with melpa's org, but it's likely to produce a mess with the configs.
> > Let me see what I can do.
>
> See https://orgmode.org/manual/Installation.html#Using-Org_0027s-git-repository-1
>
> --
> Ihor Radchenko // yantar92,
> Org mode contributor,
> Learn more about Org mode at <https://orgmode.org/>.
> Support Org development at <https://liberapay.com/org-mode>,
> or support my work at <https://liberapay.com/yantar92>



-- 
Yours sincerely, Vladimir Nikishkin
(Sent from GMail web interface.)


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2023-12-26 14:46 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-20  3:51 [BUG] org-contrib: org-eldoc has an autload, but is incompatible with modern emacs. [9.6.8 (release_9.6.8-3-g21171d @ /usr/share/emacs/30.0.50/lisp/org/)] Vladimir Nikishkin
2023-10-20  7:37 ` Ihor Radchenko
2023-10-20  7:39   ` Vladimir Nikishkin
2023-10-20  7:49     ` Ihor Radchenko
2023-11-10  1:22       ` Vladimir Nikishkin
2023-12-26  9:27         ` Vladimir Nikishkin
2023-12-26 12:12           ` Ihor Radchenko
2023-12-26 12:13             ` Vladimir Nikishkin
2023-12-26 12:23               ` Ihor Radchenko
2023-12-26 12:26                 ` Vladimir Nikishkin
2023-12-26 12:34                   ` Vladimir Nikishkin
2023-12-26 13:22                     ` Ihor Radchenko
2023-12-26 13:25                       ` Vladimir Nikishkin
2023-12-26 13:31                         ` Ihor Radchenko
2023-12-26 13:59                           ` Vladimir Nikishkin
2023-12-26 14:33                             ` Ihor Radchenko
2023-12-26 14:45                               ` Vladimir Nikishkin

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).