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