~ chicken-core (chicken-5) e4ce23f161cfcd234cb15be0fabd75bc53091fc2
commit e4ce23f161cfcd234cb15be0fabd75bc53091fc2
Author: Evan Hanson <evhan@foldling.org>
AuthorDate: Wed May 10 22:06:41 2017 +1200
Commit: Evan Hanson <evhan@foldling.org>
CommitDate: Wed May 10 22:07:10 2017 +1200
Put file-modification-time with file-{access,change}-time
diff --git a/file.scm b/file.scm
index 9d5c0201..4eef581c 100644
--- a/file.scm
+++ b/file.scm
@@ -59,7 +59,6 @@
file-copy
file-execute-access?
file-exists?
- file-modification-time
file-move
file-read-access?
file-type
diff --git a/posix.scm b/posix.scm
index 7d6dc431..96c932a8 100644
--- a/posix.scm
+++ b/posix.scm
@@ -90,18 +90,18 @@
(module chicken.file.posix
(duplicate-fileno fcntl/dupfd fcntl/getfd fcntl/getfl fcntl/setfd
- fcntl/setfl file-access-time file-change-time file-close file-control
- file-creation-mode file-link file-lock file-lock/blocking
- file-mkstemp file-open file-owner file-permissions file-position
- file-read file-select file-size file-stat file-test-lock
- file-truncate file-unlock file-write fileno/stderr fileno/stdin
- fileno/stdout open-input-file* open-output-file* open/append
- open/binary open/creat open/excl open/fsync open/noctty open/nonblock
- open/rdonly open/rdwr open/read open/sync open/text open/trunc
- open/write open/wronly perm/irgrp perm/iroth perm/irusr perm/irwxg
- perm/irwxo perm/irwxu perm/isgid perm/isuid perm/isvtx perm/iwgrp
- perm/iwoth perm/iwusr perm/ixgrp perm/ixoth perm/ixusr port->fileno
- seek/cur seek/end seek/set set-file-position!)
+ fcntl/setfl file-access-time file-change-time file-modification-time
+ file-close file-control file-creation-mode file-link file-lock
+ file-lock/blocking file-mkstemp file-open file-owner file-permissions
+ file-position file-read file-select file-size file-stat
+ file-test-lock file-truncate file-unlock file-write fileno/stderr
+ fileno/stdin fileno/stdout open-input-file* open-output-file*
+ open/append open/binary open/creat open/excl open/fsync open/noctty
+ open/nonblock open/rdonly open/rdwr open/read open/sync open/text
+ open/trunc open/write open/wronly perm/irgrp perm/iroth perm/irusr
+ perm/irwxg perm/irwxo perm/irwxu perm/isgid perm/isuid perm/isvtx
+ perm/iwgrp perm/iwoth perm/iwusr perm/ixgrp perm/ixoth perm/ixusr
+ port->fileno seek/cur seek/end seek/set set-file-position!)
(import chicken chicken.posix))
(module chicken.time.posix
Trap