summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2014-12-16 08:43:00 +0100
committerrekado <rekado@elephly.net>2014-12-16 08:43:00 +0100
commit6dca23f946aa83ee2e7b1671dfa3650257aab907 (patch)
treed7510939698ca19cfea333cdf3101f878aec058a
parent6feadbd3d86532e0eec51423452f9e29fa369ddc (diff)
stylistic changes
-rw-r--r--xmpp.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/xmpp.scm b/xmpp.scm
index 6a8c242..9f77f17 100644
--- a/xmpp.scm
+++ b/xmpp.scm
@@ -53,10 +53,11 @@ is unregistered."
*stanza-handlers*))
(define (handle-stanza stanza)
- "Check if handler for this stanza id exists and run it if it exists. Then try all other handlers."
+ "Check if handler for this stanza id exists and run it if it exists.
+Then try all other handlers."
(let ((id-handler (hash-ref *stanza-id-handlers* (stanza-id stanza))))
(catch 'halt
- (lambda ()
+ (lambda _
(when id-handler (id-handler stanza))
(try-stanza-handlers stanza))
(lambda (key . args)