diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c index 890ef2de371..a8d27f0ef2d 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -2429,7 +2429,10 @@ A prefix arg makes KEEP-TIME non-nil. */) | |||
| 2429 | SetFileAttributes (filename, attributes); | 2429 | SetFileAttributes (filename, attributes); |
| 2430 | } | 2430 | } |
| 2431 | #else /* not WINDOWSNT */ | 2431 | #else /* not WINDOWSNT */ |
| 2432 | immediate_quit = 1; | ||
| 2432 | ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0); | 2433 | ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0); |
| 2434 | immediate_quit = 0; | ||
| 2435 | |||
| 2433 | if (ifd < 0) | 2436 | if (ifd < 0) |
| 2434 | report_file_error ("Opening input file", Fcons (file, Qnil)); | 2437 | report_file_error ("Opening input file", Fcons (file, Qnil)); |
| 2435 | 2438 | ||