updating man page

This commit is contained in:
Alex Shinn 2017-08-30 23:03:04 +09:00
parent eeb4beb571
commit 8a0e1d0ea4

View file

@ -6,13 +6,16 @@ chibi-scheme \- a tiny Scheme interpreter
.SH SYNOPSIS .SH SYNOPSIS
.B chibi-scheme .B chibi-scheme
[-qQrRfV] [-qQrRfTV]
[-I [-I
.I path .I path
] ]
[-A [-A
.I path .I path
] ]
[-D
.I feature
]
[-m [-m
.I module .I module
] ]
@ -146,6 +149,11 @@ Strict mode, escalating warnings to fatal errors.
.BI -f .BI -f
Change the reader to case-fold symbols as in R5RS. Change the reader to case-fold symbols as in R5RS.
.TP .TP
.BI -T
Disables tail-call optimization. This can be useful for
debugging in some cases, but also makes it very likely to
overflow the stack.
.TP
.BI -h size[/max_size] .BI -h size[/max_size]
Specifies the initial size of the heap, in bytes, Specifies the initial size of the heap, in bytes,
optionally followed by the maximum size the heap can optionally followed by the maximum size the heap can
@ -167,6 +175,12 @@ Appends
.I path .I path
to the load path list. to the load path list.
.TP .TP
.BI -D feature
Adds
.I feature
to the feature list, useful for cond-expanding different
library code.
.TP
.BI -m module .BI -m module
.TP .TP
.BI -x module .BI -x module
@ -237,7 +251,7 @@ Alex Shinn (alexshinn @ gmail . com)
.SH SEE ALSO .SH SEE ALSO
.PP .PP
More detailed information can be found in the manuale included in More detailed information can be found in the manual included in
doc/chibi.scrbl included in the distribution. doc/chibi.scrbl included in the distribution.
The chibi-scheme home-page: The chibi-scheme home-page: