mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 05:39:18 +02:00
Merge branch 'master' of github.com:ashinn/chibi-scheme
This commit is contained in:
commit
1d21a90275
3 changed files with 8 additions and 5 deletions
5
Makefile
5
Makefile
|
@ -50,8 +50,9 @@ MODULE_DOCS := app ast base64 bytevector config crypto/md5 crypto/rsa \
|
||||||
crypto/sha2 diff disasm doc edit-distance equiv filesystem generic \
|
crypto/sha2 diff disasm doc edit-distance equiv filesystem generic \
|
||||||
heap-stats io iset/base iset/constructors iset/iterators json loop \
|
heap-stats io iset/base iset/constructors iset/iterators json loop \
|
||||||
match math/prime memoize mime modules net net/http-server net/servlet \
|
match math/prime memoize mime modules net net/http-server net/servlet \
|
||||||
parse pathname process repl scribble string stty sxml system temp-file \
|
optional parse pathname process repl scribble string stty sxml system \
|
||||||
test time trace type-inference uri weak monad/environment crypto/sha2
|
temp-file test time trace type-inference uri weak monad/environment \
|
||||||
|
crypto/sha2
|
||||||
|
|
||||||
IMAGE_FILES = lib/chibi.img lib/red.img lib/snow.img
|
IMAGE_FILES = lib/chibi.img lib/red.img lib/snow.img
|
||||||
|
|
||||||
|
|
|
@ -1272,7 +1272,7 @@ snow-fort):
|
||||||
\item{\hyperlink["http://srfi.schemers.org/srfi-160/srfi-160.html"]{(srfi 160) - homogeneous numeric vector libraries}}
|
\item{\hyperlink["http://srfi.schemers.org/srfi-160/srfi-160.html"]{(srfi 160) - homogeneous numeric vector libraries}}
|
||||||
\item{\hyperlink["http://srfi.schemers.org/srfi-165/srfi-165.html"]{(srfi 165) - the environment Monad}}
|
\item{\hyperlink["http://srfi.schemers.org/srfi-165/srfi-165.html"]{(srfi 165) - the environment Monad}}
|
||||||
\item{\hyperlink["http://srfi.schemers.org/srfi-166/srfi-166.html"]{(srfi 166) - monadic formatting}}
|
\item{\hyperlink["http://srfi.schemers.org/srfi-166/srfi-166.html"]{(srfi 166) - monadic formatting}}
|
||||||
\item{\hyperlink["http://srfi.schemers.org/srfi-166/srfi-188.html"]{(srfi 188) - splicing binding constructs for syntactic keywords}}
|
\item{\hyperlink["http://srfi.schemers.org/srfi-188/srfi-188.html"]{(srfi 188) - splicing binding constructs for syntactic keywords}}
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -1343,6 +1343,8 @@ namespace.
|
||||||
|
|
||||||
\item{\hyperlink["lib/chibi/net/servlet.html"]{(chibi net servlet) - HTTP servlets for http-server or CGI}}
|
\item{\hyperlink["lib/chibi/net/servlet.html"]{(chibi net servlet) - HTTP servlets for http-server or CGI}}
|
||||||
|
|
||||||
|
\item{\hyperlink["lib/chibi/optional.html"]{(chibi optional) - Syntax to support optional and named keyword arguments}}
|
||||||
|
|
||||||
\item{\hyperlink["lib/chibi/parse.html"]{(chibi parse) - Parser combinators with convenient syntax}}
|
\item{\hyperlink["lib/chibi/parse.html"]{(chibi parse) - Parser combinators with convenient syntax}}
|
||||||
|
|
||||||
\item{\hyperlink["lib/chibi/pathname.html"]{(chibi pathname) - Utilities to decompose and manipulate pathnames}}
|
\item{\hyperlink["lib/chibi/pathname.html"]{(chibi pathname) - Utilities to decompose and manipulate pathnames}}
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
(show-trace-result cell args res)
|
(show-trace-result cell args res)
|
||||||
res))))
|
res))))
|
||||||
|
|
||||||
;;> Write a trace of all calls to the procedure \var{proc} to
|
;;> Write a trace of all calls to the procedure \var{id} to
|
||||||
;;> \scheme{(current-error-port)}.
|
;;> \scheme{(current-error-port)}.
|
||||||
|
|
||||||
(define-syntax trace
|
(define-syntax trace
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
((trace id)
|
((trace id)
|
||||||
(trace-cell (env-cell (interaction-environment) 'id)))))
|
(trace-cell (env-cell (interaction-environment) 'id)))))
|
||||||
|
|
||||||
;;> Remove any active traces on the procedure \var{proc}.
|
;;> Remove any active traces on the procedure \var{id}.
|
||||||
|
|
||||||
(define-syntax untrace
|
(define-syntax untrace
|
||||||
(syntax-rules ()
|
(syntax-rules ()
|
||||||
|
|
Loading…
Add table
Reference in a new issue