From b50536bb94f7c795863217c98ee2203a3f940564 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Tue, 23 May 1995 00:11:46 +0000 Subject: [PATCH] (Fvisited_file_modtime): Cast arg to long_to_cons. --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 9222f8442a0..52d2f53ac61 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3653,7 +3653,7 @@ The value is a list of the form (HIGH . LOW), like the time values\n\ that `file-attributes' returns.") () { - return long_to_cons (current_buffer->modtime); + return long_to_cons ((unsigned long) current_buffer->modtime); } DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, -- 2.39.2