emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master ea1ec0e 03/12: Improve docstrings of thread-list fu


From: Gemini Lasswell
Subject: [Emacs-diffs] master ea1ec0e 03/12: Improve docstrings of thread-list functions
Date: Sun, 9 Sep 2018 11:31:40 -0400 (EDT)

branch: master
commit ea1ec0ed2e6ebbd4650aa5a7d662f2568f1d858f
Author: Gemini Lasswell <address@hidden>
Commit: Gemini Lasswell <address@hidden>

    Improve docstrings of thread-list functions
    
    * lisp/thread.el (thread-list--timer-func): Change
    argument from 'buf' to 'buffer'.
    (thread-list--get-entries, thread-list--get-status): Improve
    docstring.
    (thread-list--send-signal): Change argument from 'sgnl' to
    'signal'.  Tell the user when the thread is no longer alive.
---
 lisp/thread.el | 33 +++++++++++++++++----------------
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/lisp/thread.el b/lisp/thread.el
index cb1e772..c4a4c11 100644
--- a/lisp/thread.el
+++ b/lisp/thread.el
@@ -90,16 +90,16 @@ An EVENT has the format
 ;; doing.  Kids, don't try this at home!
 ;;;###autoload (put 'list-threads 'disabled "Beware: manually canceling 
threads can ruin your Emacs session.")
 
-(defun thread-list--timer-func (buf)
-  "Revert BUF and set a timer to do it again."
-  (when (buffer-live-p buf)
-    (with-current-buffer buf
+(defun thread-list--timer-func (buffer)
+  "Revert BUFFER and set a timer to do it again."
+  (when (buffer-live-p buffer)
+    (with-current-buffer buffer
       (revert-buffer))
     (run-at-time thread-list-refresh-seconds nil
-                 #'thread-list--timer-func buf)))
+                 #'thread-list--timer-func buffer)))
 
 (defun thread-list--get-entries ()
-  "Return tabulated list entries for the threads currently active."
+  "Return tabulated list entries for the currently live threads."
   (let (entries)
     (dolist (thread (all-threads))
       (pcase-let ((`(,status ,blocker) (thread-list--get-status thread)))
@@ -112,9 +112,8 @@ An EVENT has the format
 
 (defun thread-list--get-status (thread)
   "Describe the status of THREAD.
-Return a list of two strings, the first describing THREAD's
-status and the second describing what it is blocked on if it is
-blocked."
+Return a list of two strings, one describing THREAD's status, the
+other describing THREAD's blocker, if any."
   (cond
    ((not (thread-alive-p thread)) '("Finished" ""))
    ((eq thread (current-thread)) '("Running" ""))
@@ -132,14 +131,16 @@ blocked."
   (interactive)
   (thread-list--send-signal 'error))
 
-(defun thread-list--send-signal (sgnl)
-  "Send the signal SGNL to the thread at point.
-Confirm with the user first."
+(defun thread-list--send-signal (signal)
+  "Send the specified SIGNAL to the thread at point.
+Ask for user confirmation before signaling the thread."
   (let ((thread (tabulated-list-get-id)))
-    (when (and (threadp thread) (thread-alive-p thread))
-      (when (y-or-n-p (format "Send %s signal to %s? " sgnl thread))
-        (when (and (threadp thread) (thread-alive-p thread))
-          (thread-signal thread sgnl nil))))))
+    (if (and (threadp thread) (thread-alive-p thread))
+        (when (y-or-n-p (format "Send %s signal to %s? " signal thread))
+          (if (and (threadp thread) (thread-alive-p thread))
+              (thread-signal thread signal nil)
+            (message "This thread is no longer alive")))
+      (message "This thread is no longer alive"))))
 
 (provide 'thread)
 ;;; thread.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]