diff options
| author | Karl Heuer | 1995-05-23 00:11:46 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-23 00:11:46 +0000 |
| commit | b50536bb94f7c795863217c98ee2203a3f940564 (patch) | |
| tree | b9e980a26bb33095ead9a3b651a70a568b3baf86 /src | |
| parent | 8624670824c88f5f4fa2d0de9ea4fea4a945a08f (diff) | |
| download | emacs-b50536bb94f7c795863217c98ee2203a3f940564.tar.gz emacs-b50536bb94f7c795863217c98ee2203a3f940564.zip | |
(Fvisited_file_modtime): Cast arg to long_to_cons.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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\ | |||
| 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, |