]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve insert-file-contents on non-regular files
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Feb 2023 01:52:46 +0000 (17:52 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 13 Feb 2023 20:32:58 +0000 (12:32 -0800)
* src/fileio.c (Finsert_file_contents):
If the file is not a regular file, check REPLACE and VISIT
before doing further syscalls that won’t matter in this case.

src/fileio.c

index 64337abdaefa6d753cba0a0c4f4a2b2354dbdf2d..751b8ec573c6663ece8f016f4fe9e9893634e322 100644 (file)
@@ -4022,7 +4022,6 @@ by calling `format-decode', which see.  */)
   if (!S_ISREG (st.st_mode))
     {
       regular = false;
-      seekable = lseek (fd, 0, SEEK_CUR) < 0;
 
       if (! NILP (visit))
         {
@@ -4030,14 +4029,15 @@ by calling `format-decode', which see.  */)
          goto notfound;
         }
 
+      if (!NILP (replace))
+       xsignal2 (Qfile_error,
+                 build_string ("not a regular file"), orig_filename);
+
+      seekable = lseek (fd, 0, SEEK_CUR) < 0;
       if (!NILP (beg) && !seekable)
        xsignal2 (Qfile_error,
                  build_string ("cannot use a start position in a non-seekable file/device"),
                  orig_filename);
-
-      if (!NILP (replace))
-       xsignal2 (Qfile_error,
-                 build_string ("not a regular file"), orig_filename);
     }
 
   if (end_offset < 0)