From: Laurence Warne <laurencewarne@gmail.com>
To: Eli Zaretskii <eliz@gnu.org>
Cc: 59307@debbugs.gnu.org
Subject: bug#59307: [PATCH] Cancel proced auto update timer if no proced buffers are open
Date: Sun, 20 Nov 2022 11:18:17 +0000 [thread overview]
Message-ID: <CAE2oLqj78dHDLjS8W09t3atLaJ=0qgnSscEQGpedihr003C4AA@mail.gmail.com> (raw)
In-Reply-To: <83o7t16hha.fsf@gnu.org>
[-- Attachment #1.1: Type: text/plain, Size: 539 bytes --]
Hi, thanks for taking a look. Apologies, you're right.
I've attached an updated patch, the problem before was that it was possible
for a timer to be cancelled when there still existed proced buffers, which
broke proced-toggle-auto-update.
To reproduce, apply the patch and then type
>
> M-x proced-toggle-auto-update RET
>
> The result is that the Proced display is not updated every 5 sec as
> expected, and the value of proced-auto-update-timer is nil.
>
I've tested this with the new patch, and it works for me.
Thanks, Laurence
[-- Attachment #1.2: Type: text/html, Size: 857 bytes --]
[-- Attachment #2: 0001-Cancel-proced-auto-update-timer-if-no-proced-buffers.patch --]
[-- Type: text/x-patch, Size: 1579 bytes --]
From fa8af3f90bc33d554b2d6a8c6c4c3866be77a2ff Mon Sep 17 00:00:00 2001
From: Laurence Warne <laurencewarne@gmail.com>
Date: Tue, 15 Nov 2022 18:48:40 +0000
Subject: [PATCH] Cancel proced auto update timer if no proced buffers are open
* lisp/proced.el (proced-auto-update-timer): Cancel timer if no proced
buffers are open.
---
lisp/proced.el | 18 ++++++++++++------
1 file changed, 12 insertions(+), 6 deletions(-)
diff --git a/lisp/proced.el b/lisp/proced.el
index a774f2dd1e..91f7a944f9 100644
--- a/lisp/proced.el
+++ b/lisp/proced.el
@@ -740,12 +740,18 @@ proced
"Type \\<proced-mode-map>\\[quit-window] to quit, \\[proced-help] for help")))))
(defun proced-auto-update-timer ()
- "Auto-update Proced buffers using `run-at-time'."
- (dolist (buf (buffer-list))
- (with-current-buffer buf
- (if (and (eq major-mode 'proced-mode)
- proced-auto-update-flag)
- (proced-update t t)))))
+ "Auto-update Proced buffers using `run-at-time'.
+
+If there are no proced buffers, cancel the timer."
+ (unless (seq-filter (lambda (buf)
+ (with-current-buffer buf
+ (when (eq major-mode 'proced-mode)
+ (when proced-auto-update-flag
+ (proced-update t t))
+ t)))
+ (buffer-list))
+ (cancel-timer proced-auto-update-timer)
+ (setq proced-auto-update-timer nil)))
(defun proced-toggle-auto-update (arg)
"Change whether this Proced buffer is updated automatically.
--
2.30.2
next prev parent reply other threads:[~2022-11-20 11:18 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-16 11:57 bug#59307: [PATCH] Cancel proced auto update timer if no proced buffers are open Laurence Warne
2022-11-20 10:35 ` Eli Zaretskii
2022-11-20 11:18 ` Laurence Warne [this message]
2022-11-20 11:52 ` Eli Zaretskii
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAE2oLqj78dHDLjS8W09t3atLaJ=0qgnSscEQGpedihr003C4AA@mail.gmail.com' \
--to=laurencewarne@gmail.com \
--cc=59307@debbugs.gnu.org \
--cc=eliz@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.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).