1
1

startup: don't mark the buffer as modified when nothing was read

Этот коммит содержится в:
Benno Schulenberg 2017-06-23 09:51:58 +02:00
родитель 56ce5f2ba8
Коммит a71a2f9a0c

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

@ -1176,7 +1176,10 @@ bool scoop_stdin(void)
terminal_init(); terminal_init();
doupdate(); doupdate();
set_modified();
if (openfile->totsize > 0)
set_modified();
return TRUE; return TRUE;
} }