Use stdout instead of stderr for hints output on xterm

This commit is contained in:
Pavel Roskin 1998-09-08 12:12:59 +00:00
parent b09d70e07e
commit 367e8389cd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Sep 8 13:10:32 1998 Pavel Roskin <pavel_roskin@geocities.com>
* layout.c: Use stdout instead of stderr in set_hintbar()
Mon Aug 31 12:40:29 1998 Pavel Machek <pavel@ucw.cz>
* cmd.c: added view_file_cmd which asks user which file to view -

View File

@ -843,7 +843,8 @@ void set_hintbar(char *str)
{
#ifndef HAVE_X
if (xterm_flag && xterm_hintbar) {
fprintf (stderr, "\33]0;mc - %s\7", str);
fprintf (stdout, "\33]0;mc - %s\7", str);
fflush (stdout);
} else
#endif
{