aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader.c
diff options
context:
space:
mode:
Diffstat (limited to 'reader.c')
-rw-r--r--reader.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/reader.c b/reader.c
index 4ad6e2ed..add5e2dc 100644
--- a/reader.c
+++ b/reader.c
@@ -1719,12 +1719,7 @@ void reader_run_command( const wchar_t *cmd )
}
-/**
- Test if the given shell command contains errors. Uses parser_test
- for testing.
-*/
-
-static int shell_test( wchar_t *b )
+int reader_shell_test( wchar_t *b )
{
int res = parser_test( b, 0, 0, 0 );
@@ -1904,7 +1899,7 @@ static int read_i()
reader_push(L"fish");
reader_set_complete_function( &complete );
reader_set_highlight_function( &highlight_shell );
- reader_set_test_function( &shell_test );
+ reader_set_test_function( &reader_shell_test );
data->prev_end_loop=0;