]> git.eshelyaron.com Git - emacs.git/commitdiff
[__NetBSD__]: Don't define `unix'.
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Mon, 4 Dec 2006 08:16:47 +0000 (08:16 +0000)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Mon, 4 Dec 2006 08:16:47 +0000 (08:16 +0000)
(Funix_sync, syms_of_fileio): Use `#ifdef HAVE_SYNC' instead of
`#ifdef unix'.

src/fileio.c

index d63828ba9745236483984e592005b1393f00e465..50c5a40e6b2f2ab7841261571c6e35ab6d397f16 100644 (file)
@@ -3541,11 +3541,7 @@ Use the current time if TIME is nil.  TIME is in the format of
   return Qt;
 }
 \f
-#ifdef __NetBSD__
-#define unix 42
-#endif
-
-#ifdef unix
+#ifdef HAVE_SYNC
 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
        doc: /* Tell Unix to finish all pending disk updates.  */)
      ()
@@ -3554,7 +3550,7 @@ DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
   return Qnil;
 }
 
-#endif /* unix */
+#endif /* HAVE_SYNC */
 
 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
        doc: /* Return t if file FILE1 is newer than file FILE2.
@@ -6793,7 +6789,7 @@ A non-nil value may result in data loss!  */);
   defsubr (&Sread_file_name);
   defsubr (&Snext_read_file_uses_dialog_p);
 
-#ifdef unix
+#ifdef HAVE_SYNC
   defsubr (&Sunix_sync);
 #endif
 }