comparison src/fileio.c @ 11878:86257fdd585c

(Fvisited_file_modtime): Cast arg to long_to_cons.
author Karl Heuer <kwzh@gnu.org>
date Tue, 23 May 1995 00:11:46 +0000
parents 6945dfa38123
children 54271828fd4e
comparison
equal deleted inserted replaced
11877:1c98f33055fa 11878:86257fdd585c
3651 "Return the current buffer's recorded visited file modification time.\n\ 3651 "Return the current buffer's recorded visited file modification time.\n\
3652 The value is a list of the form (HIGH . LOW), like the time values\n\ 3652 The value is a list of the form (HIGH . LOW), like the time values\n\
3653 that `file-attributes' returns.") 3653 that `file-attributes' returns.")
3654 () 3654 ()
3655 { 3655 {
3656 return long_to_cons (current_buffer->modtime); 3656 return long_to_cons ((unsigned long) current_buffer->modtime);
3657 } 3657 }
3658 3658
3659 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, 3659 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
3660 Sset_visited_file_modtime, 0, 1, 0, 3660 Sset_visited_file_modtime, 0, 1, 0,
3661 "Update buffer's recorded modification time from the visited file's time.\n\ 3661 "Update buffer's recorded modification time from the visited file's time.\n\