comparison src/fileio.c @ 689:45401d45581d

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Thu, 04 Jun 1992 23:02:33 +0000
parents bd3068742807
children a8d94735277e
comparison
equal deleted inserted replaced
688:23cbc2c463eb 689:45401d45581d
1928 umask (XINT (mask)); 1928 umask (XINT (mask));
1929 1929
1930 return mask; 1930 return mask;
1931 } 1931 }
1932 1932
1933 #ifdef unix
1934
1935 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
1936 "Tell Unix to finish all pending disk updates.")
1937 ()
1938 {
1939 sync ();
1940 return Qnil;
1941 }
1942
1943 #endif /* unix */
1944
1933 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0, 1945 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
1934 "Return t if file FILE1 is newer than file FILE2.\n\ 1946 "Return t if file FILE1 is newer than file FILE2.\n\
1935 If FILE1 does not exist, the answer is nil;\n\ 1947 If FILE1 does not exist, the answer is nil;\n\
1936 otherwise, if FILE2 does not exist, the answer is t.") 1948 otherwise, if FILE2 does not exist, the answer is t.")
1937 (file1, file2) 1949 (file1, file2)
2873 defsubr (&Sset_buffer_auto_saved); 2885 defsubr (&Sset_buffer_auto_saved);
2874 defsubr (&Srecent_auto_save_p); 2886 defsubr (&Srecent_auto_save_p);
2875 2887
2876 defsubr (&Sread_file_name_internal); 2888 defsubr (&Sread_file_name_internal);
2877 defsubr (&Sread_file_name); 2889 defsubr (&Sread_file_name);
2878 } 2890
2891 defsubr (&Sunix_sync);
2892 }