(SRFI-19): Rewrite, adding descriptions of all
[bpt/guile.git] / doc / ref / ChangeLog
CommitLineData
9f5e5b56
KR
12003-09-13 Kevin Ryde <user42@zip.com.au>
2
3 * posix.texi (File System): In stat:dev and stat:mode, clarify that
4 both are numbers.
5
6 * posix.texi (Network Address Conversion): Under IPv4, describe
7 numeric representation in Guile, add INADDR_LOOPBACK and
8 INADDR_BROADCAST, add commented-out INADDR_NONE.
9
10 * scheme-compound.texi (Append/Reverse): Merge reverse and reverse!,
11 describe newtail parameter for reverse!, remove confusing caveat about
12 head becoming tail for reverse!.
13
14 * scheme-io.texi (Reading): In port-column, port-line,
15 set-port-column! and set-port-line!, port parameter must be given,
16 there's no default to current input.
17
18 * scheme-io.texi (Reading): Add scm_c_read.
19 (Writing): Add scm_c_write.
20
21 * srfi-modules.texi (SRFI-1 Constructors): Add list-copy.
22
53bb8782
KR
232003-09-03 Kevin Ryde <user42@zip.com.au>
24
25 * scheme-data.texi (Keyword Primitives): Add examples to
26 make-keyword-from-dash-symbol and keyword-dash-symbol. Add
27 scm_c_make_keyword.
28
29 * scheme-data.texi (Symbol Primitives): In gensym, cross reference
30 uninterned symbols, use @w{} on " g" prefix to avoid any chance of a
31 line break obscuring it.
32
0f008a15
KR
332003-08-30 Kevin Ryde <user42@zip.com.au>
34
35 * data-rep.texi (Remembering During Operations): Note
36 scm_remember_upto_here_1 applies only to C automatic variables.
37
38 * guile.texi: Move @contents to usual place after title page, and
39 after first menu since that looks nice in html.
40
41 * posix.texi (Ports and File Descriptors): In pipe PIPE_BUF, use
42 @defvar, reword a bit for clarity, cross reference glibc.
43
44 * posix.texi (Network Sockets and Communication): In socket, use
45 @defvar for protocol variables, cross reference for getprotobyname,
46 note it's usually connect and accept that establishes communication.
47
48 * posix.texi (Network Sockets and Communication): In socketpair,
49 clarify the return is a pair with ports in car and cdr, note
50 connection is full duplex, refer to socket for parameters, refer to
51 PF_UNIX rather than AF_UNIX.
52
53 * scheme-compound.texi (Append/Reverse): Merge append and append!,
54 shown parameters as lst1 ... lstN, describe list argument for
55 scm_append and scm_append_x and note that it's unmodified.
56
57 * scheme-compound.texi (Hash Table Reference): Add hashx- case
58 insensitive string example, add cross references to symbol-hash,
59 string-hash, string-hash-ci, and char-set-hash.
60
61 * scheme-control.texi (Multiple Values): In values, show args as "arg1
62 ... argN". In scm_values, note args is a list and returned object
63 shares structure with it.
64
65 * scheme-control.texi (Catch): Add scm_internal_catch.
66 (Lazy Catch): Add scm_internal_lazy_catch.
67
68 * scheme-data.texi (Arithmetic): Use a table for scheme to C libm
69 equivalences, add C99 trunc.
70
71 * scheme-procedures.texi (Lambda): Note ". rest" list argument is
72 always newly created.
73
74 * srfi-modules.texi (SRFI-1 Association Lists): In alist-delete and
75 alist-delete!, note argument order for the equality calls per SRFI-1
76 spec.
77
b71d6c47
KR
782003-08-26 Kevin Ryde <user42@zip.com.au>
79
80 * scheme-data.texi (Scientific): Add two-argument atan.
81
412d82c4
KR
82 * tools.texi (How guile-snarf works): Need @@ for texinfo in example.
83
842003-08-17 Kevin Ryde <user42@zip.com.au>
85
86 * scheme-compound.texi (Hash Table Reference): Collect up groups of
87 functions to avoid duplication. Revise notes on hashx functions and
88 on vector implementation. In make-hash-table, size is now optional.
89 Add hash-map and hash-for-each.
90
78c2d49c
KR
912003-08-14 Kevin Ryde <user42@zip.com.au>
92
93 * scheme-control.texi (while do): Update `while' for code rewrite, in
94 particular describe break and continue.
95
ddff957c
KR
962003-08-09 Kevin Ryde <user42@zip.com.au>
97
98 * scheme-memory.texi (Memory Blocks): Add index entries for deprecated
99 scm_must_malloc and friends.
100
8e5b4b9e
KR
1012003-07-29 Kevin Ryde <user42@zip.com.au>
102
103 * scheme-compound.texi (List Constructors): Remove scm_cons_star,
104 since it's not very helpful.
105
106 * scheme-utility.texi (Property Primitives): In primitive-property-ref,
107 note parameters to not-found-proc, use hyphens rather than underscores
108 for that parameter name.
109 In primitive-property-set!, VAL is the value parameter not CODE.
110
48513dcd
KR
1112003-07-24 Kevin Ryde <user42@zip.com.au>
112
113 * scheme-control.texi (Dynamic Wind): Untabify.
114 (Multiple Values): Use @result.
115 Reported by Stephen Compall <s11@member.fsf.org>.
116
117 * scheme-control.texi (Continuations): Rewrite with more detail.
118
119 * scheme-scheduling.texi (System asyncs): Add index entries for C
120 functions.
121
122 * scheme-scheduling.texi (Parallel Forms): New section.
123
44e874b5
KR
1242003-07-18 Kevin Ryde <user42@zip.com.au>
125
126 * scheme-compound.texi (List Constructors): In list, use "elem1
127 ... elemN". Add scm_list_1, scm_list_2, scm_list_3, scm_list_4,
128 scm_list_5, scm_list_n. Remove scm_list, since it's a no-op.
63708c3b 129 * guile.texi (nicode): New macro.
44e874b5 130
67081a34
KR
131 * scheme-evaluation.texi (Fly Evaluation): In apply, reword for
132 clarity, drop the "append" example. Add scm_apply, scm_apply_0,
133 scm_apply_1, scm_apply_2, scm_apply_3.
134 Add scm_call_0, scm_call_1, scm_call_2, scm_call_3.
135 In apply:nconc2last, move down after "apply", reword for clarity, note
136 correspondence to apply params.
137
0a52dd47
KR
138 * srfi-modules.texi (SRFI-0): Add cond-expand index entry.
139 (SRFI-9): Add define-record-type index entry.
140
0b7d5c6c
KR
1412003-07-12 Kevin Ryde <user42@zip.com.au>
142
143 * srfi-modules.texi (SRFI-1 Constructors): In iota, reword a bit for
144 clarity and add a couple of examples.
145
b58c85ce
KR
1462003-07-10 Kevin Ryde <user42@zip.com.au>
147
148 * deprecated.texi (Deprecated): Add scm_remember.
149
86440448
KR
1502003-06-22 Kevin Ryde <user42@zip.com.au>
151
152 * data-rep.texi (Remembering During Operations): Refer to all "Guile
153 library functions" as provoking gc.
154
67116e5e
KR
1552003-06-19 Kevin Ryde <user42@zip.com.au>
156
157 * scheme-io.texi (File Ports): Describe call-with-input-file and
158 call-with-output-file together. Describe with-input-from-file,
159 with-output-to-file and with-error-to-file together, and add that they
160 use dynamic-wind on the current port setting and keep the port open in
161 support of captured continuations.
162 (Closing): Describe close-input-port and close-output-port together,
163 tweak the wording slightly.
164
df7986ca
KR
1652003-06-14 Kevin Ryde <user42@zip.com.au>
166
67116e5e
KR
167 * data-rep.texi (Vector Data): For SCM_VECTOR_BASE, SCM_STRING_CHARS
168 and SCM_SYMBOL_CHARS, cross reference "Remembering During Operations".
169
df7986ca
KR
170 * scheme-data.texi (Arithmetic): round is to nearest even.
171
b72cfff1
KR
1722003-06-12 Kevin Ryde <user42@zip.com.au>
173
174 * data-rep.texi (Remembering During Operations): New section.
175
176 * scheme-data.texi (Primitive Numerics): Add atan2, pow, asinh, acosh
177 and atanh to scheme<->C table. Note asinh, acosh and atanh are C99,
178 and scm_asinh, scm_acosh and scm_atanh are equivalents. Cross ref
179 glibc "Mathematics". Reword this end part for clarity.
180
181 * scheme-memory.texi (Memory Blocks): Use {} around types for
182 @deftypefn, for correct name in indexes.
183 * scheme-utility.texi (C Hooks): Ditto.
184 * gh.texi (Scheme to C): Ditto.
185
186 * gh.texi (Scheme to C): In gh_scm2newstr, lenp is size_t* not int*.
187 This changed in guile 1.6, the docs weren't updated.
188
067067e4
MV
1892003-06-09 Marius Vollmer <mvo@zagadka.de>
190
191 From Mike Gran <spikegran@earthlink.net>. Thanks!
192
193 * preface.texi: Minor punctuation mistakes. Hyphens should link
194 compound adjectives. Commas should be placed after a "therefore"
195 that begins a sentence. Commas should not be used to separate a
196 list of only 2 dependent clauses.
197
ae0bdfe0
KR
1982003-06-07 Kevin Ryde <user42@zip.com.au>
199
200 * scheme-data.texi (Arithmetic): Cross reference glibc floor and ceil.
201
e418bd7c
KR
2022003-06-05 Kevin Ryde <user42@zip.com.au>
203
204 * posix.texi (File System): stat:rdev and stat:blocks can return #f,
205 stat:blksize returns a sensible size if the field is not available.
206
207 * scheme-compound.texi (Array Mapping): Reword for clarity, and in
208 particular have the same parameter names in the text and prototypes.
209
210 * scheme-evaluation.texi (Delayed Evaluation): Add delay, reword
211 promise? and force a bit, describe recursive forcing of a promise by
212 its own code.
213
dc07c1a1
KR
214 * scheme-io.texi (Ports): Add notes on garbage collection, and on
215 explicitly closing file ports.
216 (File Ports): Cross reference Ports node on explicit closing.
217
218 * posix.texi (Network Sockets and Communication): Cross reference
219 Ports node on explicit closing.
220
e418bd7c
KR
221 * scheme-scheduling.texi (Futures): New section.
222
223 * srfi-modules.texi (SRFI-13 Miscellaneous): In string-replace, note
224 that start1 and end1 optional is a Guile extension.
225
c47e2599
KR
2262003-05-30 Kevin Ryde <user42@zip.com.au>
227
228 * deprecated.texi: Add substring-move-left! and substring-move-right!.
229
230 * scheme-io.texi (Default Ports): Remove duplicate descriptions of
231 set-current-output-port and set-current-error-port.
232
42ad901d
DH
2332003-05-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
234
235 * scheme-compound.texi: Clarified that vectors need to be quoted.
236
5e25cd39
KR
2372003-05-26 Kevin Ryde <user42@zip.com.au>
238
239 * posix.texi (Locales): Clarify setlocale a bit, list all categories,
240 cross reference to libc.
241
f9c3ffce
KR
2422003-05-24 Kevin Ryde <user42@zip.com.au>
243
244 * scheme-procedures.texi: Add index entries lambda, optargs, syncase.
245
246 * scsh.texi (The Scheme shell (scsh)): Add index entries.
247
d97f609a
KR
2482003-05-22 Kevin Ryde <user42@zip.com.au>
249
250 * srfi-modules.texi (SRFI-2): Rewrite and-let*, describing plain
251 expression clauses and improving the examples.
252
1ee1076e
MV
2532003-05-17 Marius Vollmer <mvo@zagadka.de>
254
255 * posix.texi (socket): Use PF_ instead of AF_ prefix.
256
f6b77266
KR
2572003-05-16 Kevin Ryde <user42@zip.com.au>
258
259 * guile.texi: Use @copying, show copyright and permissions at start of
260 info and html.
261
262 * srfi-modules.texi (SRFI-1 Deleting): Rewrite delete and
263 delete-duplicates, adding behaviour details specified by srfi-1.
264
332a621b
KR
2652003-05-12 Kevin Ryde <user42@zip.com.au>
266
267 * preface.texi (Guile License): Refer to COPYING.LIB.
268
269 * repl-modules.texi (Loading Readline Support, Readline Options):
270 Index entries for readline functions.
271
272 * scheme-control.texi (Handling Errors): Fix regexp error key, should
273 be `regular-expression-syntax'.
274
275 * scheme-data.texi (Complex): Show z argument in prototypes.
276
9cb16d5d
KR
2772003-05-10 Kevin Ryde <user42@zip.com.au>
278
d25e96a4
KR
279 * scheme-data.texi (Reals and Rationals): Fix typo @result{#f}, and
280 put @result outside @code.
281
282 * scheme-data.texi (Bitwise Operations): Note negatives are treated as
283 infinite precision twos complement. Revise `ash' to emphasise this
284 for right shifts of negatives. Describe integer-length behaviour on
285 negatives. Add `...' to logand, logior, logxor since they take
286 multiple parameters.
056f9269 287 * guile.texi (m): New macro.
d25e96a4 288
9cb16d5d
KR
289 * scheme-control.texi (Handling Errors): Revise C support section to
290 get index entries, and clarify parameters. Remove scm_regex_error, no
291 longer exists and wasn't available to applications.
292
d25e96a4
KR
293 * scheme-control.texi (Handling Errors): Index entries for error keys.
294
80dd1cb0 2952003-05-08 Kevin Ryde <user42@zip.com.au>
49584bf2 296
0c935fce
KR
297 * scheme-data.texi (Bitwise Operations): Fix lognot to ones-complement.
298
49584bf2
KR
299 * slib.texi (JACAL): Fix @ref title.
300 Add index entries, use @file and @code variously.
301
d963e93f
KR
3022003-05-06 Kevin Ryde <user42@zip.com.au>
303
304 * scheme-scheduling.texi (C level thread interface): Use @deftypefn
305 not @deftypefun, to get function names (not types) indexed.
306
307 * scheme-options.texi (Build Config): Add index entries for
308 %guile-build-info keys.
309
272f8235
KR
3102003-05-04 Kevin Ryde <user42@zip.com.au>
311
312 * scheme-data.texi (Integer Operations): Describe how quotient,
313 remainder and modulo round their results.
314
44357057
KR
315 * scheme-io.texi (Reading): In read-char and peek-char, fix typos "?"
316 in @rnindex. In port-column, use @: after i.e.
a7b0aa50
KR
317 (Writing): In get-print-state, two spaces after full stop. Add write,
318 revise display.
44357057 319
272f8235
KR
320 * srfi-modules.texi (SRFI-1 Length Append etc): Add count.
321 (SRFI-1 Fold and Map): In reduce, fix typo "... variant of fold", add
322 "f" to fold call shown. In reduce-right, use @code on "reduce".
323
324 * data-rep.texi, gh.texi: Add spaces after some @defun names.
325 * posix.texi (Processes): Fix typo "hhhh".
326
2ce02471
NJ
3272003-05-01 Neil Jerram <neil@ossau.uklinux.net>
328
329 * posix.texi: Add index entries for many variables and functions,
330 either using @defvar/@deffn or @vindex/@pindex. (Patch supplied
331 by Kevin Ryde.)
332
1a61d41b
MV
3332003-04-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
334
335 * posix.texi (scm_c_port_for_each): Added.
336
a95dbade
NJ
3372003-04-26 Neil Jerram <neil@ossau.uklinux.net>
338
d513f5c6
NJ
339 * scheme-data.texi (Symbol Primitives): Document scm_str2symbol
340 and scm_mem2symbol.
341
63bf8015
NJ
342 * data-rep.texi (Describing a New Type): Clarify that
343 scm_make_smob_type_mfpe is deprecated. (Thanks to
344 tomas@fabula.de.)
345
a95dbade
NJ
346 * scheme-control.texi (Handling Errors): Remove scm_sysmissing,
347 long since gone from libguile. (Thanks to Kevin Ryde.)
348
fc87c27a
MV
3492003-04-05 Marius Vollmer <mvo@zagadka.de>
350
351 * preface.texi: Reflect change to LGPL.
352
08c7666d
RB
3532003-03-27 Rob Browning <rlb@defaultvalue.org>
354
355 * scheme-io.texi (Reading): clarify character ordering in port for
356 unread-string.
357
dbd6bd29
RB
3582003-03-07 Rob Browning <rlb@defaultvalue.org>
359
360 * guile.texi: change MANUAL_EDITION to MANUAL-EDITION so we don't
361 choke TeX (thanks to Dale P. Smith).
362
363 * preface.texi: change MANUAL_EDITION to MANUAL-EDITION so we
364 don't choke TeX (thanks to Dale P. Smith).
365
1767a0e0
MD
3662003-01-02 Mikael Djurfeldt <djurfeldt@nada.kth.se>
367
368 * scheme-scheduling.texi (Low level thread primitives): Fixed typo
369 in broadcast-condition-variable.
370
b2cbe8d8
RB
3712002-12-08 Rob Browning <rlb@defaultvalue.org>
372
373 * scheme-options.texi (Build Config): add effective-version docs.
374
7403e409
NJ
3752002-11-17 Neil Jerram <neil@ossau.uklinux.net>
376
82512be0
NJ
377 Applied patches from Stephen Compall as follows. (Thanks!)
378
379 2002-11-06 Stephen Compall <rushing@sigecom.net>
380
381 * posix.texi: Changed quotes to match Texinfo expectations.
382
383 Added references to the glibc manual.
384
385 Used proper Texinfo text marking for many keywords, such as @code,
386 @samp, @env, @var.
387
388 Fixed argument metasyntactic variable references in
389 file-manipulation section so the usage in the descriptions matches
390 the usage in the declarations.
7403e409
NJ
391
392 2002-10-26 Stephen Compall <rushing@sigecom.net>
393
394 * scheme-data.texi: Addition and change of many Texinfo tags,
395 particularly usage of @var and @samp, as well as reformatting of
396 some lists into tables and usage of @result.
397
398 Notes about some things I didn't understand, as well as a
399 missing section on non-control characters.
400
d703aba5
GH
4012002-10-27 Gary Houston <ghouston@arglist.com>
402
403 * scheme-modules.texi (Environments): only available when
404 (ice-9 r5rs) is used.
405 * scsh.texi (The Scheme shell (scsh)): current url is www.scsh.net.
406
a48c626f
MV
4072002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
408
409 * scheme-scheduling.texi: Updated mutex and condition varable
410 functions.
411
9a69a50e
NJ
4122002-10-27 Neil Jerram <neil@ossau.uklinux.net>
413
414 * debugging.texi (Debugging Features): Rewritten.
415
0a50eeaa
NJ
4162002-10-19 Neil Jerram <neil@ossau.uklinux.net>
417
418 * new-docstrings.texi, scheme-binding.texi, scheme-io.texi,
419 scheme-scheduling.texi, posix.texi: Automatic docstring updates.
420
e7d58d26
MV
4212002-10-14 Marius Vollmer <mvo@zagadka.ping.de>
422
423 * intro.texi (Whirlwind Tour): Added pointer to examples
424 directory.
425
acfa1f52
MV
4262002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
427
428 * scheme-scheduling.texi (System Asyncs): Updated.
429
66894177
MV
4302002-10-07 Marius Vollmer <mvo@zagadka.ping.de>
431
432 * scheme-scheduling.texi (Asyncs): Updated.
433 * posix.texi (sigaction): Updated.
434
66add4eb
NJ
4352002-10-03 Neil Jerram <neil@ossau.uklinux.net>
436
437 * posix.texi (Processes), scheme-options.texi (Common Feature
438 Symbols): Refer to provided? rather than deprecated feature?.
439
ba20db9b
MV
4402002-10-03 Marius Vollmer <mvo@zagadka.ping.de>
441
442 * tools.texi (How guile-snarf works): Updated.
443 (Writing your own snarfing macros): New.
444
c936bede
NJ
4452002-09-25 Neil Jerram <neil@ossau.uklinux.net>
446
447 * scheme-debug.texi (Debugging): Make sections into nodes.
448 (Debugging Options): Node removed.
449
450 * scheme-options.texi (Feature Tracking): Brought forward before
451 sections on options.
452 (Runtime Options): New section, to group options-related nodes.
453
4542002-09-24 Neil Jerram <neil@ossau.uklinux.net>
455
456 * scheme-options.texi (Options and Config): Chapter name changed,
457 and intro text improved.
458 (Install Config): Brought forward, and renamed Build
459 Configuration.
460
461 The following doc updates are from Ian Sheldon - thanks!
462
463 * scheme-data.texi (Appending Strings, Regexp Functions, Match
464 Structures): Add examples.
465 (Regular Expressions): Add instruction to use (ice-9 regex)
466 module.
467
468 * slib.texi (SLIB): Remove duplicate `the'.
469
4702002-09-22 Neil Jerram <neil@ossau.uklinux.net>
471
472 * scheme-options.texi (General option interface): Mention
473 eval-options-interface and debug-options-interface.
474
475 * scheme-debug.texi (Debugging): New node describing source
476 properties.
477
c15030be
NJ
4782002-09-19 Neil Jerram <neil@ossau.uklinux.net>
479
480 * scheme-utility.texi (Hook Reference): Improvements to hook docs.
481 Thanks to Thien-Thi Nguyen for the patches.
482
2047e5d7
MV
4832002-09-16 Marius Vollmer <mvo@zagadka.ping.de>
484
485 * scheme-data.texi (Symbol Props): It's "set-symbol-property!",
486 not "set-symbol-property". Thanks to Pieter Pareit!
487
6f663ebc
MV
4882002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
489
490 * scheme-data.texi: Tell them to use 'provided?' instead of
491 '*feaures*'.
492
af31a24f
MV
4932002-09-09 Marius Vollmer <mvo@zagadka.ping.de>
494
1381c506
MV
495 * scheme-ideas.texi (Creating a Procedure): Fixed typo. Thanks to
496 Pieter Pareit!
497
35e791bd
MV
498 * intro.texi: Updated GNu ftp server name. Use "-lguile" instead
499 of "libguile.a". Some small fixes/improvements.
500
af31a24f
MV
501 * scheme-reading.texi: Added www.schemers.org. Removed foldoc,
502 it's too generic. Updated 'teach yourself ...' URL.
503
44ecca61
MV
5042002-08-27 Marius Vollmer <mvo@zagadka.ping.de>
505
af31a24f 506 * scheme-modules.texi: Markup fixes and removal of gh_ references.
44ecca61
MV
507 Thanks to Dale Smith!
508
29dae8f8
MV
5092002-08-14 Marius Vollmer <mvo@zagadka.ping.de>
510
511 * scheme-evaluation.texi (eval-string): Updated.
512
513 * scheme-scheduling.texi (Fluids): Touched up a bit, added
514 with-fluids.
515
28ab7725
MV
5162002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
517
518 * scheme-modules.texi (More Modules Procedures): Removed.
519 (Accessing Modules from C): New.
520
f631e15e
GH
5212002-08-10 Gary Houston <ghouston@arglist.com>
522
08b98c54
GH
523 * scheme-procedures.texi: new section Primitive Procedures,
524 documentation for scm_c_make_gsubr and scm_c_define_gsubr.
525 * scheme-modules.texi (Compiled Code Modules): replace
526 gh_new_procedure with scm_c_define_gsubr.
f631e15e 527
bcf009c3
NJ
5282002-08-08 Neil Jerram <neil@ossau.uklinux.net>
529
395b0a34
NJ
530 * gh.texi (Data types and constants defined by gh): Avoid
531 generating index entry for SCM.
532
533 * posix.texi (Runtime Environment): Remove duplicate doc for
534 setenv.
535
bcf009c3
NJ
536 * data-rep.texi, scheme-memory.texi, scheme-modules.texi: Merge
537 recent updates from stable branch.
538
539 * posix.texi (File System, Time, Pipes, Network Databases,
540 Internet Socket Examples): Add examples provided by Ian Sheldon.
541
00706edc
MV
5422002-08-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
543
544 * scheme-binding.texi: Don't talk about 'bound?' which is gone.
545 Thanks to Christopher Cramer.
546
ba1b2226
HWN
5472002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
548
549 * scheme-memory.texi (Memory Blocks): add scm_calloc, scm_gc_calloc.
550 correct typos.
551
3d0f4c62
MV
5522002-08-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
553
554 * intro.texi, srfi-modules.texi: Added (use-modules (ice-9
555 rdelim)) to an example that uses read-line. Thanks to Ralf
556 Mattes!
557
558 * scheme-memory.texi: Added an introductory blurb about GC that I
559 had lying around.
560
c3164ca8
GH
5612002-08-02 Gary Houston <ghouston@arglist.com>
562
563 * scheme-modules.texi: split "Scheme and modules" into
564 "provide and require" and "Environments". Mention R5RS
565 environments.
566
3db03338
NJ
5672002-07-16 Neil Jerram <neil@ossau.uklinux.net>
568
569 * scheme-options.texi (Debugger options): New subsection
570 describing stack overflow and what to do about it.
571
dd235de4
GH
5722002-07-10 Gary Houston <ghouston@arglist.com>
573
574 * scheme-modules.texi (Compiled Code Modules): Removed description
575 of scm_register_module_xxx, which no longer exists. A description
576 of current techniques is needed.
577
e717bf46
MV
5782002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
579
580 * scheme-data.texi (Numbers): Added description of the new values
581 +inf.0, -inf.0 and +nan.0.
582
583 * posix.texi (Runtime Environment): Added entries for 'setenv' and
584 'unsetenv'.
585
5862002-04-28 Marius Vollmer <mvo@zagadka.ping.de>
587
588 * gh.texi, data-rep.texi: Moved `@deftyp {Data type} SCM' line
589 from gh.texi to data-rep.texi. Both files already had similar
590 descriptions for SCM. Given that gh.texi is deprecated, looking
591 up `SCM' in the index should take one to the primary location
592 rather than deprecated section. Hence this change. Added
593 `@deftp' for scm_t_bits data type so that a proper index entry is
594 added for this. Thanks to Richard Y. Kim!
595
596 * data-rep.texi (Subrs): Changed scm_make_gsubr to
597 scm_c_define_gsubr. Thanks to Richard Y. Kim!
598
efb7d2fc
MV
5992002-04-24 Marius Vollmer <mvo@zagadka.ping.de>
600
601 * srfi-modules.texi (SRFI-13 Miscellaneous): Updated docs of
602 string-tokenize.
603
1982a56a
NJ
6042002-04-20 Neil Jerram <neil@ossau.uklinux.net>
605
ce9d0562
NJ
606 * scheme-intro.texi (Scheme Layout), scm.texi (Reference Layout):
607 Node moved from a to b.
608
609 * guile.texi (Scheme Intro, Basic Ideas, Guile Scripting, Command
610 Line Handling, Debugging Features, Autoconf Support, Miscellaneous
611 Tools, Further Reading): Moved to new Part II.
612
613 * preface.texi (Manual Layout): Part numbers updated accordingly.
614
615 * guile.texi (Top): Move API Overview node to beginning of Guile
616 API Reference part.
617 (Part II: Writing and Running Guile Scheme): New part; will
618 contain content from `Programming with Guile' that pertains to
619 writing and using Guile on the Scheme level.
620
621 * scm.texi (API Overview): Renamed from `Guile API'.
622
623 * guile.texi (Top), scheme-modules.texi (Included Guile Modules):
624 Debugger User Interface node renamed Debugging Features.
625
626 * debugging.texi (Stacks and Frames): Node deleted; non-duplicated
627 material moved to scheme-debug.texi.
628 (Debugging Features): Renamed from `Debugger User Interface'.
629
f2ba76ae
NJ
630 * scheme-debug.texi (Debugging): Rename chapter `Debugging
631 Infrastructure' and reorganize its contents.
632
633 * scheme-debug.texi (Debugging), scheme-control.texi (Handling
634 Errors): Move display-error to error-focussed section.
635
636 * scheme-debug.texi (Debugging), debugging.texi (Backtrace): Move
637 backtrace to user-level debugging chapter.
638
639 * scheme-debug.texi (Debugging), scheme-procedures.texi (Procedure
640 Properties): Move procedure-name, procedure-source and
641 procedure-environment to procedures chapter.
642
643 * scheme-debug.texi (Debugging), scheme-memory.texi (Memory
644 Blocks): Move malloc-stats to memory management chapter.
645
646 * scheme-procedures.texi (Syntax Rules): Remove mention of
647 use-modules for loading syncase; only use-syntax really works.
648 Thanks to Panagiotis Vossos for spotting this.
649
1982a56a
NJ
650 * program.texi (Scheme vs C): New node, with existing material
651 taken from chapter intro.
652 (Programming Overview): New intro para to introduce example of
653 Guile integration:
654 (Extending Dia): New node.
655
dc006627
MV
6562002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
657
658 * Makefile.am (CLEANFILES): Added guile.cps, guile.fns, guile.rns,
659 guile.tps, guile.vrs, guile.tmp.
660
755de645
NJ
6612002-04-01 Neil Jerram <neil@ossau.uklinux.net>
662
0624ce33
NJ
663 * scheme-intro.texi (Scheme Layout): Remove reference to defunct
664 Guile Extensions index.
665
666 * guile.texi: Removed Guile Extensions index.
667
668 * scheme-indices.texi (Guile Extensions Index): Removed.
669
670 * guile.texi: Remove vgone, vdeprecated, vchanged and vnote
671 macros; they're not actually useful after all. Update copyright
672 years.
673
674 * scheme-compound.texi (Vectors): Make subsections into nodes.
675 (Vectors): Review, slightly reorg and clarify docs in this
676 section.
677
755de645
NJ
678 * scheme-data.texi (Symbols): Reorganized node substructure and
679 added lots of explanatory text around the @deffn's.
680
e8f1ff71
NJ
6812002-03-29 Neil Jerram <neil@ossau.uklinux.net>
682
755de645
NJ
683 * scheme-modules.texi (Variables): Mention obarrays.
684
685 * scheme-data.texi (Symbol Tables, Symbol Props): Remove vgone
686 markers for deprecated symbol items.
687 (Symbol Props): Remove doc for obsolete 2 arg version of
688 symbol-interned?.
689 (String Miscellanea): Removed, since it only contained duplicate
690 doc for string-ci->symbol.
691 (Symbol Tables): Move doc for gensym to Symbol Primitives; rest of
692 section removed.
693
e8f1ff71
NJ
694 * posix.texi (Ports and File Descriptors), scheme-evaluation.texi
695 (Fly Evaluation): Remove vgone markers for close-all-ports-except,
696 eval2 and read-and-eval!.
697
698 * data-rep.texi (Describing a New Type), scheme-compound.texi
699 (Append/Reverse), scheme-procedures.texi (Internal Macros):
700 Trivial updates to sync with stable branch.
701
801892e7
NJ
7022002-03-27 Neil Jerram <neil@ossau.uklinux.net>
703
704 * scheme-compound.texi (List Searching): Remove docs for
705 `scm_sloppy_mem*', which no longer exist.
706
7072002-03-24 Neil Jerram <neil@ossau.uklinux.net>
708
709 * guile.texi (Top), intro.texi (What is Guile?, The Basic Guile
710 Package): Use @ifnottex instead of @ifinfo, so that HTML
711 generation works correctly.
712
e31a525e
MV
7132002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
714
715 * tools.texi: Updated to reflect changes to the guile-snarf tool.
716
c16da59f
NJ
7172002-03-16 Neil Jerram <neil@ossau.uklinux.net>
718
719 * scheme-utility.texi (Hooks): Further updates. New material on
720 GC hooks.
721
722 * scheme-evaluation.texi (Fly Evaluation): Note disappearance of
723 eval2 and read-and-eval!.
724
725 * deprecated.texi (Deprecated): Remove docs about previously
726 deprecated items that have now been removed.
727
34ad73ed
TTN
7282002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
729
730 * tools.texi (guile-1.4 guile-snarf): Remove this node.
731 (How guile-snarf works): Update usage and description to
732 no longer mention "--compat=1.4" and instead "-d" and "-D".
733 (Macros guile-snarf recognizes): Add list of deprecated macros
734 and blurb. Add cindex for deprecated macros.
735
198586ed
NJ
7362002-03-15 Neil Jerram <neil@ossau.uklinux.net>
737
387d418c
NJ
738 * scheme-utility.texi (Hooks): Reviewed and updated.
739
740 * scheme-options.texi (Feature Tracking): New section.
741
742 * scheme-data.texi (Arithmetic, Primitive Numerics): Add
743 description of corresponding C functions.
744
198586ed
NJ
745 * scheme-utility.texi (Object Properties): Revamp documentation on
746 object properties.
747
748 * scheme-memory.texi (Weak References): Update reference to Object
749 Properties node.
750
751 * guile.texi: Add macros for describing version information.
752
753 * scheme-data.texi, scheme-debug.texi, scheme-io.texi,
754 scheme-procedures.texi: Automatic updates from snarfed libguile
755 docstrings.
756
13b68204
TTN
7572002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
758
759 * Makefile.am (guile_toc.html): Look for guile.texi in $(srcdir).
760
2287fb53
TTN
761 * tools.texi (How guile-snarf works): Mention "--compat=1.4", and
762 new processing steps. Update usage example, makefile frag.
763
764 (guile-1.4 guile-snarf): New subsubsection under
765 "Init Snarfing with guile-snarf".
766
413d32b6
NJ
7672002-03-12 Neil Jerram <neil@ossau.uklinux.net>
768
21b83aab
NJ
769 * scheme-compound.texi, scheme-data.texi, new-docstrings.texi:
770 Automatic updates from snarfed libguile docstrings.
771
413d32b6
NJ
772 * data-rep.texi, guile.texi, scheme-evaluation.texi,
773 scheme-options.texi, scheme-translation.texi: Various minor
774 enhancements ported from the stable CVS branch.
775
1ebf1566
TTN
7762002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
777
778 * tools.texi (Miscellaneous Tools): New node/chapter.
779 (Snarfing, Init Snarfing with guile-snarf, How guile-snarf works,
780 Macros guile-snarf recognizes, Doc Snarfing): New nodes/(sub)sections.
781 (Executable Modules): Now a section under "Miscellaneous Tools".
782
783 * guile.texi (Miscellaneous Tools): Add under "Part II".
784 Implement by including tools.texi.
785
786 * Makefile.am (guile_TEXINFOS): Add tools.texi.
787
7882002-03-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
789
790 * tools.texi: New file.
791
a3f0622d
NJ
7922002-03-03 Neil Jerram <neil@ossau.uklinux.net>
793
794 * autoconf.texi (Autoconf Background): Insert missing `of'.
795
228a24ef
DH
7962002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
797
798 * api.txt, data-rep.texi: Renamed the struct scm_cell to
799 scm_t_cell.
800
801 * data-rep.texi: Renamed scm_alloc_cell to scm_cell and
802 scm_alloc_double_cell to scm_double_cell.
803
eee065c4
MV
8042002-03-01 Marius Vollmer <mvo@zagadka.ping.de>
805
806 * scheme-memory.texi (Upgrading from scm_must_malloc et al): New
807 section.
808
621f22b1
MV
8092002-02-28 Marius Vollmer <mvo@zagadka.ping.de>
810
811 * data-rep.texi: Use scm_gc_malloc and scm_gc_free instead of
812 scm_must_malloc and free in example code. Updated text for the
813 new memory management functions.
814
815 * scheme-debug.texi (malloc-stats): Refer to scm_gc_malloc instead
816 of to scm_must_malloc.
817
edb810bb
SJ
8182002-02-27 Stefan Jahn <stefan@lkcc.org>
819
820 * gh.texi (scm transition summary): Documented some more
821 gh equivalents and removed appropriate FIXME's.
822
327d4dd3
TTN
8232002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
824
825 * Makefile.am: Update path to pre-inst-guile automake frag.
826
8794fdca
RB
8272002-02-24 Rob Browning <rlb@defaultvalue.org>
828
829 * .cvsignore: add autoconf-macros.texi.
830
831 * Makefile.am (CLEANFILES): add autoconf-macros.texi.
832
bd75ebc3
MV
8332002-02-19 Marius Vollmer <mvo@zagadka.ping.de>
834
835 * scheme-memory.texi (Memory Blocks): New section.
836
5e9d88a4
TTN
8372002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
838
839 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
840
841 (GUILE): Delete var.
842 (autoconf-macros.texi): Use $(preinstguiletool).
843
7c5c2796
TTN
8442002-02-04 Thien-Thi Nguyen <ttn@giblet.glug.org>
845
846 * autoconf.texi (Autofrisk, Using Autofrisk): New sections.
847 (Autoconf Support): Add new sections to menu.
848
402e687c
MV
8492002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
850
851 * scheme-data.texi (Symbol Uninterned): Added node.
852
f74fa0a0
SJ
8532002-01-29 Stefan Jahn <stefan@lkcc.org>
854
855 * gh.texi (scm transition summary): Documented gh equivalents
856 `scm_c_string2str', `scm_c_substring2str' and `scm_c_symbol2str'
857 and removed the appropriate FIXME's.
858
68cf83e0
MV
8592002-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
860
861 * Makefile.am (autoconf-macros.texi): Also set GUILE_LOAD_PATH
862 when invoking the uninstalled guile executable.
863
5b156bcd
TTN
8642002-01-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
865
866 * Makefile.am (autoconf-macros.texi): Fix build bug:
867 Write this file to srcdir. Thanks to I. N. Golubev.
868
8430281a
GH
8692002-01-08 Gary Houston <ghouston@arglist.com>
870
871 * Makefile.am: attempt to use guile from $(top_builddir)/libguile
872 when building autoconf-macros.texi. There are still problems with
873 modules and running makeinfo when builddir != srcdir.
874
a3e49ac1
TTN
8752002-01-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
876
877 * data-rep.texi, gh.texi, guile.texi, intro.texi,
878 misc-modules.texi, new-docstrings.texi, posix.texi, program.texi,
879 repl-modules.texi, scheme-binding.texi, scheme-compound.texi,
880 scheme-control.texi, scheme-data.texi, scheme-debug.texi,
881 scheme-ideas.texi, scheme-io.texi, scheme-memory.texi,
882 scheme-modules.texi, scheme-procedures.texi,
883 scheme-translation.texi, scheme-utility.texi, scm.texi, slib.texi,
884 srfi-modules.texi: Spell check. Thanks to Fabrice Bauzac.
885
4902ea64
NJ
8862002-01-07 Neil Jerram <neil@ossau.uklinux.net>
887
888 * intro.texi (Linking Programs With Guile): Fix typo (superfluous
889 `do'). Thanks to Fabrice Bauzac.
890
f1597833
TTN
8912002-01-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
892
893 * intro.texi: Spell check. Thanks to Fabrice Bauzac.
894
4d9678fd
TTN
8952002-01-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
896
897 * guile.texi (Part II): Add "Autoconf Support"; include
898 autoconf.texi.
899
900 * Makefile.am (guile_TEXINFOS): Add autoconf.texi and
901 autoconf-macros.texi.
902 (autoconf.texi, autoconf-macros.texi): New rules.
903
904 * autoconf.texi: New file.
905
0fabb425
MV
9062001-12-22 Marius Vollmer <mvo@zagadka.ping.de>
907
908 * scheme-compound.texi (Alist Example): Changed "Bismarck" to
909 "Pierre". Thanks to Ron Peterson!
910
226297eb
NJ
9112001-12-22 Neil Jerram <neil@ossau.uklinux.net>
912
913 * program.texi (Programming Overview): Chapter renamed from
914 `Programming Options'; some new material added.
915
a7a7bb95
NJ
9162001-12-07 Neil Jerram <neil@ossau.uklinux.net>
917
918 * scm.texi (Guile API): Renamed from `Scheme Primitives' and
919 broadened so that this chapter discusses the Guile API as a whole.
920
921 * program.texi (Available Functionality): Revise so that text
922 reads better.
923
924 * guile.texi (Programming Intro): New introductory text.
925
926 * scheme-ideas.texi (Definition): Reorder reference bullets in
927 ascending page number order.
928
923d5b87
MG
9292001-12-04 Martin Grabmueller <mg@glug.org>
930
931 * scheme-procedures.texi (Optional Arguments): Typo fix: wither ->
932 either.
933
2a946b44
NJ
9342001-12-01 Neil Jerram <neil@ossau.uklinux.net>
935
4c731ece
NJ
936 * scheme-data.texi (Hooks): Moved into scheme-utility.texi.
937
938 * Makefile.am (guile_TEXINFOS): Added scheme-compound.texi.
939
2a946b44
NJ
940 * scheme-data.texi (Variables): Node moved to modules chapter.
941 (Symbol Read Syntax): New node, with syntax-related material taken
942 from old Symbols node.
943 (Symbol Primitives): Renamed from `Symbols'.
944 (Symbols and Variables): Renamed to `Symbols'.
945 (Symbol Props): Renamed from `Symbol Tables'.
946 (Symbols): General review, improvements and additional material
947 throughout this section.
4c731ece
NJ
948 (Other Data Types): New material: links to object types documented
949 elsewhere. Also renamed node to `Other Types'.
950 (Data Types): Split into two: `Simple Data Types' and `Compound
951 Data Types'. Introductory blurbs rewritten accordingly.
2a946b44
NJ
952
953 * guile.texi: Updated Notes comment.
954
955 * scheme-data.texi (Rx Interface): Node moved to Guile Modules
956 part, as the Rx interface is not core Guile.
957
9582001-11-30 Neil Jerram <neil@ossau.uklinux.net>
959
960 * scheme-data.texi (String Miscellanea): Removed, moving doc for
961 string-ci->symbol into the node on Symbols.
962
963 * Makefile.am (ETAGS_ARGS): Added.
964
965 * scheme-data.texi (Symbol Tables): Removed doc for gentemp,
966 intern-symbol, string->obarray-symbol, symbol-binding,
967 symbol-bound?, symbol-set!, unintern-symbol, symbol-interned?; all
968 of which no longer exist.
969
5f7dd1ca
TTN
9702001-11-25 Thien-Thi Nguyen <ttn@glug.org>
971
972 * posix.texi: Fix spelling. Thanks to Chris Cramer.
973 Reword `getpass' intro blurb.
974
c276c3e3
NJ
9752001-11-23 Neil Jerram <neil@ossau.uklinux.net>
976
977 * program.texi (Program Control): Remove spurious placeholder
978 text.
979
19a35d19
TTN
9802001-11-20 Thien-Thi Nguyen <ttn@glug.org>
981
982 * scheme-options.texi (Install Config):
983 Tweak `%load-path' verb to not imply it's a proc.
984 Add documentation for `%guile-build-info'.
985
d4e5a409
NJ
9862001-11-19 Neil Jerram <neil@ossau.uklinux.net>
987
988 * scheme-data.texi (Symbol Tables), new-docstrings.texi: Removed
989 doc for builtin-bindings (no longer exists).
990 (Variables): Expanded existing description of variables. Removed
991 doc for builtin-variable (no longer exists).
992
993 * scheme-binding.texi (Top Level): New docs for define, scm_define
994 and scm_c_define. Also clarified point about interchangeability
995 of define and set!.
996
694a9bb3
NJ
9972001-11-18 Neil Jerram <neil@ossau.uklinux.net>
998
999 * scheme-data.texi (Vectors): Autoupdate docs for
1000 vector-move-left! and vector-move-right!.
1001
8f85c0c6
NJ
10022001-11-16 Neil Jerram <neil@ossau.uklinux.net>
1003
1004 * debugging.texi, deprecated.texi, intro.texi, misc-modules.texi,
1005 new-docstrings.texi, posix.texi, scheme-binding.texi,
1006 scheme-control.texi, scheme-data.texi, scheme-debug.texi,
1007 scheme-evaluation.texi, scheme-io.texi, scheme-memory.texi,
1008 scheme-modules.texi, scheme-options.texi, scheme-procedures.texi,
1009 scheme-scheduling.texi, scheme-translation.texi,
1010 scheme-utility.texi, script-getopt.texi, srfi-modules.texi: Change
1011 category for "primitive" and "procedure" @deffn's to {Scheme
1012 Procedure}; add @deffnx lines for {C Function}s; automatic updates
1013 from libguile docstring changes.
1014
1015 * scheme-memory.texi (Garbage Collection): Removed doc for removed
1016 `unhash-name'.
1017
ef394643
TTN
10182001-11-14 Thien-Thi Nguyen <ttn@glug.org>
1019
1020 * scheme-procedures.texi: Spell "library" correctly.
1021
72dd0a03
NJ
10222001-11-13 Neil Jerram <neil@ossau.uklinux.net>
1023
1024 * new-docstrings.texi, scheme-data.texi: Merge recent doc
1025 improvements from stable branch.
1026
1027 * scheme-options.texi: Automatic updates from docstring changes in
1028 libguile's C source code.
1029
b56b5983
NJ
10302001-11-12 Neil Jerram <neil@ossau.uklinux.net>
1031
1032 * scheme-data.texi (Vtables, Structure Basics): Automatic doc
1033 updates for struct? and struct-vtable?.
1034 (String Searching): Add missing "for". Thanks to Scott Lenser.
1035
9401323e
NJ
10362001-11-08 Neil Jerram <neil@ossau.uklinux.net>
1037
1038 * guile.texi (Top): Added new chapter `Programming Options'.
1039
1040 * program.texi: New file.
1041
1042 * Makefile.am (guile_TEXINFOS): Added program.texi.
1043
10442001-11-07 Neil Jerram <neil@ossau.uklinux.net>
1045
1046 * scheme-memory.texi, scheme-io.texi, scheme-debug.texi,
1047 scheme-data.texi, scheme-binding.texi, posix.texi,
1048 new-docstrings.texi: Automatic updates from improved libguile
1049 docstrings.
1050
10512001-11-04 Neil Jerram <neil@ossau.uklinux.net>
1052
1053 * preface.texi: Use MANUAL_EDITION variable.
1054 (Manual Layout): Updated to reflect reorg.
1055
1056 * guile.texi (MANUAL_EDITION): New variable, with value
1057 incremented from 1.0 to 1.1 to reflect the reorg described here.
1058 (Top): Use MANUAL_EDITION variable.
1059
1060 * scheme-indices.texi (R5RS Index, Guile Extensions Index): Use
1061 @unnumbered rather than @chapter for these indices.
1062
1063 * guile.texi (Top): A little top-level reshuffling, with the aims
1064 that: (1) the `Guile Scheme' (reference) part of the manual
1065 becomes the `Guile API Reference', and covers both Scheme and C
1066 interfaces; (2) non-API-reference material such as the `Basic
1067 Ideas in Scheme' chapter is collected together to form a new part
1068 `Programming with Guile'. This new part will contain general
1069 documentation on using and programming Guile in both Scheme and C,
1070 including - for example - awareness of GC when C programming, how
1071 to use the snarf macros, how to debug ...
1072 (Top): Move inclusion of scheme-indices.texi so that all indices
1073 appear together in the printed manual.
1074
1075 * Makefile.am (guile_TEXINFOS): Removed appendices.texi, added
1076 debugging.texi.
ef394643 1077
9401323e
NJ
1078 * appendices.texi: Removed.
1079
1080 * debugging.texi (Debugger User Interface): New file, same as the
1081 material that used to be in appendices.texi, but now a chapter in
1082 Part II rather than an appendix.
1083
1084 * appendices.texi (Obtaining and Installing Guile): Moved to
1085 become a chapter in ...
1086 * intro.texi: ... Part I: Introduction to Guile.
1087
1088 * scm.texi (I/O Extensions): Moved to become a section of ...
1089 * scheme-io.texi (Input and Output): ... this chapter.
1090
1091 * scm.texi (Handling Errors): Moved to become a section of ...
1092 * scheme-control.texi (Control Mechanisms): ... this chapter.
1093
ca26b87d
TTN
10942001-11-06 Thien-Thi Nguyen <ttn@glug.org>
1095
1096 * srfi-modules.texi (SRFI-19, SRFI-19 Constants, SRFI-19 Current
1097 time and clock resolution, SRFI-19 Time object and accessors,
1098 SRFI-19 Time comparison procedures, SRFI-19 Time arithmetic
1099 procedures, SRFI-19 Date object and accessors, SRFI-19
1100 Time/Date/Julian Day/Modified Julian Day converters, SRFI-19 Date
1101 to string/string to date converters): New nodes.
04bbd6ce 1102 (SRFI Support): Add "SRFI-19" to menu.
ca26b87d 1103
7ab89df1
MV
11042001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
1105
1106 * scripts.texi: Document `--debug' and `--no-debug'.
1107
c2c67382
GH
11082001-10-27 Gary Houston <ghouston@arglist.com>
1109
a42b5e5b
GH
1110 * guile.texi, scsh.texi: removed obsolete guile-scsh material
1111 and updated links (I don't know if it should remain in the
1112 main menu. It's like slib I think.)
1113
c2c67382
GH
1114 * minor updates to the slib installation notes.
1115
a599743c
NJ
11162001-10-05 Neil Jerram <neil@ossau.uklinux.net>
1117
1118 * scheme-evaluation.texi (Fly Evaluation): Removed documentation
1119 for `read-and-eval!' and `eval2'. (Thanks to Alex Schroeder for
1120 noticing that they'd disappeared!)
1121
74e0de86
TTN
11222001-10-05 Thien-Thi Nguyen <ttn@glug.org>
1123
1124 * scheme-io.texi (Writing): Add entry for `display'.
1125 Include in R5RS Index. Thanks to Alex Schroeder for suggestion.
1126
40f316d0
MG
11272001-09-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
1128
1129 * srfi-modules.texi (SRFI-13): Tyop fix.
1130 (SRFI-13): Changed paragraph about bindings both in the code and
1131 in SRFI-13.
1132
1133 * misc-modules.texi (Formatted Output): Tyop fix.
1134 (Formatted Output): Document ~g properly.
1135
1136 Thanks to Alex Schroeder for pointing out the typos and sending
1137 suggestions.
74e0de86 1138
523f81ba
TTN
11392001-09-25 Thien-Thi Nguyen <ttn@glug.org>
1140
1141 * scheme-procedures.texi (Syntax Rules): Add `cindex' directive.
1142 Thanks to suggestion by Alex Schroeder.
1143
6c997de2
NJ
11442001-08-30 Neil Jerram <neil@ossau.uklinux.net>
1145
255ea784
NJ
1146 * guile.texi (Top): Group all index nodes together so that
1147 `Info-index' works more effectively in Info. Thanks to Eric
1148 Hanchrow for the report and fix.
1149
6c997de2
NJ
1150 * scheme-data.texi (Random, String Syntax, String Modification,
1151 Regular Expressions), scheme-ideas.texi (Definition),
1152 scheme-modules.texi (Dynamic Linking and Compiled Code Modules),
1153 scm.texi (Transforming Scheme name to C name, Port
1154 Implementation): Various typo fixes and clarifications merged from
1155 the stable CVS branch.
1156
b45898ca
NJ
11572001-08-27 Neil Jerram <neil@ossau.uklinux.net>
1158
1159 * intro.texi: Merged wording fixes from stable CVS branch.
1160
1161 * Makefile.am (guile_TEXINFOS): Remove ../AUTHORS.
1162
1163 * guile.texi: Incorporate text previously in separate AUTHORS
1164 file.
1165
11662001-08-27 Neil Jerram <neil@ossau.uklinux.net>
1167
1168 The change log for files in this directory continues backwards
1169 from 2001-08-27 in ../ChangeLog, as all the Guile documentation
1170 prior to this date was contained in a single directory.