From e68486595ea4da9365c7ab56a915e4a8ad905376 Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Mon, 18 Jun 2001 22:43:20 +0000 Subject: (cmd_psym_) symbols printed to the correct stream --- mixlib/mix_vm_command.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mixlib/mix_vm_command.c b/mixlib/mix_vm_command.c index 8068ce1..e6f7e79 100644 --- a/mixlib/mix_vm_command.c +++ b/mixlib/mix_vm_command.c @@ -726,7 +726,8 @@ cmd_psym_ (mix_vm_cmd_dispatcher_t *dis, const gchar *arg) { if ( mix_symbol_table_is_defined (table, arg) ) { - mix_word_print (mix_symbol_table_value (table, arg), NULL); + mix_word_print_to_file (mix_symbol_table_value (table, arg), + NULL, dis->out); putc ('\n', dis->out); result = TRUE; } @@ -735,7 +736,7 @@ cmd_psym_ (mix_vm_cmd_dispatcher_t *dis, const gchar *arg) } else { - mix_symbol_table_print (table, MIX_SYM_ROWS, stdout, TRUE); + mix_symbol_table_print (table, MIX_SYM_ROWS, dis->out, TRUE); result = TRUE; } -- cgit v1.2.3