summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrekado <rekado@elephly.net>2014-12-16 18:33:23 +0100
committerrekado <rekado@elephly.net>2014-12-16 18:33:23 +0100
commitf15a9ee63a18cea4723db1458e5558d8b9992d42 (patch)
treef45f6f05d13d96b8aaf50f01c7b4848b4aa27e32
parent93bd3e79cb72a5361f0ef54e565ed3b742caa6c8 (diff)
use () for thunk, _ for when we don't care
-rw-r--r--xmpp.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp.scm b/xmpp.scm
index 70b92a0..b458b54 100644
--- a/xmpp.scm
+++ b/xmpp.scm
@@ -57,7 +57,7 @@ is unregistered."
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)