diff --git a/extra/serialize/serialize.factor b/extra/serialize/serialize.factor index 86fadf55bf..36d5e40b77 100755 --- a/extra/serialize/serialize.factor +++ b/extra/serialize/serialize.factor @@ -316,10 +316,10 @@ SYMBOL: deserialized deserialize* [ "End of stream" throw ] unless ; : deserialize ( -- obj ) - [ - V{ } clone deserialized - [ (deserialize) ] with-variable - ] with-compilation-unit ; + ! [ + V{ } clone deserialized + [ (deserialize) ] with-variable ; + ! ] with-compilation-unit ; : serialize ( obj -- ) H{ } clone serialized [ (serialize) ] with-variable ;