emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/fsm 5e69613 07/16: fsm: Fix checkdoc errors


From: Stefan Monnier
Subject: [elpa] externals/fsm 5e69613 07/16: fsm: Fix checkdoc errors
Date: Sun, 29 Nov 2020 12:00:24 -0500 (EST)

branch: externals/fsm
commit 5e69613b60836df7d73682121dd970f9c84b3f21
Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Commit: Thomas Fitzsimmons <fitzsim@fitzsim.org>

    fsm: Fix checkdoc errors
---
 fsm.el | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/fsm.el b/fsm.el
index b7a7693..c89322b 100644
--- a/fsm.el
+++ b/fsm.el
@@ -96,6 +96,7 @@
 ;; -- Port to cl-lib.
 ;; -- Remove unnecessary fsm-debug-output message.
 ;; -- Add FSM name to fsm-debug-output messages that were not including it.
+;; -- Fix checkdoc errors.
 
 ;; NOTE: This is version 0.1ttn4 of fsm.el, with the following
 ;; mods (an exercise in meta-meta-programming ;-) by ttn:
@@ -320,12 +321,13 @@ event handler explicitly asks to keep the timer."
    ))
 
 (defun fsm-send (fsm event &optional callback)
-  "Send EVENT to FSM asynchronously.
+  "Send FSM EVENT asynchronously.
 If the state machine generates a response, eventually call
 CALLBACK with the response as only argument."
   (run-with-timer 0 nil #'fsm-send-sync fsm event callback))
 
 (defun fsm-update (fsm new-state new-state-data timeout)
+  "Update FSM with NEW-STATE, NEW-STATE-DATA and TIMEOUT."
   (let ((fsm-name (cadr fsm))
        (old-state (plist-get (cddr fsm) :state)))
     (plist-put (cddr fsm) :state new-state)
@@ -355,7 +357,7 @@ CALLBACK with the response as only argument."
          (apply 'fsm-send-sync fsm event))))))
 
 (defun fsm-send-sync (fsm event &optional callback)
-  "Send EVENT to FSM synchronously.
+  "Send FSM EVENT synchronously.
 If the state machine generates a response, eventually call
 CALLBACK with the response as only argument."
   (save-match-data
@@ -396,9 +398,8 @@ CALLBACK with the response as only argument."
                            result)))))))
 
 (defun fsm-call (fsm event)
-  "Send EVENT to FSM synchronously, and wait for a reply.
-Return the reply.
-`with-timeout' might be useful."
+  "Send FSM EVENT synchronously, and wait for a reply.
+Return the reply.  `with-timeout' might be useful."
   (let (reply)
     (fsm-send-sync fsm event (lambda (r) (setq reply (list r))))
     (while (null reply)
@@ -420,7 +421,7 @@ Events sent are of the form (:sentinel PROCESS STRING)."
       (fsm-send-sync fsm (list :sentinel process string)))))
 
 (defun fsm-sleep (fsm secs)
-  "Sleep up to SECS seconds in a way that lets FSM receive events."
+  "Let FSM receive events while sleeping up to SECS seconds."
   (funcall (plist-get (cddr fsm) :sleep) secs))
 
 (defun fsm-get-state-data (fsm)



reply via email to

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