Re: [PATCH] fix `org-agenda-new-marker`

2022-10-16 Thread Ihor Radchenko
Hu Lucius writes: > In some cases, `org-agenda-buffer` is killed while the symbol itself > is still non-nil. `org-agena-new-marker` and anything calls it would > ends in a message of "Selecting deleted buffer". > > This commit simply added an additional test that > > (buffer-live-p

[PATCH] fix `org-agenda-new-marker`

2022-02-11 Thread Hu Lucius
In some cases, `org-agenda-buffer` is killed while the symbol itself is still non-nil. `org-agena-new-marker` and anything calls it would ends in a message of "Selecting deleted buffer". This commit simply added an additional test that (buffer-live-p org-agenda-buffer) should also be true.