From 0eddd1f7d8859e6488a559c208c5752a4404b0f6 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Wed, 21 May 2014 08:49:57 -0700 Subject: [PATCH] quotations: 1quotation is ever-so-slightly better this way. --- core/quotations/quotations.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/quotations/quotations.factor b/core/quotations/quotations.factor index 2c59f3f41a..d779f16944 100644 --- a/core/quotations/quotations.factor +++ b/core/quotations/quotations.factor @@ -44,7 +44,7 @@ M: callable like drop dup quotation? [ >quotation ] unless ; INSTANCE: quotation immutable-sequence -: 1quotation ( obj -- quot ) 1array >quotation ; +: 1quotation ( obj -- quot ) 1array array>quotation ; GENERIC: literalize ( obj -- wrapped )