From: Christopher Allan Webber Date: Sat, 10 Dec 2016 22:01:55 +0000 (-0600) Subject: gameobj: Fix dyn-ref match call X-Git-Tag: fosdem-2017~135 X-Git-Url: https://jxself.org/git/?p=mudsync.git;a=commitdiff_plain;h=242f214ff5d4e3c0df4687799819c104e7fb1a78 gameobj: Fix dyn-ref match call The condition for #f was broken, and had no body. --- diff --git a/mudsync/gameobj.scm b/mudsync/gameobj.scm index 9046520..20fc291 100644 --- a/mudsync/gameobj.scm +++ b/mudsync/gameobj.scm @@ -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)))