Skip to content

Commit

Permalink
Fixed one more use of [] on Anarki.
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketnia committed Apr 8, 2012
1 parent a5c0ad5 commit 5cb063e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arc/imp/sniff.arc
Expand Up @@ -8,7 +8,8 @@
(= my.cccraziness* nil)
; NOTE: We'd use catch.throw instead of ccc.idfn here, but Rainbow
; can't handle that. Has Rainbow implemented escape continuations?
(catch:after (ccc.idfn [= my.cccraziness* t]) throw.nil)
; NOTE: On Anarki, [= my.cccraziness* t] is nullary.
(catch:after (ccc.idfn:fn (_) (= my.cccraziness* t)) throw.nil)


; This is based on a bug in official Arc's quasiquote which makes it
Expand Down

0 comments on commit 5cb063e

Please sign in to comment.