diff src/lread.c @ 55150:f78c7b75f616

lread.c (init_lread): Fixing typo HAVE_CARBON test logic
author Steven Tamm <steventamm@mac.com>
date Mon, 26 Apr 2004 18:44:22 +0000
parents 2b5be9da52c2
children e69f42e233dc
line wrap: on
line diff
--- a/src/lread.c	Mon Apr 26 11:12:27 2004 +0000
+++ b/src/lread.c	Mon Apr 26 18:44:22 2004 +0000
@@ -3676,7 +3676,7 @@
     }
 #endif
 
-#if (!(defined(WINDOWSNT) && (defined(HAVE_CARBON)) ))
+#if (!(defined(WINDOWSNT) || (defined(HAVE_CARBON))))
   /* When Emacs is invoked over network shares on NT, PATH_LOADSEARCH is
      almost never correct, thereby causing a warning to be printed out that
      confuses users.  Since PATH_LOADSEARCH is always overridden by the
@@ -3706,7 +3706,7 @@
 	    }
 	}
     }
-#endif /* WINDOWSNT && HAVE_CARBON*/
+#endif /* !(WINDOWSNT || HAVE_CARBON) */
 
   /* If the EMACSLOADPATH environment variable is set, use its value.
      This doesn't apply if we're dumping.  */