Commit a71a2f9a authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

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

No related merge requests found
Showing with 4 additions and 1 deletion
+4 -1
......@@ -1176,7 +1176,10 @@ bool scoop_stdin(void)
terminal_init();
doupdate();
set_modified();
if (openfile->totsize > 0)
set_modified();
return TRUE;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment