mirror of https://github.com/MidnightCommander/mc
Use stdout instead of stderr for hints output on xterm
This commit is contained in:
parent
b09d70e07e
commit
367e8389cd
|
@ -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 -
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue