From 621d1b20b15b08d050549853ec527e5ebd3209a3 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Wed, 22 Jun 2022 14:55:26 -0500 Subject: [PATCH] syntax: Fix spaces --- core/syntax/syntax.factor | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/syntax/syntax.factor b/core/syntax/syntax.factor index 99efa805a7..66ab004772 100644 --- a/core/syntax/syntax.factor +++ b/core/syntax/syntax.factor @@ -296,21 +296,21 @@ IN: bootstrap.syntax ">>>>>>" [ version-control-merge-conflict ] define-core-syntax "'[" [ - t in-fry? [ parse-quotation ] with-variable fry append! + t in-fry? [ parse-quotation ] with-variable fry append! ] define-core-syntax "'{" [ - t in-fry? [ \ } parse-until >array ] with-variable fry append! + t in-fry? [ \ } parse-until >array ] with-variable fry append! ] define-core-syntax "'HS{" [ - t in-fry? [ \ } parse-until >array ] with-variable fry - [ >hash-set ] compose append! + t in-fry? [ \ } parse-until >array ] with-variable fry + [ >hash-set ] compose append! ] define-core-syntax "'H{" [ - t in-fry? [ \ } parse-until >array ] with-variable fry - [ parse-hashtable ] compose append! + t in-fry? [ \ } parse-until >array ] with-variable fry + [ parse-hashtable ] compose append! ] define-core-syntax "_" [ -- 2.34.1