summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-10-13 09:00:17 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-10-13 09:00:17 +0200
commitc522021a3019fa8f8598319a867326ec59b2bfaf (patch)
tree2ecce034ec76c990770fa3502c6668771673712d /src/fileio.c
parent2b7fefdef148f4d5deee3ea1ed63e8999010c9c3 (diff)
downloademacs-c522021a3019fa8f8598319a867326ec59b2bfaf.tar.gz
Fix misleading "File exists, but cannot be read" in browse-url-emacs
* src/fileio.c (Finsert_file_contents): Don't signal an error about not being able to open the file when we're fetching things via handlers -- in that case, modtime isn't necessarily set, and if there's a handler, it should take care of this (bug#42431).
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index dd7f85ec97f..a2388898034 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -5000,7 +5000,7 @@ by calling `format-decode', which see. */)
unbind_to (count1, Qnil);
}
- if (!NILP (visit) && current_buffer->modtime.tv_nsec < 0)
+ if (NILP (handler) && !NILP (visit) && current_buffer->modtime.tv_nsec < 0)
{
/* Signal an error if visiting a file that could not be opened. */
report_file_errno ("Opening input file", orig_filename, save_errno);