mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
Disabling 2010 epoch by default.
This commit is contained in:
parent
390308fe0b
commit
447eb20a07
1 changed files with 5 additions and 6 deletions
|
@ -205,11 +205,10 @@
|
||||||
/* apply to stdin/stdout/stderr. */
|
/* apply to stdin/stdout/stderr. */
|
||||||
/* #define SEXP_USE_AUTOCLOSE_PORTS 0 */
|
/* #define SEXP_USE_AUTOCLOSE_PORTS 0 */
|
||||||
|
|
||||||
/* uncomment this to use the normal 1970 unix epoch */
|
/* uncomment this to use a 2010/01/01 epoch */
|
||||||
/* By default chibi uses an datetime epoch starting at */
|
/* By default chibi uses the normal 1970 unix epoch in accordance */
|
||||||
/* 2010/01/01 00:00:00 in order to be able to represent */
|
/* with R7RS, but this can represent more times as fixnums. */
|
||||||
/* more common times as fixnums. */
|
/* #define SEXP_USE_2010_EPOCH 1 */
|
||||||
/* #define SEXP_USE_2010_EPOCH 0 */
|
|
||||||
|
|
||||||
/* uncomment this to disable stack overflow checks */
|
/* uncomment this to disable stack overflow checks */
|
||||||
/* By default stacks are fairly small, so it's good to leave */
|
/* By default stacks are fairly small, so it's good to leave */
|
||||||
|
@ -617,7 +616,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SEXP_USE_2010_EPOCH
|
#ifndef SEXP_USE_2010_EPOCH
|
||||||
#define SEXP_USE_2010_EPOCH ! SEXP_USE_NO_FEATURES
|
#define SEXP_USE_2010_EPOCH 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SEXP_EPOCH_OFFSET
|
#ifndef SEXP_EPOCH_OFFSET
|
||||||
|
|
Loading…
Add table
Reference in a new issue