From 82e98dac8b7f187f8049a51a903747b79b18aa9c Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Sat, 24 Nov 2007 18:44:04 -0500 Subject: [PATCH] Cleanup --- extra/io/unix/launcher/launcher.factor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extra/io/unix/launcher/launcher.factor b/extra/io/unix/launcher/launcher.factor index d0a68f4c6d..ef45a0705e 100755 --- a/extra/io/unix/launcher/launcher.factor +++ b/extra/io/unix/launcher/launcher.factor @@ -18,13 +18,13 @@ LAZY: 'escaped-char' "\\" token any-char-parser &> ; LAZY: 'chars' 'escaped-char' any-char-parser <|> <*> ; -LAZY: 'non-space-char' - 'escaped-char' [ CHAR: \s = not ] satisfy <|> ; - LAZY: 'quoted-1' 'chars' "\"" "\"" surrounded-by ; LAZY: 'quoted-2' 'chars' "'" "'" surrounded-by ; +LAZY: 'non-space-char' + 'escaped-char' [ CHAR: \s = not ] satisfy <|> ; + LAZY: 'unquoted' 'non-space-char' <+> ; LAZY: 'argument'