]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/lread.c (safe_to_load_version, Fload): Fix coding style.
authorEli Zaretskii <eliz@gnu.org>
Fri, 12 Nov 2021 07:47:44 +0000 (09:47 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 12 Nov 2021 07:47:44 +0000 (09:47 +0200)
src/lread.c

index 39cab19fc004f2030de97000ecf40c922ffbab0a..3052bcbd063aa9a1e01813b12604675a72270b11 100644 (file)
@@ -1054,7 +1054,7 @@ safe_to_load_version (Lisp_Object file, int fd)
 
   /* If the file is not regular, then we cannot safely seek it.
      Assume that it is not safe to load as a compiled file.  */
-  if (fstat(fd, &st) == 0 && !S_ISREG (st.st_mode))
+  if (fstat (fd, &st) == 0 && !S_ISREG (st.st_mode))
     return 0;
 
   /* Read the first few bytes from the file, and look for a line
@@ -1418,11 +1418,8 @@ Return t if the file exists and loads successfully.  */)
          struct stat s1, s2;
          int result;
 
-         if (version < 0
-       && ! (version = safe_to_load_version (file, fd)))
-           {
-             error ("File `%s' was not compiled in Emacs", SDATA (found));
-           }
+         if (version < 0 && !(version = safe_to_load_version (file, fd)))
+           error ("File `%s' was not compiled in Emacs", SDATA (found));
 
          compiled = 1;