[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/fsm cfbe515 06/16: fsm: Add FSM name to some fsm-debug-
From: |
Stefan Monnier |
Subject: |
[elpa] externals/fsm cfbe515 06/16: fsm: Add FSM name to some fsm-debug-output messages |
Date: |
Sun, 29 Nov 2020 12:00:24 -0500 (EST) |
branch: externals/fsm
commit cfbe515b070c2b70bcacb3580649c9cfef233a4e
Author: Thomas Fitzsimmons <fitzsim@fitzsim.org>
Commit: Thomas Fitzsimmons <fitzsim@fitzsim.org>
fsm: Add FSM name to some fsm-debug-output messages
---
fsm.el | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/fsm.el b/fsm.el
index cb49e93..b7a7693 100644
--- a/fsm.el
+++ b/fsm.el
@@ -94,6 +94,8 @@
;; -- Fix formatting.
;; -- Use lexical binding.
;; -- Port to cl-lib.
+;; -- Remove unnecessary fsm-debug-output message.
+;; -- Add FSM name to fsm-debug-output messages that were not including it.
;; NOTE: This is version 0.1ttn4 of fsm.el, with the following
;; mods (an exercise in meta-meta-programming ;-) by ttn:
@@ -336,15 +338,15 @@ CALLBACK with the response as only argument."
(fsm-debug-output "%s enters %s" fsm-name new-state)
(let ((enter-fn (gethash new-state (get fsm-name :fsm-enter))))
(when (functionp enter-fn)
- (fsm-debug-output "Found enter function for %S" new-state)
+ (fsm-debug-output "Found enter function for %s/%s" fsm-name new-state)
(condition-case e
(cl-destructuring-bind (newer-state-data newer-timeout)
(funcall enter-fn fsm new-state-data)
- (fsm-debug-output "Using data from enter function")
(plist-put (cddr fsm) :state-data newer-state-data)
(fsm-maybe-change-timer fsm newer-timeout))
((debug error)
- (fsm-debug-output "Didn't work: %S" e)))))
+ (fsm-debug-output "%s/%s update didn't work: %S"
+ fsm-name new-state e)))))
(let ((deferred (nreverse (plist-get (cddr fsm) :deferred))))
(setf (cddr fsm)
- [elpa] branch externals/fsm created (now b7d74b3), Stefan Monnier, 2020/11/29
- [elpa] externals/fsm cfbe515 06/16: fsm: Add FSM name to some fsm-debug-output messages,
Stefan Monnier <=
- [elpa] externals/fsm 3acbc4d 14/16: packages/fsm: Bump version to 0.2.1, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm aaea24a 01/16: fsm: Import fsm.el from emacs-jabber, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm 384864d 03/16: fsm: Fix formatting, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm e3c4c03 04/16: fsm: Use lexical binding, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm 74d3364 11/16: fsm: Bump version to 0.2, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm 3548ca5 12/16: fsm: Revert some changes suggested by checkdoc, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm 1e86cbc 09/16: fsm: Fix copyright, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm b7d74b3 16/16: * .gitignore: New file, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm 1044ede 10/16: fsm: Change FSMs from plists to uninterned symbols, Stefan Monnier, 2020/11/29
- [elpa] externals/fsm 3b66086 13/16: packages/fsm: Fix compilation error, Stefan Monnier, 2020/11/29