emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] fix `org-agenda-new-marker`
@ 2022-02-11  2:34 Hu Lucius
  2022-10-16 10:42 ` Ihor Radchenko
  0 siblings, 1 reply; 2+ messages in thread
From: Hu Lucius @ 2022-02-11  2:34 UTC (permalink / raw)
  To: emacs-orgmode

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

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.

Signed-off-by: Lucius Hu <lebensterben@users.noreply.github.com>
---
 lisp/org-agenda.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 9bc44a56e..d5969ac78 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -4225,7 +4225,7 @@ Marker is at point, or at POS if non-nil.  Org mode
keeps a list
 of these markers and resets them when they are no longer in use."
   (let ((m (copy-marker (or pos (point)) t)))
     (setq org-agenda-last-marker-time (float-time))
-    (if org-agenda-buffer
+    (if (org-agenda-buffer (buffer-live-p org-agenda-buffer))
  (with-current-buffer org-agenda-buffer
   (push m org-agenda-markers))
       (push m org-agenda-markers))
-- 
2.35.1

[-- Attachment #2: Type: text/html, Size: 1268 bytes --]

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

* Re: [PATCH] fix `org-agenda-new-marker`
  2022-02-11  2:34 [PATCH] fix `org-agenda-new-marker` Hu Lucius
@ 2022-10-16 10:42 ` Ihor Radchenko
  0 siblings, 0 replies; 2+ messages in thread
From: Ihor Radchenko @ 2022-10-16 10:42 UTC (permalink / raw)
  To: Hu Lucius; +Cc: emacs-orgmode

Hu Lucius <orctarorga@gmail.com> 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 org-agenda-buffer)
>
> should also be true.

Thanks and sorry for the late reply!
I applied equivalent patch with the syntactically correct condition onto
main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=87c294c7b6419e4b262fbcd6ecd1d535a8496af5

-- 
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] 2+ messages in thread

end of thread, other threads:[~2022-10-16 10:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-11  2:34 [PATCH] fix `org-agenda-new-marker` Hu Lucius
2022-10-16 10:42 ` Ihor Radchenko

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).