From 6e1dd40d238f52f933cd8ee935d5fe16eb4ec981 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Tue, 21 Jun 2016 12:07:38 -0700 Subject: [PATCH] syntax: fix spacing --- 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 61207261d4..aac8c41e8c 100644 --- a/core/syntax/syntax.factor +++ b/core/syntax/syntax.factor @@ -58,28 +58,28 @@ IN: bootstrap.syntax { "_" "@" } define-fry-specifiers ! "@" [ "Only valid inside a fry" throw ] ( -- * ) define-fry-specifier - "![[" [ + "![[" [ "]]" parse-multiline-string drop ] define-core-syntax - "![=[" [ + "![=[" [ "]=]" parse-multiline-string drop ] define-core-syntax - "![==[" [ + "![==[" [ "]==]" parse-multiline-string drop ] define-core-syntax - "[[" [ + "[[" [ "]]" parse-multiline-string suffix! ] define-core-syntax - "[=[" [ + "[=[" [ "]=]" parse-multiline-string suffix! ] define-core-syntax - "[==[" [ + "[==[" [ "]==]" parse-multiline-string suffix! ] define-core-syntax