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