feedback: show an appropriate message when reading a file was cut short
Этот коммит содержится в:
родитель
d9deaf9f2f
Коммит
d656b0d3b9
@ -747,8 +747,10 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable)
|
|||||||
/* Read the entire file into the new buffer. */
|
/* Read the entire file into the new buffer. */
|
||||||
while ((input_int = getc_unlocked(f)) != EOF) {
|
while ((input_int = getc_unlocked(f)) != EOF) {
|
||||||
|
|
||||||
if (control_C_was_pressed)
|
if (control_C_was_pressed) {
|
||||||
|
statusline(ALERT, _("Interrupted"));
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
input = (char)input_int;
|
input = (char)input_int;
|
||||||
|
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user