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

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

[elpa] master 65b46b7: fsm: Revert some changes suggested by checkdoc


From: Thomas Fitzsimmons
Subject: [elpa] master 65b46b7: fsm: Revert some changes suggested by checkdoc
Date: Sat, 05 Sep 2015 20:36:00 +0000

branch: master
commit 65b46b73551e2624f516051294a7d9af3eff0bb3
Author: Thomas Fitzsimmons <address@hidden>
Commit: Thomas Fitzsimmons <address@hidden>

    fsm: Revert some changes suggested by checkdoc
---
 packages/fsm/fsm.el |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/packages/fsm/fsm.el b/packages/fsm/fsm.el
index 42e9430..42dda15 100644
--- a/packages/fsm/fsm.el
+++ b/packages/fsm/fsm.el
@@ -324,7 +324,7 @@ event handler explicitly asks to keep the timer."
    ))
 
 (defun fsm-send (fsm event &optional callback)
-  "Send FSM EVENT asynchronously.
+  "Send EVENT to FSM 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))
@@ -332,7 +332,7 @@ CALLBACK with the response as only argument."
 (defun fsm-update (fsm new-state new-state-data timeout)
   "Update FSM with NEW-STATE, NEW-STATE-DATA and TIMEOUT."
   (let ((fsm-name (get fsm :name))
-        (old-state (get fsm :state)))
+       (old-state (get fsm :state)))
     (put fsm :state new-state)
     (put fsm :state-data new-state-data)
     (fsm-maybe-change-timer fsm timeout)
@@ -359,7 +359,7 @@ CALLBACK with the response as only argument."
          (apply 'fsm-send-sync fsm event))))))
 
 (defun fsm-send-sync (fsm event &optional callback)
-  "Send FSM EVENT synchronously.
+  "Send EVENT to FSM synchronously.
 If the state machine generates a response, eventually call
 CALLBACK with the response as only argument."
   (save-match-data
@@ -399,7 +399,7 @@ CALLBACK with the response as only argument."
                            result)))))))
 
 (defun fsm-call (fsm event)
-  "Send FSM EVENT synchronously, and wait for a reply.
+  "Send EVENT to FSM 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))))
@@ -422,7 +422,7 @@ Events sent are of the form (:sentinel PROCESS STRING)."
       (fsm-send-sync fsm (list :sentinel process string)))))
 
 (defun fsm-sleep (fsm secs)
-  "Let FSM receive events while sleeping up to SECS seconds."
+  "Sleep up to SECS seconds in a way that lets FSM receive events."
   (funcall (get fsm :sleep) secs))
 
 (defun fsm-get-state-data (fsm)



reply via email to

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