*** empty log message ***
[bpt/guile.git] / doc / ref / ChangeLog
1 2002-10-03 Marius Vollmer <mvo@zagadka.ping.de>
2
3 * tools.texi (How guile-snarf works): Updated.
4 (Writing your own snarfing macros): New.
5
6 2002-09-25 Neil Jerram <neil@ossau.uklinux.net>
7
8 * scheme-debug.texi (Debugging): Make sections into nodes.
9 (Debugging Options): Node removed.
10
11 * scheme-options.texi (Feature Tracking): Brought forward before
12 sections on options.
13 (Runtime Options): New section, to group options-related nodes.
14
15 2002-09-24 Neil Jerram <neil@ossau.uklinux.net>
16
17 * scheme-options.texi (Options and Config): Chapter name changed,
18 and intro text improved.
19 (Install Config): Brought forward, and renamed Build
20 Configuration.
21
22 The following doc updates are from Ian Sheldon - thanks!
23
24 * scheme-data.texi (Appending Strings, Regexp Functions, Match
25 Structures): Add examples.
26 (Regular Expressions): Add instruction to use (ice-9 regex)
27 module.
28
29 * slib.texi (SLIB): Remove duplicate `the'.
30
31 2002-09-22 Neil Jerram <neil@ossau.uklinux.net>
32
33 * scheme-options.texi (General option interface): Mention
34 eval-options-interface and debug-options-interface.
35
36 * scheme-debug.texi (Debugging): New node describing source
37 properties.
38
39 2002-09-19 Neil Jerram <neil@ossau.uklinux.net>
40
41 * scheme-utility.texi (Hook Reference): Improvements to hook docs.
42 Thanks to Thien-Thi Nguyen for the patches.
43
44 2002-09-16 Marius Vollmer <mvo@zagadka.ping.de>
45
46 * scheme-data.texi (Symbol Props): It's "set-symbol-property!",
47 not "set-symbol-property". Thanks to Pieter Pareit!
48
49 2002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
50
51 * scheme-data.texi: Tell them to use 'provided?' instead of
52 '*feaures*'.
53
54 2002-09-09 Marius Vollmer <mvo@zagadka.ping.de>
55
56 * scheme-ideas.texi (Creating a Procedure): Fixed typo. Thanks to
57 Pieter Pareit!
58
59 * intro.texi: Updated GNu ftp server name. Use "-lguile" instead
60 of "libguile.a". Some small fixes/improvements.
61
62 * scheme-reading.texi: Added www.schemers.org. Removed foldoc,
63 it's too generic. Updated 'teach yourself ...' URL.
64
65 2002-08-27 Marius Vollmer <mvo@zagadka.ping.de>
66
67 * scheme-modules.texi: Markup fixes and removal of gh_ references.
68 Thanks to Dale Smith!
69
70 2002-08-14 Marius Vollmer <mvo@zagadka.ping.de>
71
72 * scheme-evaluation.texi (eval-string): Updated.
73
74 * scheme-scheduling.texi (Fluids): Touched up a bit, added
75 with-fluids.
76
77 2002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
78
79 * scheme-modules.texi (More Modules Procedures): Removed.
80 (Accessing Modules from C): New.
81
82 2002-08-10 Gary Houston <ghouston@arglist.com>
83
84 * scheme-procedures.texi: new section Primitive Procedures,
85 documentation for scm_c_make_gsubr and scm_c_define_gsubr.
86 * scheme-modules.texi (Compiled Code Modules): replace
87 gh_new_procedure with scm_c_define_gsubr.
88
89 2002-08-08 Neil Jerram <neil@ossau.uklinux.net>
90
91 * gh.texi (Data types and constants defined by gh): Avoid
92 generating index entry for SCM.
93
94 * posix.texi (Runtime Environment): Remove duplicate doc for
95 setenv.
96
97 * data-rep.texi, scheme-memory.texi, scheme-modules.texi: Merge
98 recent updates from stable branch.
99
100 * posix.texi (File System, Time, Pipes, Network Databases,
101 Internet Socket Examples): Add examples provided by Ian Sheldon.
102
103 2002-08-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
104
105 * scheme-binding.texi: Don't talk about 'bound?' which is gone.
106 Thanks to Christopher Cramer.
107
108 2002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
109
110 * scheme-memory.texi (Memory Blocks): add scm_calloc, scm_gc_calloc.
111 correct typos.
112
113 2002-08-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
114
115 * intro.texi, srfi-modules.texi: Added (use-modules (ice-9
116 rdelim)) to an example that uses read-line. Thanks to Ralf
117 Mattes!
118
119 * scheme-memory.texi: Added an introductory blurb about GC that I
120 had lying around.
121
122 2002-08-02 Gary Houston <ghouston@arglist.com>
123
124 * scheme-modules.texi: split "Scheme and modules" into
125 "provide and require" and "Environments". Mention R5RS
126 environments.
127
128 2002-07-16 Neil Jerram <neil@ossau.uklinux.net>
129
130 * scheme-options.texi (Debugger options): New subsection
131 describing stack overflow and what to do about it.
132
133 2002-07-10 Gary Houston <ghouston@arglist.com>
134
135 * scheme-modules.texi (Compiled Code Modules): Removed description
136 of scm_register_module_xxx, which no longer exists. A description
137 of current techniques is needed.
138
139 2002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
140
141 * scheme-data.texi (Numbers): Added description of the new values
142 +inf.0, -inf.0 and +nan.0.
143
144 * posix.texi (Runtime Environment): Added entries for 'setenv' and
145 'unsetenv'.
146
147 2002-04-28 Marius Vollmer <mvo@zagadka.ping.de>
148
149 * gh.texi, data-rep.texi: Moved `@deftyp {Data type} SCM' line
150 from gh.texi to data-rep.texi. Both files already had similar
151 descriptions for SCM. Given that gh.texi is deprecated, looking
152 up `SCM' in the index should take one to the primary location
153 rather than deprecated section. Hence this change. Added
154 `@deftp' for scm_t_bits data type so that a proper index entry is
155 added for this. Thanks to Richard Y. Kim!
156
157 * data-rep.texi (Subrs): Changed scm_make_gsubr to
158 scm_c_define_gsubr. Thanks to Richard Y. Kim!
159
160 2002-04-24 Marius Vollmer <mvo@zagadka.ping.de>
161
162 * srfi-modules.texi (SRFI-13 Miscellaneous): Updated docs of
163 string-tokenize.
164
165 2002-04-20 Neil Jerram <neil@ossau.uklinux.net>
166
167 * scheme-intro.texi (Scheme Layout), scm.texi (Reference Layout):
168 Node moved from a to b.
169
170 * guile.texi (Scheme Intro, Basic Ideas, Guile Scripting, Command
171 Line Handling, Debugging Features, Autoconf Support, Miscellaneous
172 Tools, Further Reading): Moved to new Part II.
173
174 * preface.texi (Manual Layout): Part numbers updated accordingly.
175
176 * guile.texi (Top): Move API Overview node to beginning of Guile
177 API Reference part.
178 (Part II: Writing and Running Guile Scheme): New part; will
179 contain content from `Programming with Guile' that pertains to
180 writing and using Guile on the Scheme level.
181
182 * scm.texi (API Overview): Renamed from `Guile API'.
183
184 * guile.texi (Top), scheme-modules.texi (Included Guile Modules):
185 Debugger User Interface node renamed Debugging Features.
186
187 * debugging.texi (Stacks and Frames): Node deleted; non-duplicated
188 material moved to scheme-debug.texi.
189 (Debugging Features): Renamed from `Debugger User Interface'.
190
191 * scheme-debug.texi (Debugging): Rename chapter `Debugging
192 Infrastructure' and reorganize its contents.
193
194 * scheme-debug.texi (Debugging), scheme-control.texi (Handling
195 Errors): Move display-error to error-focussed section.
196
197 * scheme-debug.texi (Debugging), debugging.texi (Backtrace): Move
198 backtrace to user-level debugging chapter.
199
200 * scheme-debug.texi (Debugging), scheme-procedures.texi (Procedure
201 Properties): Move procedure-name, procedure-source and
202 procedure-environment to procedures chapter.
203
204 * scheme-debug.texi (Debugging), scheme-memory.texi (Memory
205 Blocks): Move malloc-stats to memory management chapter.
206
207 * scheme-procedures.texi (Syntax Rules): Remove mention of
208 use-modules for loading syncase; only use-syntax really works.
209 Thanks to Panagiotis Vossos for spotting this.
210
211 * program.texi (Scheme vs C): New node, with existing material
212 taken from chapter intro.
213 (Programming Overview): New intro para to introduce example of
214 Guile integration:
215 (Extending Dia): New node.
216
217 2002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
218
219 * Makefile.am (CLEANFILES): Added guile.cps, guile.fns, guile.rns,
220 guile.tps, guile.vrs, guile.tmp.
221
222 2002-04-01 Neil Jerram <neil@ossau.uklinux.net>
223
224 * scheme-intro.texi (Scheme Layout): Remove reference to defunct
225 Guile Extensions index.
226
227 * guile.texi: Removed Guile Extensions index.
228
229 * scheme-indices.texi (Guile Extensions Index): Removed.
230
231 * guile.texi: Remove vgone, vdeprecated, vchanged and vnote
232 macros; they're not actually useful after all. Update copyright
233 years.
234
235 * scheme-compound.texi (Vectors): Make subsections into nodes.
236 (Vectors): Review, slightly reorg and clarify docs in this
237 section.
238
239 * scheme-data.texi (Symbols): Reorganized node substructure and
240 added lots of explanatory text around the @deffn's.
241
242 2002-03-29 Neil Jerram <neil@ossau.uklinux.net>
243
244 * scheme-modules.texi (Variables): Mention obarrays.
245
246 * scheme-data.texi (Symbol Tables, Symbol Props): Remove vgone
247 markers for deprecated symbol items.
248 (Symbol Props): Remove doc for obsolete 2 arg version of
249 symbol-interned?.
250 (String Miscellanea): Removed, since it only contained duplicate
251 doc for string-ci->symbol.
252 (Symbol Tables): Move doc for gensym to Symbol Primitives; rest of
253 section removed.
254
255 * posix.texi (Ports and File Descriptors), scheme-evaluation.texi
256 (Fly Evaluation): Remove vgone markers for close-all-ports-except,
257 eval2 and read-and-eval!.
258
259 * data-rep.texi (Describing a New Type), scheme-compound.texi
260 (Append/Reverse), scheme-procedures.texi (Internal Macros):
261 Trivial updates to sync with stable branch.
262
263 2002-03-27 Neil Jerram <neil@ossau.uklinux.net>
264
265 * scheme-compound.texi (List Searching): Remove docs for
266 `scm_sloppy_mem*', which no longer exist.
267
268 2002-03-24 Neil Jerram <neil@ossau.uklinux.net>
269
270 * guile.texi (Top), intro.texi (What is Guile?, The Basic Guile
271 Package): Use @ifnottex instead of @ifinfo, so that HTML
272 generation works correctly.
273
274 2002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
275
276 * tools.texi: Updated to reflect changes to the guile-snarf tool.
277
278 2002-03-16 Neil Jerram <neil@ossau.uklinux.net>
279
280 * scheme-utility.texi (Hooks): Further updates. New material on
281 GC hooks.
282
283 * scheme-evaluation.texi (Fly Evaluation): Note disappearance of
284 eval2 and read-and-eval!.
285
286 * deprecated.texi (Deprecated): Remove docs about previously
287 deprecated items that have now been removed.
288
289 2002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
290
291 * tools.texi (guile-1.4 guile-snarf): Remove this node.
292 (How guile-snarf works): Update usage and description to
293 no longer mention "--compat=1.4" and instead "-d" and "-D".
294 (Macros guile-snarf recognizes): Add list of deprecated macros
295 and blurb. Add cindex for deprecated macros.
296
297 2002-03-15 Neil Jerram <neil@ossau.uklinux.net>
298
299 * scheme-utility.texi (Hooks): Reviewed and updated.
300
301 * scheme-options.texi (Feature Tracking): New section.
302
303 * scheme-data.texi (Arithmetic, Primitive Numerics): Add
304 description of corresponding C functions.
305
306 * scheme-utility.texi (Object Properties): Revamp documentation on
307 object properties.
308
309 * scheme-memory.texi (Weak References): Update reference to Object
310 Properties node.
311
312 * guile.texi: Add macros for describing version information.
313
314 * scheme-data.texi, scheme-debug.texi, scheme-io.texi,
315 scheme-procedures.texi: Automatic updates from snarfed libguile
316 docstrings.
317
318 2002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
319
320 * Makefile.am (guile_toc.html): Look for guile.texi in $(srcdir).
321
322 * tools.texi (How guile-snarf works): Mention "--compat=1.4", and
323 new processing steps. Update usage example, makefile frag.
324
325 (guile-1.4 guile-snarf): New subsubsection under
326 "Init Snarfing with guile-snarf".
327
328 2002-03-12 Neil Jerram <neil@ossau.uklinux.net>
329
330 * scheme-compound.texi, scheme-data.texi, new-docstrings.texi:
331 Automatic updates from snarfed libguile docstrings.
332
333 * data-rep.texi, guile.texi, scheme-evaluation.texi,
334 scheme-options.texi, scheme-translation.texi: Various minor
335 enhancements ported from the stable CVS branch.
336
337 2002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
338
339 * tools.texi (Miscellaneous Tools): New node/chapter.
340 (Snarfing, Init Snarfing with guile-snarf, How guile-snarf works,
341 Macros guile-snarf recognizes, Doc Snarfing): New nodes/(sub)sections.
342 (Executable Modules): Now a section under "Miscellaneous Tools".
343
344 * guile.texi (Miscellaneous Tools): Add under "Part II".
345 Implement by including tools.texi.
346
347 * Makefile.am (guile_TEXINFOS): Add tools.texi.
348
349 2002-03-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
350
351 * tools.texi: New file.
352
353 2002-03-03 Neil Jerram <neil@ossau.uklinux.net>
354
355 * autoconf.texi (Autoconf Background): Insert missing `of'.
356
357 2002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
358
359 * api.txt, data-rep.texi: Renamed the struct scm_cell to
360 scm_t_cell.
361
362 * data-rep.texi: Renamed scm_alloc_cell to scm_cell and
363 scm_alloc_double_cell to scm_double_cell.
364
365 2002-03-01 Marius Vollmer <mvo@zagadka.ping.de>
366
367 * scheme-memory.texi (Upgrading from scm_must_malloc et al): New
368 section.
369
370 2002-02-28 Marius Vollmer <mvo@zagadka.ping.de>
371
372 * data-rep.texi: Use scm_gc_malloc and scm_gc_free instead of
373 scm_must_malloc and free in example code. Updated text for the
374 new memory management functions.
375
376 * scheme-debug.texi (malloc-stats): Refer to scm_gc_malloc instead
377 of to scm_must_malloc.
378
379 2002-02-27 Stefan Jahn <stefan@lkcc.org>
380
381 * gh.texi (scm transition summary): Documented some more
382 gh equivalents and removed appropriate FIXME's.
383
384 2002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
385
386 * Makefile.am: Update path to pre-inst-guile automake frag.
387
388 2002-02-24 Rob Browning <rlb@defaultvalue.org>
389
390 * .cvsignore: add autoconf-macros.texi.
391
392 * Makefile.am (CLEANFILES): add autoconf-macros.texi.
393
394 2002-02-19 Marius Vollmer <mvo@zagadka.ping.de>
395
396 * scheme-memory.texi (Memory Blocks): New section.
397
398 2002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
399
400 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
401
402 (GUILE): Delete var.
403 (autoconf-macros.texi): Use $(preinstguiletool).
404
405 2002-02-04 Thien-Thi Nguyen <ttn@giblet.glug.org>
406
407 * autoconf.texi (Autofrisk, Using Autofrisk): New sections.
408 (Autoconf Support): Add new sections to menu.
409
410 2002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
411
412 * scheme-data.texi (Symbol Uninterned): Added node.
413
414 2002-01-29 Stefan Jahn <stefan@lkcc.org>
415
416 * gh.texi (scm transition summary): Documented gh equivalents
417 `scm_c_string2str', `scm_c_substring2str' and `scm_c_symbol2str'
418 and removed the appropriate FIXME's.
419
420 2002-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
421
422 * Makefile.am (autoconf-macros.texi): Also set GUILE_LOAD_PATH
423 when invoking the uninstalled guile executable.
424
425 2002-01-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
426
427 * Makefile.am (autoconf-macros.texi): Fix build bug:
428 Write this file to srcdir. Thanks to I. N. Golubev.
429
430 2002-01-08 Gary Houston <ghouston@arglist.com>
431
432 * Makefile.am: attempt to use guile from $(top_builddir)/libguile
433 when building autoconf-macros.texi. There are still problems with
434 modules and running makeinfo when builddir != srcdir.
435
436 2002-01-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
437
438 * data-rep.texi, gh.texi, guile.texi, intro.texi,
439 misc-modules.texi, new-docstrings.texi, posix.texi, program.texi,
440 repl-modules.texi, scheme-binding.texi, scheme-compound.texi,
441 scheme-control.texi, scheme-data.texi, scheme-debug.texi,
442 scheme-ideas.texi, scheme-io.texi, scheme-memory.texi,
443 scheme-modules.texi, scheme-procedures.texi,
444 scheme-translation.texi, scheme-utility.texi, scm.texi, slib.texi,
445 srfi-modules.texi: Spell check. Thanks to Fabrice Bauzac.
446
447 2002-01-07 Neil Jerram <neil@ossau.uklinux.net>
448
449 * intro.texi (Linking Programs With Guile): Fix typo (superfluous
450 `do'). Thanks to Fabrice Bauzac.
451
452 2002-01-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
453
454 * intro.texi: Spell check. Thanks to Fabrice Bauzac.
455
456 2002-01-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
457
458 * guile.texi (Part II): Add "Autoconf Support"; include
459 autoconf.texi.
460
461 * Makefile.am (guile_TEXINFOS): Add autoconf.texi and
462 autoconf-macros.texi.
463 (autoconf.texi, autoconf-macros.texi): New rules.
464
465 * autoconf.texi: New file.
466
467 2001-12-22 Marius Vollmer <mvo@zagadka.ping.de>
468
469 * scheme-compound.texi (Alist Example): Changed "Bismarck" to
470 "Pierre". Thanks to Ron Peterson!
471
472 2001-12-22 Neil Jerram <neil@ossau.uklinux.net>
473
474 * program.texi (Programming Overview): Chapter renamed from
475 `Programming Options'; some new material added.
476
477 2001-12-07 Neil Jerram <neil@ossau.uklinux.net>
478
479 * scm.texi (Guile API): Renamed from `Scheme Primitives' and
480 broadened so that this chapter discusses the Guile API as a whole.
481
482 * program.texi (Available Functionality): Revise so that text
483 reads better.
484
485 * guile.texi (Programming Intro): New introductory text.
486
487 * scheme-ideas.texi (Definition): Reorder reference bullets in
488 ascending page number order.
489
490 2001-12-04 Martin Grabmueller <mg@glug.org>
491
492 * scheme-procedures.texi (Optional Arguments): Typo fix: wither ->
493 either.
494
495 2001-12-01 Neil Jerram <neil@ossau.uklinux.net>
496
497 * scheme-data.texi (Hooks): Moved into scheme-utility.texi.
498
499 * Makefile.am (guile_TEXINFOS): Added scheme-compound.texi.
500
501 * scheme-data.texi (Variables): Node moved to modules chapter.
502 (Symbol Read Syntax): New node, with syntax-related material taken
503 from old Symbols node.
504 (Symbol Primitives): Renamed from `Symbols'.
505 (Symbols and Variables): Renamed to `Symbols'.
506 (Symbol Props): Renamed from `Symbol Tables'.
507 (Symbols): General review, improvements and additional material
508 throughout this section.
509 (Other Data Types): New material: links to object types documented
510 elsewhere. Also renamed node to `Other Types'.
511 (Data Types): Split into two: `Simple Data Types' and `Compound
512 Data Types'. Introductory blurbs rewritten accordingly.
513
514 * guile.texi: Updated Notes comment.
515
516 * scheme-data.texi (Rx Interface): Node moved to Guile Modules
517 part, as the Rx interface is not core Guile.
518
519 2001-11-30 Neil Jerram <neil@ossau.uklinux.net>
520
521 * scheme-data.texi (String Miscellanea): Removed, moving doc for
522 string-ci->symbol into the node on Symbols.
523
524 * Makefile.am (ETAGS_ARGS): Added.
525
526 * scheme-data.texi (Symbol Tables): Removed doc for gentemp,
527 intern-symbol, string->obarray-symbol, symbol-binding,
528 symbol-bound?, symbol-set!, unintern-symbol, symbol-interned?; all
529 of which no longer exist.
530
531 2001-11-25 Thien-Thi Nguyen <ttn@glug.org>
532
533 * posix.texi: Fix spelling. Thanks to Chris Cramer.
534 Reword `getpass' intro blurb.
535
536 2001-11-23 Neil Jerram <neil@ossau.uklinux.net>
537
538 * program.texi (Program Control): Remove spurious placeholder
539 text.
540
541 2001-11-20 Thien-Thi Nguyen <ttn@glug.org>
542
543 * scheme-options.texi (Install Config):
544 Tweak `%load-path' verb to not imply it's a proc.
545 Add documentation for `%guile-build-info'.
546
547 2001-11-19 Neil Jerram <neil@ossau.uklinux.net>
548
549 * scheme-data.texi (Symbol Tables), new-docstrings.texi: Removed
550 doc for builtin-bindings (no longer exists).
551 (Variables): Expanded existing description of variables. Removed
552 doc for builtin-variable (no longer exists).
553
554 * scheme-binding.texi (Top Level): New docs for define, scm_define
555 and scm_c_define. Also clarified point about interchangeability
556 of define and set!.
557
558 2001-11-18 Neil Jerram <neil@ossau.uklinux.net>
559
560 * scheme-data.texi (Vectors): Autoupdate docs for
561 vector-move-left! and vector-move-right!.
562
563 2001-11-16 Neil Jerram <neil@ossau.uklinux.net>
564
565 * debugging.texi, deprecated.texi, intro.texi, misc-modules.texi,
566 new-docstrings.texi, posix.texi, scheme-binding.texi,
567 scheme-control.texi, scheme-data.texi, scheme-debug.texi,
568 scheme-evaluation.texi, scheme-io.texi, scheme-memory.texi,
569 scheme-modules.texi, scheme-options.texi, scheme-procedures.texi,
570 scheme-scheduling.texi, scheme-translation.texi,
571 scheme-utility.texi, script-getopt.texi, srfi-modules.texi: Change
572 category for "primitive" and "procedure" @deffn's to {Scheme
573 Procedure}; add @deffnx lines for {C Function}s; automatic updates
574 from libguile docstring changes.
575
576 * scheme-memory.texi (Garbage Collection): Removed doc for removed
577 `unhash-name'.
578
579 2001-11-14 Thien-Thi Nguyen <ttn@glug.org>
580
581 * scheme-procedures.texi: Spell "library" correctly.
582
583 2001-11-13 Neil Jerram <neil@ossau.uklinux.net>
584
585 * new-docstrings.texi, scheme-data.texi: Merge recent doc
586 improvements from stable branch.
587
588 * scheme-options.texi: Automatic updates from docstring changes in
589 libguile's C source code.
590
591 2001-11-12 Neil Jerram <neil@ossau.uklinux.net>
592
593 * scheme-data.texi (Vtables, Structure Basics): Automatic doc
594 updates for struct? and struct-vtable?.
595 (String Searching): Add missing "for". Thanks to Scott Lenser.
596
597 2001-11-08 Neil Jerram <neil@ossau.uklinux.net>
598
599 * guile.texi (Top): Added new chapter `Programming Options'.
600
601 * program.texi: New file.
602
603 * Makefile.am (guile_TEXINFOS): Added program.texi.
604
605 2001-11-07 Neil Jerram <neil@ossau.uklinux.net>
606
607 * scheme-memory.texi, scheme-io.texi, scheme-debug.texi,
608 scheme-data.texi, scheme-binding.texi, posix.texi,
609 new-docstrings.texi: Automatic updates from improved libguile
610 docstrings.
611
612 2001-11-04 Neil Jerram <neil@ossau.uklinux.net>
613
614 * preface.texi: Use MANUAL_EDITION variable.
615 (Manual Layout): Updated to reflect reorg.
616
617 * guile.texi (MANUAL_EDITION): New variable, with value
618 incremented from 1.0 to 1.1 to reflect the reorg described here.
619 (Top): Use MANUAL_EDITION variable.
620
621 * scheme-indices.texi (R5RS Index, Guile Extensions Index): Use
622 @unnumbered rather than @chapter for these indices.
623
624 * guile.texi (Top): A little top-level reshuffling, with the aims
625 that: (1) the `Guile Scheme' (reference) part of the manual
626 becomes the `Guile API Reference', and covers both Scheme and C
627 interfaces; (2) non-API-reference material such as the `Basic
628 Ideas in Scheme' chapter is collected together to form a new part
629 `Programming with Guile'. This new part will contain general
630 documentation on using and programming Guile in both Scheme and C,
631 including - for example - awareness of GC when C programming, how
632 to use the snarf macros, how to debug ...
633 (Top): Move inclusion of scheme-indices.texi so that all indices
634 appear together in the printed manual.
635
636 * Makefile.am (guile_TEXINFOS): Removed appendices.texi, added
637 debugging.texi.
638
639 * appendices.texi: Removed.
640
641 * debugging.texi (Debugger User Interface): New file, same as the
642 material that used to be in appendices.texi, but now a chapter in
643 Part II rather than an appendix.
644
645 * appendices.texi (Obtaining and Installing Guile): Moved to
646 become a chapter in ...
647 * intro.texi: ... Part I: Introduction to Guile.
648
649 * scm.texi (I/O Extensions): Moved to become a section of ...
650 * scheme-io.texi (Input and Output): ... this chapter.
651
652 * scm.texi (Handling Errors): Moved to become a section of ...
653 * scheme-control.texi (Control Mechanisms): ... this chapter.
654
655 2001-11-06 Thien-Thi Nguyen <ttn@glug.org>
656
657 * srfi-modules.texi (SRFI-19, SRFI-19 Constants, SRFI-19 Current
658 time and clock resolution, SRFI-19 Time object and accessors,
659 SRFI-19 Time comparison procedures, SRFI-19 Time arithmetic
660 procedures, SRFI-19 Date object and accessors, SRFI-19
661 Time/Date/Julian Day/Modified Julian Day converters, SRFI-19 Date
662 to string/string to date converters): New nodes.
663 (SRFI Support): Add "SRFI-19" to menu.
664
665 2001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
666
667 * scripts.texi: Document `--debug' and `--no-debug'.
668
669 2001-10-27 Gary Houston <ghouston@arglist.com>
670
671 * guile.texi, scsh.texi: removed obsolete guile-scsh material
672 and updated links (I don't know if it should remain in the
673 main menu. It's like slib I think.)
674
675 * minor updates to the slib installation notes.
676
677 2001-10-05 Neil Jerram <neil@ossau.uklinux.net>
678
679 * scheme-evaluation.texi (Fly Evaluation): Removed documentation
680 for `read-and-eval!' and `eval2'. (Thanks to Alex Schroeder for
681 noticing that they'd disappeared!)
682
683 2001-10-05 Thien-Thi Nguyen <ttn@glug.org>
684
685 * scheme-io.texi (Writing): Add entry for `display'.
686 Include in R5RS Index. Thanks to Alex Schroeder for suggestion.
687
688 2001-09-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
689
690 * srfi-modules.texi (SRFI-13): Tyop fix.
691 (SRFI-13): Changed paragraph about bindings both in the code and
692 in SRFI-13.
693
694 * misc-modules.texi (Formatted Output): Tyop fix.
695 (Formatted Output): Document ~g properly.
696
697 Thanks to Alex Schroeder for pointing out the typos and sending
698 suggestions.
699
700 2001-09-25 Thien-Thi Nguyen <ttn@glug.org>
701
702 * scheme-procedures.texi (Syntax Rules): Add `cindex' directive.
703 Thanks to suggestion by Alex Schroeder.
704
705 2001-08-30 Neil Jerram <neil@ossau.uklinux.net>
706
707 * guile.texi (Top): Group all index nodes together so that
708 `Info-index' works more effectively in Info. Thanks to Eric
709 Hanchrow for the report and fix.
710
711 * scheme-data.texi (Random, String Syntax, String Modification,
712 Regular Expressions), scheme-ideas.texi (Definition),
713 scheme-modules.texi (Dynamic Linking and Compiled Code Modules),
714 scm.texi (Transforming Scheme name to C name, Port
715 Implementation): Various typo fixes and clarifications merged from
716 the stable CVS branch.
717
718 2001-08-27 Neil Jerram <neil@ossau.uklinux.net>
719
720 * intro.texi: Merged wording fixes from stable CVS branch.
721
722 * Makefile.am (guile_TEXINFOS): Remove ../AUTHORS.
723
724 * guile.texi: Incorporate text previously in separate AUTHORS
725 file.
726
727 2001-08-27 Neil Jerram <neil@ossau.uklinux.net>
728
729 The change log for files in this directory continues backwards
730 from 2001-08-27 in ../ChangeLog, as all the Guile documentation
731 prior to this date was contained in a single directory.