From 0f10a3a2774b6487fe2f88f20dc6c44a81568456 Mon Sep 17 00:00:00 2001 From: axel Date: Fri, 27 Jan 2006 01:16:59 +1000 Subject: Small output string tweaks darcs-hash:20060126151659-ac50b-a6a7fbe764f0a8adb06f62efd233ef377178d521.gz --- parser.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'parser.c') diff --git a/parser.c b/parser.c index 42e31a3f..2bd4de55 100644 --- a/parser.c +++ b/parser.c @@ -1026,12 +1026,12 @@ static void parser_stack_trace( block_t *b, string_buffer_t *buff) const wchar_t *file = function_get_definition_file( b->param1.function_name ); if( file ) sb_printf( buff, - _(L"\tcalled on line %d of file '%ls'\n"), + _(L"\tcalled on line %d of file '%ls',\n"), b->param3.function_lineno, file ); else sb_printf( buff, - _(L"\tcalled on standard input\n") ); + _(L"\tcalled on standard input,\n") ); if( al_get_count( &b->param2.function_vars ) ) { @@ -1042,7 +1042,7 @@ static void parser_stack_trace( block_t *b, string_buffer_t *buff) { sb_append2( &tmp, i?L" ":L"", (wchar_t *)al_get( &b->param2.function_vars, i ), (void *)0 ); } - sb_printf( buff, _(L"\twith parameters '%ls',\n"), (wchar_t *)tmp.buff ); + sb_printf( buff, _(L"\twith parameter list '%ls'\n"), (wchar_t *)tmp.buff ); sb_destroy( &tmp ); } -- cgit v1.2.3