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