]> git.eshelyaron.com Git - emacs.git/commitdiff
Make list-threads refresh the *Threads* buffer if it already exists
authorGemini Lasswell <gazally@runbox.com>
Mon, 13 Aug 2018 22:45:11 +0000 (15:45 -0700)
committerGemini Lasswell <gazally@runbox.com>
Sun, 9 Sep 2018 14:41:49 +0000 (07:41 -0700)
* lisp/thread.el (list-threads): Call revert-buffer instead of waiting
for the timer function to do it.

lisp/thread.el

index c4a4c113570f9314eee5446bd743378bc14d44f2..4cd253e2cf563b7e6f76dc2b15812da8caa9b5af 100644 (file)
@@ -84,7 +84,9 @@ An EVENT has the format
     (with-current-buffer buf
       (unless (derived-mode-p 'thread-list-mode)
         (thread-list-mode)
-        (run-at-time 0 nil #'thread-list--timer-func buf)))
+        (run-at-time thread-list-refresh-seconds nil
+                     #'thread-list--timer-func buf))
+      (revert-buffer))
     (switch-to-buffer buf)))
 ;; This command can be destructive if they don't know what they are
 ;; doing.  Kids, don't try this at home!