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