From 7b9d3d844db701c6ad21429df6de923fb24a77c3 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Thu, 24 Jul 2008 18:13:27 -0500 Subject: [PATCH] shell: Remove calls to 'ast>>' --- extra/shell/shell.factor | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/extra/shell/shell.factor b/extra/shell/shell.factor index 45c6f1fb4d..e694b36007 100644 --- a/extra/shell/shell.factor +++ b/extra/shell/shell.factor @@ -50,7 +50,6 @@ DEFER: expansion METHOD: expand { back-quoted-expr } expr>> expr - ast>> command>> expansion utf8 @@ -122,7 +121,7 @@ DEFER: shell { [ dup f = ] [ drop ] } { [ dup "exit" = ] [ drop ] } { [ dup "" = ] [ drop shell ] } - { [ dup expr ] [ expr ast>> chant shell ] } + { [ dup expr ] [ expr chant shell ] } { [ t ] [ drop "ix: ignoring input" print shell ] } } cond ;