From: Colin Clark Date: Tue, 3 Oct 2017 09:35:14 +0000 (+0100) Subject: Revert: Do not send debug data to terminal X-Git-Tag: v1.4~69 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=990299b272252f27c09cefc4cb44487755371e70 Revert: Do not send debug data to terminal --- diff --git a/src/ui_fileops.c b/src/ui_fileops.c index 9ea618d7..99a82166 100644 --- a/src/ui_fileops.c +++ b/src/ui_fileops.c @@ -57,6 +57,7 @@ void print_term(const gchar *text_utf8) gchar *text_l; text_l = g_locale_from_utf8(text_utf8, -1, NULL, NULL, NULL); + fputs((text_l) ? text_l : text_utf8, stderr); if(command_line && command_line->ssi) secure_fputs(command_line->ssi, (text_l) ? text_l : text_utf8); g_free(text_l);