aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_tests.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-14 00:08:33 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-14 00:08:33 +1000
commit0385fbe2be6d1fb03c6fdbc7ca2efb6fe2ff7ce6 (patch)
treee20858422bfd27f0b1eaed2cdbe3a6aa62b095f1 /fish_tests.c
parent7e3f9c222c3c1a45abf7a89d619aa2b487a65c1e (diff)
Optimize interactive input reader by allowing multiple input characters between redraws
darcs-hash:20051013140833-ac50b-f652fada56ca7359246b03a4bdf2116fb8c52435.gz
Diffstat (limited to 'fish_tests.c')
-rw-r--r--fish_tests.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fish_tests.c b/fish_tests.c
index 613bd916..ad37c4c8 100644
--- a/fish_tests.c
+++ b/fish_tests.c
@@ -616,6 +616,7 @@ int main( int argc, char **argv )
say( L"Testing low-level functionality");
say( L"Lines beginning with '(ignore):' are not errors, they are warning messages\ngenerated by the fish parser library when given broken input, and can be\nignored. All actual errors begin with 'Error:'." );
+ output_init();
event_init();
exec_init();
parser_init();
@@ -647,5 +648,6 @@ int main( int argc, char **argv )
wutil_destroy();
exec_destroy();
event_destroy();
+ output_destroy();
}