From: Magnus H. <leg...@us...> - 2014-07-11 07:32:50
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "emacs-jabber". The branch, master has been updated via 3f168ae5c1f7b40c2935158b99354c97bc82ab59 (commit) from 54907e7b118be0a70d392c2442a3829d405a43e1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 3f168ae5c1f7b40c2935158b99354c97bc82ab59 Author: Magnus Henoch <mag...@gm...> Date: Thu Jul 10 18:42:28 2014 +0100 Don't print enter function in fsm debug output Most of the time it's just compiled byte code anyway. diff --git a/fsm.el b/fsm.el index 75f9650..b7f6225 100644 --- a/fsm.el +++ b/fsm.el @@ -330,7 +330,7 @@ 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: %S" new-state enter-fn) + (fsm-debug-output "Found enter function for %S" new-state) (condition-case e (destructuring-bind (newer-state-data newer-timeout) (funcall enter-fn fsm new-state-data) ----------------------------------------------------------------------- Summary of changes: fsm.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- emacs-jabber |