1
1

* execute.c (do_execute): Flush stdout after printing the command to be

executed.
Этот коммит содержится в:
Leonard den Ottolander 2005-09-17 12:08:19 +00:00
родитель 13d8512c37
Коммит a621fb9b67
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2005-09-17 Pavel Tsekov <ptsekov@gmx.net>
* execute.c (do_execute): Flush stdout after printing the
command to be executed.
2005-09-17 Leonard den Ottolander <leonard den ottolander nl>
* util.c: Indentation cleanup (function result types on

Просмотреть файл

@ -109,6 +109,7 @@ do_execute (const char *shell, const char *command, int flags)
if (!use_subshell && command && !(flags & EXECUTE_INTERNAL)) {
printf ("%s%s\n", prompt, command);
fflush (stdout);
}
#ifdef HAVE_SUBSHELL_SUPPORT
if (use_subshell && !(flags & EXECUTE_INTERNAL)) {