diff options
author | rekado <rekado@elephly.net> | 2014-12-16 08:43:00 +0100 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2014-12-16 08:43:00 +0100 |
commit | 6dca23f946aa83ee2e7b1671dfa3650257aab907 (patch) | |
tree | d7510939698ca19cfea333cdf3101f878aec058a | |
parent | 6feadbd3d86532e0eec51423452f9e29fa369ddc (diff) |
stylistic changes
-rw-r--r-- | xmpp.scm | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |