Fix stupid typo in reader.
authorChris Hanson <org/chris-hanson/cph>
Tue, 9 Jul 2019 23:53:32 +0000 (19:53 -0400)
committerChris Hanson <org/chris-hanson/cph>
Thu, 18 Jul 2019 00:50:54 +0000 (20:50 -0400)
src/runtime/reader.scm

index a464e19e1337b033fc19ea71b911f01cb38d8585..8eb4470286a8977ecec815dc3e1342730f4178b1 100644 (file)
@@ -566,7 +566,7 @@ USA.
 
 (define (handler:close-bracket db ctx char)
   db
-  (if (close-bracket-ok? ctx)
+  (if (not (close-bracket-ok? ctx))
       (error:unbalanced-close char))
   (close-bracket-token))