diff --git a/src/kiss/SpecialForms.hx b/src/kiss/SpecialForms.hx index 4e731b2..b82a4c2 100644 --- a/src/kiss/SpecialForms.hx +++ b/src/kiss/SpecialForms.hx @@ -472,12 +472,11 @@ class SpecialForms { }; // Type check syntax: - k.doc("the", 2, 3, '(the )'); + k.doc("the", 2, 3, '(the )'); map["the"] = (wholeExp:ReaderExp, args:Array, k:KissState) -> { var pkg = ""; var whichArg = "first"; if (args.length == 3) { - throw KissError.fromExp(wholeExp, "(the ) form is no longer allowed. use (the ) instead"); pkg = switch (args.shift().def) { case Symbol(pkg): pkg; default: throw KissError.fromExp(wholeExp, '$whichArg argument to (the... ) should be a valid haxe package');