gameobj: Fix dyn-ref match call wip-dbstuff
authorChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 10 Dec 2016 22:01:55 +0000 (16:01 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Sat, 10 Dec 2016 22:01:55 +0000 (16:01 -0600)
The condition for #f was broken, and had no body.

mudsync/gameobj.scm

index 9046520bbb9ba7dc396dcfa4bec301117f85f716..20fc291340198c25e12ad2c718c985e55ad35c42 100644 (file)
@@ -365,6 +365,6 @@ By default, this is whether or not the generally-visible flag is set."
               #:symbol special-symbol)
       'val))
     ;; if it's false, return nothing
-    ((#f #f))
+    (#f #f)
     ;; otherwise it's probably an address, return it as-is
     (_ special-symbol)))