]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fload): Fix #ifdef for pcc.
authorDave Love <fx@gnu.org>
Fri, 17 Nov 2000 16:11:26 +0000 (16:11 +0000)
committerDave Love <fx@gnu.org>
Fri, 17 Nov 2000 16:11:26 +0000 (16:11 +0000)
src/ChangeLog
src/lread.c

index 236433bba20c18badbff669d0f56b52d7e9828d6..755f8755d283da62dc89b74e440a98250023e89d 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-17  Dave Love  <fx@gnu.org>
+
+       * lread.c (Fload): Fix #ifdef for pcc.
+
 2000-11-17  Gerd Moellmann  <gerd@gnu.org>
 
        * xdisp.c (pos_visible_p): Compute the default character height
index 14200f800825ae6d272626136642d94cce059cbb..55663e09b254c51c00fdf611c838f0b827264c20 100644 (file)
@@ -756,9 +756,9 @@ Return t if file exists.")
 
          compiled = 1;
 
-    #ifdef DOS_NT
+#ifdef DOS_NT
          fmode = "rb";
-    #endif /* DOS_NT */
+#endif /* DOS_NT */
          stat ((char *)XSTRING (found)->data, &s1);
          XSTRING (found)->data[STRING_BYTES (XSTRING (found)) - 1] = 0;
          result = stat ((char *)XSTRING (found)->data, &s2);