1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-18 01:22:24 +02:00
guile/module/ice-9
Ian Price b072b8e692 Provide curried version of define*-public.
* module/ice-9/curried-definitions.scm (define*-public): New macro.
2014-07-31 16:05:58 +01:00
..
and-let-star.scm Minor stylistic improvement to 'and-let*' macro. 2013-09-09 22:20:09 -04:00
arrays.scm
binary-ports.scm Implement efficient 'scm_unget_bytes' and 'unget-bytevector'. 2013-04-07 10:14:44 -04:00
boot-9.scm Prevent add-to-load-path from adding duplicate entries 2014-07-30 19:22:04 +01:00
buffered-input.scm
calling.scm
ChangeLog-2008
channel.scm
command-line.scm Bump user-visible copyright years to 2014. 2014-01-12 04:16:39 -05:00
common-list.scm
compile-psyntax.scm Minimize size of embedded syntax objects in psyntax-pp.scm 2012-03-03 18:06:59 -05:00
control.scm Add call/ec' and let/ec'. 2013-04-05 22:54:14 +02:00
curried-definitions.scm Provide curried version of define*-public. 2014-07-31 16:05:58 +01:00
debug.scm
deprecated.scm deprecate generalized vectors in favor of arrays 2013-02-18 16:57:15 +01:00
documentation.scm
eval-string.scm current-language is a parameter in boot-9 2013-01-22 15:38:04 +01:00
eval.scm Print the faulty object upon invalid-keyword errors. 2013-06-04 12:08:02 +02:00
expect.scm
format.scm Micro-optimize (ice-9 format). 2012-08-21 00:36:50 +02:00
ftw.scm Make sure 'ftw' allows directory traversal when running as root. 2014-02-20 22:57:26 +01:00
futures.scm Add call/ec' and let/ec'. 2013-04-05 22:54:14 +02:00
gap-buffer.scm
getopt-long.scm Fix record constructor in getopt-long. 2012-11-08 21:53:36 -05:00
hash-table.scm Add procedures to convert alists into hash tables. 2013-11-18 23:03:38 -05:00
hcons.scm
history.scm
i18n.scm Improve correctness and consistency of 'eval-when' usage. 2014-01-23 10:41:22 -05:00
iconv.scm add read-string and read-string! to (ice-9 rdelim) 2013-01-22 15:15:43 +01:00
lineio.scm
list.scm
local-eval.scm psyntax: custom ellipses using 'with-ellipsis' or R7RS syntax-rules. 2014-01-09 17:41:19 -05:00
ls.scm
mapping.scm deprecate (ice-9 mapping) 2013-02-24 15:11:14 +01:00
match.scm Improve run-time error reporting in (ice-9 match). 2013-08-15 04:07:55 -04:00
match.upstream.scm Improve run-time error reporting in (ice-9 match). 2013-08-15 04:07:55 -04:00
networking.scm
null.scm
occam-channel.scm
optargs.scm more define-syntax-rule usage 2011-09-02 11:36:14 +02:00
poe.scm
poll.scm Improve correctness and consistency of 'eval-when' usage. 2014-01-23 10:41:22 -05:00
popen.scm Improve correctness and consistency of 'eval-when' usage. 2014-01-23 10:41:22 -05:00
posix.scm
pretty-print.scm Fix truncated-print for uniform vectors 2014-02-07 18:04:20 +01:00
psyntax-pp.scm Implement R7RS 'syntax-error'. 2014-01-09 17:43:53 -05:00
psyntax.scm Implement R7RS 'syntax-error'. 2014-01-09 17:43:53 -05:00
q.scm
quasisyntax.scm
r4rs.scm deprecate close-io-port 2012-03-05 23:52:28 +01:00
r5rs.scm
r6rs-libraries.scm Improve correctness and consistency of 'eval-when' usage. 2014-01-23 10:41:22 -05:00
rdelim.scm rdelim: Speed up 'read-string' (aka. 'get-string-all'.) 2014-05-28 23:00:20 +02:00
README
receive.scm more define-syntax-rule usage 2011-09-02 11:36:14 +02:00
regex.scm In fold-matches, set regexp/notbol unless matching string start. 2012-09-26 23:46:05 +02:00
runq.scm
rw.scm
safe-r5rs.scm
safe.scm
save-stack.scm
scm-style-repl.scm
serialize.scm
session.scm better procedure-arguments for interpreted procs with opt, rest, kwargs 2012-07-06 12:19:12 +02:00
slib.scm fix ice-9/slib 2013-01-10 17:30:38 +01:00
stack-catch.scm
streams.scm
string-fun.scm
syncase.scm
test.scm Placate a number of `syntax-check' verifications. 2012-01-05 23:38:10 +01:00
threads.scm Update `par-map' to use nested futures. 2012-11-21 23:33:30 +01:00
time.scm
top-repl.scm current-language is a parameter in boot-9 2013-01-22 15:38:04 +01:00
vlist.scm vlist: Remove Texinfo markup from docstrings. 2012-11-27 23:02:15 +01:00
weak-vector.scm Add weak-vector-length, weak-vector-ref, weak-vector-set! 2014-02-07 12:25:05 +01:00

This directory contains various bits of Guile Scheme code.
Most of these are packaged as modules, with foo.scm implementing
the module `(ice-9 foo)'.

The non-module files are:

boot-9.scm	-- loaded on guile startup
		   implements module system + lots of other stuff
arrays.scm	-- loaded by boot-9.scm
networking.scm	-- loaded by boot-9.scm
posix.scm	-- loaded by boot-9.scm
r4rs.scm	-- loaded by boot-9.scm