(Remembering During Operations): Refer to all "Guile
[bpt/guile.git] / doc / ref / ChangeLog
CommitLineData
67116e5e
KR
12003-06-19 Kevin Ryde <user42@zip.com.au>
2
3 * scheme-io.texi (File Ports): Describe call-with-input-file and
4 call-with-output-file together. Describe with-input-from-file,
5 with-output-to-file and with-error-to-file together, and add that they
6 use dynamic-wind on the current port setting and keep the port open in
7 support of captured continuations.
8 (Closing): Describe close-input-port and close-output-port together,
9 tweak the wording slightly.
10
df7986ca
KR
112003-06-14 Kevin Ryde <user42@zip.com.au>
12
67116e5e
KR
13 * data-rep.texi (Vector Data): For SCM_VECTOR_BASE, SCM_STRING_CHARS
14 and SCM_SYMBOL_CHARS, cross reference "Remembering During Operations".
15
df7986ca
KR
16 * scheme-data.texi (Arithmetic): round is to nearest even.
17
b72cfff1
KR
182003-06-12 Kevin Ryde <user42@zip.com.au>
19
20 * data-rep.texi (Remembering During Operations): New section.
21
22 * scheme-data.texi (Primitive Numerics): Add atan2, pow, asinh, acosh
23 and atanh to scheme<->C table. Note asinh, acosh and atanh are C99,
24 and scm_asinh, scm_acosh and scm_atanh are equivalents. Cross ref
25 glibc "Mathematics". Reword this end part for clarity.
26
27 * scheme-memory.texi (Memory Blocks): Use {} around types for
28 @deftypefn, for correct name in indexes.
29 * scheme-utility.texi (C Hooks): Ditto.
30 * gh.texi (Scheme to C): Ditto.
31
32 * gh.texi (Scheme to C): In gh_scm2newstr, lenp is size_t* not int*.
33 This changed in guile 1.6, the docs weren't updated.
34
067067e4
MV
352003-06-09 Marius Vollmer <mvo@zagadka.de>
36
37 From Mike Gran <spikegran@earthlink.net>. Thanks!
38
39 * preface.texi: Minor punctuation mistakes. Hyphens should link
40 compound adjectives. Commas should be placed after a "therefore"
41 that begins a sentence. Commas should not be used to separate a
42 list of only 2 dependent clauses.
43
ae0bdfe0
KR
442003-06-07 Kevin Ryde <user42@zip.com.au>
45
46 * scheme-data.texi (Arithmetic): Cross reference glibc floor and ceil.
47
e418bd7c
KR
482003-06-05 Kevin Ryde <user42@zip.com.au>
49
50 * posix.texi (File System): stat:rdev and stat:blocks can return #f,
51 stat:blksize returns a sensible size if the field is not available.
52
53 * scheme-compound.texi (Array Mapping): Reword for clarity, and in
54 particular have the same parameter names in the text and prototypes.
55
56 * scheme-evaluation.texi (Delayed Evaluation): Add delay, reword
57 promise? and force a bit, describe recursive forcing of a promise by
58 its own code.
59
dc07c1a1
KR
60 * scheme-io.texi (Ports): Add notes on garbage collection, and on
61 explicitly closing file ports.
62 (File Ports): Cross reference Ports node on explicit closing.
63
64 * posix.texi (Network Sockets and Communication): Cross reference
65 Ports node on explicit closing.
66
e418bd7c
KR
67 * scheme-scheduling.texi (Futures): New section.
68
69 * srfi-modules.texi (SRFI-13 Miscellaneous): In string-replace, note
70 that start1 and end1 optional is a Guile extension.
71
c47e2599
KR
722003-05-30 Kevin Ryde <user42@zip.com.au>
73
74 * deprecated.texi: Add substring-move-left! and substring-move-right!.
75
76 * scheme-io.texi (Default Ports): Remove duplicate descriptions of
77 set-current-output-port and set-current-error-port.
78
42ad901d
DH
792003-05-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
80
81 * scheme-compound.texi: Clarified that vectors need to be quoted.
82
5e25cd39
KR
832003-05-26 Kevin Ryde <user42@zip.com.au>
84
85 * posix.texi (Locales): Clarify setlocale a bit, list all categories,
86 cross reference to libc.
87
f9c3ffce
KR
882003-05-24 Kevin Ryde <user42@zip.com.au>
89
90 * scheme-procedures.texi: Add index entries lambda, optargs, syncase.
91
92 * scsh.texi (The Scheme shell (scsh)): Add index entries.
93
d97f609a
KR
942003-05-22 Kevin Ryde <user42@zip.com.au>
95
96 * srfi-modules.texi (SRFI-2): Rewrite and-let*, describing plain
97 expression clauses and improving the examples.
98
1ee1076e
MV
992003-05-17 Marius Vollmer <mvo@zagadka.de>
100
101 * posix.texi (socket): Use PF_ instead of AF_ prefix.
102
f6b77266
KR
1032003-05-16 Kevin Ryde <user42@zip.com.au>
104
105 * guile.texi: Use @copying, show copyright and permissions at start of
106 info and html.
107
108 * srfi-modules.texi (SRFI-1 Deleting): Rewrite delete and
109 delete-duplicates, adding behaviour details specified by srfi-1.
110
332a621b
KR
1112003-05-12 Kevin Ryde <user42@zip.com.au>
112
113 * preface.texi (Guile License): Refer to COPYING.LIB.
114
115 * repl-modules.texi (Loading Readline Support, Readline Options):
116 Index entries for readline functions.
117
118 * scheme-control.texi (Handling Errors): Fix regexp error key, should
119 be `regular-expression-syntax'.
120
121 * scheme-data.texi (Complex): Show z argument in prototypes.
122
9cb16d5d
KR
1232003-05-10 Kevin Ryde <user42@zip.com.au>
124
d25e96a4
KR
125 * scheme-data.texi (Reals and Rationals): Fix typo @result{#f}, and
126 put @result outside @code.
127
128 * scheme-data.texi (Bitwise Operations): Note negatives are treated as
129 infinite precision twos complement. Revise `ash' to emphasise this
130 for right shifts of negatives. Describe integer-length behaviour on
131 negatives. Add `...' to logand, logior, logxor since they take
132 multiple parameters.
056f9269 133 * guile.texi (m): New macro.
d25e96a4 134
9cb16d5d
KR
135 * scheme-control.texi (Handling Errors): Revise C support section to
136 get index entries, and clarify parameters. Remove scm_regex_error, no
137 longer exists and wasn't available to applications.
138
d25e96a4
KR
139 * scheme-control.texi (Handling Errors): Index entries for error keys.
140
80dd1cb0 1412003-05-08 Kevin Ryde <user42@zip.com.au>
49584bf2 142
0c935fce
KR
143 * scheme-data.texi (Bitwise Operations): Fix lognot to ones-complement.
144
49584bf2
KR
145 * slib.texi (JACAL): Fix @ref title.
146 Add index entries, use @file and @code variously.
147
d963e93f
KR
1482003-05-06 Kevin Ryde <user42@zip.com.au>
149
150 * scheme-scheduling.texi (C level thread interface): Use @deftypefn
151 not @deftypefun, to get function names (not types) indexed.
152
153 * scheme-options.texi (Build Config): Add index entries for
154 %guile-build-info keys.
155
272f8235
KR
1562003-05-04 Kevin Ryde <user42@zip.com.au>
157
158 * scheme-data.texi (Integer Operations): Describe how quotient,
159 remainder and modulo round their results.
160
44357057
KR
161 * scheme-io.texi (Reading): In read-char and peek-char, fix typos "?"
162 in @rnindex. In port-column, use @: after i.e.
a7b0aa50
KR
163 (Writing): In get-print-state, two spaces after full stop. Add write,
164 revise display.
44357057 165
272f8235
KR
166 * srfi-modules.texi (SRFI-1 Length Append etc): Add count.
167 (SRFI-1 Fold and Map): In reduce, fix typo "... variant of fold", add
168 "f" to fold call shown. In reduce-right, use @code on "reduce".
169
170 * data-rep.texi, gh.texi: Add spaces after some @defun names.
171 * posix.texi (Processes): Fix typo "hhhh".
172
2ce02471
NJ
1732003-05-01 Neil Jerram <neil@ossau.uklinux.net>
174
175 * posix.texi: Add index entries for many variables and functions,
176 either using @defvar/@deffn or @vindex/@pindex. (Patch supplied
177 by Kevin Ryde.)
178
1a61d41b
MV
1792003-04-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
180
181 * posix.texi (scm_c_port_for_each): Added.
182
a95dbade
NJ
1832003-04-26 Neil Jerram <neil@ossau.uklinux.net>
184
d513f5c6
NJ
185 * scheme-data.texi (Symbol Primitives): Document scm_str2symbol
186 and scm_mem2symbol.
187
63bf8015
NJ
188 * data-rep.texi (Describing a New Type): Clarify that
189 scm_make_smob_type_mfpe is deprecated. (Thanks to
190 tomas@fabula.de.)
191
a95dbade
NJ
192 * scheme-control.texi (Handling Errors): Remove scm_sysmissing,
193 long since gone from libguile. (Thanks to Kevin Ryde.)
194
fc87c27a
MV
1952003-04-05 Marius Vollmer <mvo@zagadka.de>
196
197 * preface.texi: Reflect change to LGPL.
198
08c7666d
RB
1992003-03-27 Rob Browning <rlb@defaultvalue.org>
200
201 * scheme-io.texi (Reading): clarify character ordering in port for
202 unread-string.
203
dbd6bd29
RB
2042003-03-07 Rob Browning <rlb@defaultvalue.org>
205
206 * guile.texi: change MANUAL_EDITION to MANUAL-EDITION so we don't
207 choke TeX (thanks to Dale P. Smith).
208
209 * preface.texi: change MANUAL_EDITION to MANUAL-EDITION so we
210 don't choke TeX (thanks to Dale P. Smith).
211
1767a0e0
MD
2122003-01-02 Mikael Djurfeldt <djurfeldt@nada.kth.se>
213
214 * scheme-scheduling.texi (Low level thread primitives): Fixed typo
215 in broadcast-condition-variable.
216
b2cbe8d8
RB
2172002-12-08 Rob Browning <rlb@defaultvalue.org>
218
219 * scheme-options.texi (Build Config): add effective-version docs.
220
7403e409
NJ
2212002-11-17 Neil Jerram <neil@ossau.uklinux.net>
222
82512be0
NJ
223 Applied patches from Stephen Compall as follows. (Thanks!)
224
225 2002-11-06 Stephen Compall <rushing@sigecom.net>
226
227 * posix.texi: Changed quotes to match Texinfo expectations.
228
229 Added references to the glibc manual.
230
231 Used proper Texinfo text marking for many keywords, such as @code,
232 @samp, @env, @var.
233
234 Fixed argument metasyntactic variable references in
235 file-manipulation section so the usage in the descriptions matches
236 the usage in the declarations.
7403e409
NJ
237
238 2002-10-26 Stephen Compall <rushing@sigecom.net>
239
240 * scheme-data.texi: Addition and change of many Texinfo tags,
241 particularly usage of @var and @samp, as well as reformatting of
242 some lists into tables and usage of @result.
243
244 Notes about some things I didn't understand, as well as a
245 missing section on non-control characters.
246
d703aba5
GH
2472002-10-27 Gary Houston <ghouston@arglist.com>
248
249 * scheme-modules.texi (Environments): only available when
250 (ice-9 r5rs) is used.
251 * scsh.texi (The Scheme shell (scsh)): current url is www.scsh.net.
252
a48c626f
MV
2532002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
254
255 * scheme-scheduling.texi: Updated mutex and condition varable
256 functions.
257
9a69a50e
NJ
2582002-10-27 Neil Jerram <neil@ossau.uklinux.net>
259
260 * debugging.texi (Debugging Features): Rewritten.
261
0a50eeaa
NJ
2622002-10-19 Neil Jerram <neil@ossau.uklinux.net>
263
264 * new-docstrings.texi, scheme-binding.texi, scheme-io.texi,
265 scheme-scheduling.texi, posix.texi: Automatic docstring updates.
266
e7d58d26
MV
2672002-10-14 Marius Vollmer <mvo@zagadka.ping.de>
268
269 * intro.texi (Whirlwind Tour): Added pointer to examples
270 directory.
271
acfa1f52
MV
2722002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
273
274 * scheme-scheduling.texi (System Asyncs): Updated.
275
66894177
MV
2762002-10-07 Marius Vollmer <mvo@zagadka.ping.de>
277
278 * scheme-scheduling.texi (Asyncs): Updated.
279 * posix.texi (sigaction): Updated.
280
66add4eb
NJ
2812002-10-03 Neil Jerram <neil@ossau.uklinux.net>
282
283 * posix.texi (Processes), scheme-options.texi (Common Feature
284 Symbols): Refer to provided? rather than deprecated feature?.
285
ba20db9b
MV
2862002-10-03 Marius Vollmer <mvo@zagadka.ping.de>
287
288 * tools.texi (How guile-snarf works): Updated.
289 (Writing your own snarfing macros): New.
290
c936bede
NJ
2912002-09-25 Neil Jerram <neil@ossau.uklinux.net>
292
293 * scheme-debug.texi (Debugging): Make sections into nodes.
294 (Debugging Options): Node removed.
295
296 * scheme-options.texi (Feature Tracking): Brought forward before
297 sections on options.
298 (Runtime Options): New section, to group options-related nodes.
299
3002002-09-24 Neil Jerram <neil@ossau.uklinux.net>
301
302 * scheme-options.texi (Options and Config): Chapter name changed,
303 and intro text improved.
304 (Install Config): Brought forward, and renamed Build
305 Configuration.
306
307 The following doc updates are from Ian Sheldon - thanks!
308
309 * scheme-data.texi (Appending Strings, Regexp Functions, Match
310 Structures): Add examples.
311 (Regular Expressions): Add instruction to use (ice-9 regex)
312 module.
313
314 * slib.texi (SLIB): Remove duplicate `the'.
315
3162002-09-22 Neil Jerram <neil@ossau.uklinux.net>
317
318 * scheme-options.texi (General option interface): Mention
319 eval-options-interface and debug-options-interface.
320
321 * scheme-debug.texi (Debugging): New node describing source
322 properties.
323
c15030be
NJ
3242002-09-19 Neil Jerram <neil@ossau.uklinux.net>
325
326 * scheme-utility.texi (Hook Reference): Improvements to hook docs.
327 Thanks to Thien-Thi Nguyen for the patches.
328
2047e5d7
MV
3292002-09-16 Marius Vollmer <mvo@zagadka.ping.de>
330
331 * scheme-data.texi (Symbol Props): It's "set-symbol-property!",
332 not "set-symbol-property". Thanks to Pieter Pareit!
333
6f663ebc
MV
3342002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
335
336 * scheme-data.texi: Tell them to use 'provided?' instead of
337 '*feaures*'.
338
af31a24f
MV
3392002-09-09 Marius Vollmer <mvo@zagadka.ping.de>
340
1381c506
MV
341 * scheme-ideas.texi (Creating a Procedure): Fixed typo. Thanks to
342 Pieter Pareit!
343
35e791bd
MV
344 * intro.texi: Updated GNu ftp server name. Use "-lguile" instead
345 of "libguile.a". Some small fixes/improvements.
346
af31a24f
MV
347 * scheme-reading.texi: Added www.schemers.org. Removed foldoc,
348 it's too generic. Updated 'teach yourself ...' URL.
349
44ecca61
MV
3502002-08-27 Marius Vollmer <mvo@zagadka.ping.de>
351
af31a24f 352 * scheme-modules.texi: Markup fixes and removal of gh_ references.
44ecca61
MV
353 Thanks to Dale Smith!
354
29dae8f8
MV
3552002-08-14 Marius Vollmer <mvo@zagadka.ping.de>
356
357 * scheme-evaluation.texi (eval-string): Updated.
358
359 * scheme-scheduling.texi (Fluids): Touched up a bit, added
360 with-fluids.
361
28ab7725
MV
3622002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
363
364 * scheme-modules.texi (More Modules Procedures): Removed.
365 (Accessing Modules from C): New.
366
f631e15e
GH
3672002-08-10 Gary Houston <ghouston@arglist.com>
368
08b98c54
GH
369 * scheme-procedures.texi: new section Primitive Procedures,
370 documentation for scm_c_make_gsubr and scm_c_define_gsubr.
371 * scheme-modules.texi (Compiled Code Modules): replace
372 gh_new_procedure with scm_c_define_gsubr.
f631e15e 373
bcf009c3
NJ
3742002-08-08 Neil Jerram <neil@ossau.uklinux.net>
375
395b0a34
NJ
376 * gh.texi (Data types and constants defined by gh): Avoid
377 generating index entry for SCM.
378
379 * posix.texi (Runtime Environment): Remove duplicate doc for
380 setenv.
381
bcf009c3
NJ
382 * data-rep.texi, scheme-memory.texi, scheme-modules.texi: Merge
383 recent updates from stable branch.
384
385 * posix.texi (File System, Time, Pipes, Network Databases,
386 Internet Socket Examples): Add examples provided by Ian Sheldon.
387
00706edc
MV
3882002-08-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
389
390 * scheme-binding.texi: Don't talk about 'bound?' which is gone.
391 Thanks to Christopher Cramer.
392
ba1b2226
HWN
3932002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
394
395 * scheme-memory.texi (Memory Blocks): add scm_calloc, scm_gc_calloc.
396 correct typos.
397
3d0f4c62
MV
3982002-08-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
399
400 * intro.texi, srfi-modules.texi: Added (use-modules (ice-9
401 rdelim)) to an example that uses read-line. Thanks to Ralf
402 Mattes!
403
404 * scheme-memory.texi: Added an introductory blurb about GC that I
405 had lying around.
406
c3164ca8
GH
4072002-08-02 Gary Houston <ghouston@arglist.com>
408
409 * scheme-modules.texi: split "Scheme and modules" into
410 "provide and require" and "Environments". Mention R5RS
411 environments.
412
3db03338
NJ
4132002-07-16 Neil Jerram <neil@ossau.uklinux.net>
414
415 * scheme-options.texi (Debugger options): New subsection
416 describing stack overflow and what to do about it.
417
dd235de4
GH
4182002-07-10 Gary Houston <ghouston@arglist.com>
419
420 * scheme-modules.texi (Compiled Code Modules): Removed description
421 of scm_register_module_xxx, which no longer exists. A description
422 of current techniques is needed.
423
e717bf46
MV
4242002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
425
426 * scheme-data.texi (Numbers): Added description of the new values
427 +inf.0, -inf.0 and +nan.0.
428
429 * posix.texi (Runtime Environment): Added entries for 'setenv' and
430 'unsetenv'.
431
4322002-04-28 Marius Vollmer <mvo@zagadka.ping.de>
433
434 * gh.texi, data-rep.texi: Moved `@deftyp {Data type} SCM' line
435 from gh.texi to data-rep.texi. Both files already had similar
436 descriptions for SCM. Given that gh.texi is deprecated, looking
437 up `SCM' in the index should take one to the primary location
438 rather than deprecated section. Hence this change. Added
439 `@deftp' for scm_t_bits data type so that a proper index entry is
440 added for this. Thanks to Richard Y. Kim!
441
442 * data-rep.texi (Subrs): Changed scm_make_gsubr to
443 scm_c_define_gsubr. Thanks to Richard Y. Kim!
444
efb7d2fc
MV
4452002-04-24 Marius Vollmer <mvo@zagadka.ping.de>
446
447 * srfi-modules.texi (SRFI-13 Miscellaneous): Updated docs of
448 string-tokenize.
449
1982a56a
NJ
4502002-04-20 Neil Jerram <neil@ossau.uklinux.net>
451
ce9d0562
NJ
452 * scheme-intro.texi (Scheme Layout), scm.texi (Reference Layout):
453 Node moved from a to b.
454
455 * guile.texi (Scheme Intro, Basic Ideas, Guile Scripting, Command
456 Line Handling, Debugging Features, Autoconf Support, Miscellaneous
457 Tools, Further Reading): Moved to new Part II.
458
459 * preface.texi (Manual Layout): Part numbers updated accordingly.
460
461 * guile.texi (Top): Move API Overview node to beginning of Guile
462 API Reference part.
463 (Part II: Writing and Running Guile Scheme): New part; will
464 contain content from `Programming with Guile' that pertains to
465 writing and using Guile on the Scheme level.
466
467 * scm.texi (API Overview): Renamed from `Guile API'.
468
469 * guile.texi (Top), scheme-modules.texi (Included Guile Modules):
470 Debugger User Interface node renamed Debugging Features.
471
472 * debugging.texi (Stacks and Frames): Node deleted; non-duplicated
473 material moved to scheme-debug.texi.
474 (Debugging Features): Renamed from `Debugger User Interface'.
475
f2ba76ae
NJ
476 * scheme-debug.texi (Debugging): Rename chapter `Debugging
477 Infrastructure' and reorganize its contents.
478
479 * scheme-debug.texi (Debugging), scheme-control.texi (Handling
480 Errors): Move display-error to error-focussed section.
481
482 * scheme-debug.texi (Debugging), debugging.texi (Backtrace): Move
483 backtrace to user-level debugging chapter.
484
485 * scheme-debug.texi (Debugging), scheme-procedures.texi (Procedure
486 Properties): Move procedure-name, procedure-source and
487 procedure-environment to procedures chapter.
488
489 * scheme-debug.texi (Debugging), scheme-memory.texi (Memory
490 Blocks): Move malloc-stats to memory management chapter.
491
492 * scheme-procedures.texi (Syntax Rules): Remove mention of
493 use-modules for loading syncase; only use-syntax really works.
494 Thanks to Panagiotis Vossos for spotting this.
495
1982a56a
NJ
496 * program.texi (Scheme vs C): New node, with existing material
497 taken from chapter intro.
498 (Programming Overview): New intro para to introduce example of
499 Guile integration:
500 (Extending Dia): New node.
501
dc006627
MV
5022002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
503
504 * Makefile.am (CLEANFILES): Added guile.cps, guile.fns, guile.rns,
505 guile.tps, guile.vrs, guile.tmp.
506
755de645
NJ
5072002-04-01 Neil Jerram <neil@ossau.uklinux.net>
508
0624ce33
NJ
509 * scheme-intro.texi (Scheme Layout): Remove reference to defunct
510 Guile Extensions index.
511
512 * guile.texi: Removed Guile Extensions index.
513
514 * scheme-indices.texi (Guile Extensions Index): Removed.
515
516 * guile.texi: Remove vgone, vdeprecated, vchanged and vnote
517 macros; they're not actually useful after all. Update copyright
518 years.
519
520 * scheme-compound.texi (Vectors): Make subsections into nodes.
521 (Vectors): Review, slightly reorg and clarify docs in this
522 section.
523
755de645
NJ
524 * scheme-data.texi (Symbols): Reorganized node substructure and
525 added lots of explanatory text around the @deffn's.
526
e8f1ff71
NJ
5272002-03-29 Neil Jerram <neil@ossau.uklinux.net>
528
755de645
NJ
529 * scheme-modules.texi (Variables): Mention obarrays.
530
531 * scheme-data.texi (Symbol Tables, Symbol Props): Remove vgone
532 markers for deprecated symbol items.
533 (Symbol Props): Remove doc for obsolete 2 arg version of
534 symbol-interned?.
535 (String Miscellanea): Removed, since it only contained duplicate
536 doc for string-ci->symbol.
537 (Symbol Tables): Move doc for gensym to Symbol Primitives; rest of
538 section removed.
539
e8f1ff71
NJ
540 * posix.texi (Ports and File Descriptors), scheme-evaluation.texi
541 (Fly Evaluation): Remove vgone markers for close-all-ports-except,
542 eval2 and read-and-eval!.
543
544 * data-rep.texi (Describing a New Type), scheme-compound.texi
545 (Append/Reverse), scheme-procedures.texi (Internal Macros):
546 Trivial updates to sync with stable branch.
547
801892e7
NJ
5482002-03-27 Neil Jerram <neil@ossau.uklinux.net>
549
550 * scheme-compound.texi (List Searching): Remove docs for
551 `scm_sloppy_mem*', which no longer exist.
552
5532002-03-24 Neil Jerram <neil@ossau.uklinux.net>
554
555 * guile.texi (Top), intro.texi (What is Guile?, The Basic Guile
556 Package): Use @ifnottex instead of @ifinfo, so that HTML
557 generation works correctly.
558
e31a525e
MV
5592002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
560
561 * tools.texi: Updated to reflect changes to the guile-snarf tool.
562
c16da59f
NJ
5632002-03-16 Neil Jerram <neil@ossau.uklinux.net>
564
565 * scheme-utility.texi (Hooks): Further updates. New material on
566 GC hooks.
567
568 * scheme-evaluation.texi (Fly Evaluation): Note disappearance of
569 eval2 and read-and-eval!.
570
571 * deprecated.texi (Deprecated): Remove docs about previously
572 deprecated items that have now been removed.
573
34ad73ed
TTN
5742002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
575
576 * tools.texi (guile-1.4 guile-snarf): Remove this node.
577 (How guile-snarf works): Update usage and description to
578 no longer mention "--compat=1.4" and instead "-d" and "-D".
579 (Macros guile-snarf recognizes): Add list of deprecated macros
580 and blurb. Add cindex for deprecated macros.
581
198586ed
NJ
5822002-03-15 Neil Jerram <neil@ossau.uklinux.net>
583
387d418c
NJ
584 * scheme-utility.texi (Hooks): Reviewed and updated.
585
586 * scheme-options.texi (Feature Tracking): New section.
587
588 * scheme-data.texi (Arithmetic, Primitive Numerics): Add
589 description of corresponding C functions.
590
198586ed
NJ
591 * scheme-utility.texi (Object Properties): Revamp documentation on
592 object properties.
593
594 * scheme-memory.texi (Weak References): Update reference to Object
595 Properties node.
596
597 * guile.texi: Add macros for describing version information.
598
599 * scheme-data.texi, scheme-debug.texi, scheme-io.texi,
600 scheme-procedures.texi: Automatic updates from snarfed libguile
601 docstrings.
602
13b68204
TTN
6032002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
604
605 * Makefile.am (guile_toc.html): Look for guile.texi in $(srcdir).
606
2287fb53
TTN
607 * tools.texi (How guile-snarf works): Mention "--compat=1.4", and
608 new processing steps. Update usage example, makefile frag.
609
610 (guile-1.4 guile-snarf): New subsubsection under
611 "Init Snarfing with guile-snarf".
612
413d32b6
NJ
6132002-03-12 Neil Jerram <neil@ossau.uklinux.net>
614
21b83aab
NJ
615 * scheme-compound.texi, scheme-data.texi, new-docstrings.texi:
616 Automatic updates from snarfed libguile docstrings.
617
413d32b6
NJ
618 * data-rep.texi, guile.texi, scheme-evaluation.texi,
619 scheme-options.texi, scheme-translation.texi: Various minor
620 enhancements ported from the stable CVS branch.
621
1ebf1566
TTN
6222002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
623
624 * tools.texi (Miscellaneous Tools): New node/chapter.
625 (Snarfing, Init Snarfing with guile-snarf, How guile-snarf works,
626 Macros guile-snarf recognizes, Doc Snarfing): New nodes/(sub)sections.
627 (Executable Modules): Now a section under "Miscellaneous Tools".
628
629 * guile.texi (Miscellaneous Tools): Add under "Part II".
630 Implement by including tools.texi.
631
632 * Makefile.am (guile_TEXINFOS): Add tools.texi.
633
6342002-03-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
635
636 * tools.texi: New file.
637
a3f0622d
NJ
6382002-03-03 Neil Jerram <neil@ossau.uklinux.net>
639
640 * autoconf.texi (Autoconf Background): Insert missing `of'.
641
228a24ef
DH
6422002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
643
644 * api.txt, data-rep.texi: Renamed the struct scm_cell to
645 scm_t_cell.
646
647 * data-rep.texi: Renamed scm_alloc_cell to scm_cell and
648 scm_alloc_double_cell to scm_double_cell.
649
eee065c4
MV
6502002-03-01 Marius Vollmer <mvo@zagadka.ping.de>
651
652 * scheme-memory.texi (Upgrading from scm_must_malloc et al): New
653 section.
654
621f22b1
MV
6552002-02-28 Marius Vollmer <mvo@zagadka.ping.de>
656
657 * data-rep.texi: Use scm_gc_malloc and scm_gc_free instead of
658 scm_must_malloc and free in example code. Updated text for the
659 new memory management functions.
660
661 * scheme-debug.texi (malloc-stats): Refer to scm_gc_malloc instead
662 of to scm_must_malloc.
663
edb810bb
SJ
6642002-02-27 Stefan Jahn <stefan@lkcc.org>
665
666 * gh.texi (scm transition summary): Documented some more
667 gh equivalents and removed appropriate FIXME's.
668
327d4dd3
TTN
6692002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
670
671 * Makefile.am: Update path to pre-inst-guile automake frag.
672
8794fdca
RB
6732002-02-24 Rob Browning <rlb@defaultvalue.org>
674
675 * .cvsignore: add autoconf-macros.texi.
676
677 * Makefile.am (CLEANFILES): add autoconf-macros.texi.
678
bd75ebc3
MV
6792002-02-19 Marius Vollmer <mvo@zagadka.ping.de>
680
681 * scheme-memory.texi (Memory Blocks): New section.
682
5e9d88a4
TTN
6832002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
684
685 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
686
687 (GUILE): Delete var.
688 (autoconf-macros.texi): Use $(preinstguiletool).
689
7c5c2796
TTN
6902002-02-04 Thien-Thi Nguyen <ttn@giblet.glug.org>
691
692 * autoconf.texi (Autofrisk, Using Autofrisk): New sections.
693 (Autoconf Support): Add new sections to menu.
694
402e687c
MV
6952002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
696
697 * scheme-data.texi (Symbol Uninterned): Added node.
698
f74fa0a0
SJ
6992002-01-29 Stefan Jahn <stefan@lkcc.org>
700
701 * gh.texi (scm transition summary): Documented gh equivalents
702 `scm_c_string2str', `scm_c_substring2str' and `scm_c_symbol2str'
703 and removed the appropriate FIXME's.
704
68cf83e0
MV
7052002-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
706
707 * Makefile.am (autoconf-macros.texi): Also set GUILE_LOAD_PATH
708 when invoking the uninstalled guile executable.
709
5b156bcd
TTN
7102002-01-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
711
712 * Makefile.am (autoconf-macros.texi): Fix build bug:
713 Write this file to srcdir. Thanks to I. N. Golubev.
714
8430281a
GH
7152002-01-08 Gary Houston <ghouston@arglist.com>
716
717 * Makefile.am: attempt to use guile from $(top_builddir)/libguile
718 when building autoconf-macros.texi. There are still problems with
719 modules and running makeinfo when builddir != srcdir.
720
a3e49ac1
TTN
7212002-01-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
722
723 * data-rep.texi, gh.texi, guile.texi, intro.texi,
724 misc-modules.texi, new-docstrings.texi, posix.texi, program.texi,
725 repl-modules.texi, scheme-binding.texi, scheme-compound.texi,
726 scheme-control.texi, scheme-data.texi, scheme-debug.texi,
727 scheme-ideas.texi, scheme-io.texi, scheme-memory.texi,
728 scheme-modules.texi, scheme-procedures.texi,
729 scheme-translation.texi, scheme-utility.texi, scm.texi, slib.texi,
730 srfi-modules.texi: Spell check. Thanks to Fabrice Bauzac.
731
4902ea64
NJ
7322002-01-07 Neil Jerram <neil@ossau.uklinux.net>
733
734 * intro.texi (Linking Programs With Guile): Fix typo (superfluous
735 `do'). Thanks to Fabrice Bauzac.
736
f1597833
TTN
7372002-01-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
738
739 * intro.texi: Spell check. Thanks to Fabrice Bauzac.
740
4d9678fd
TTN
7412002-01-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
742
743 * guile.texi (Part II): Add "Autoconf Support"; include
744 autoconf.texi.
745
746 * Makefile.am (guile_TEXINFOS): Add autoconf.texi and
747 autoconf-macros.texi.
748 (autoconf.texi, autoconf-macros.texi): New rules.
749
750 * autoconf.texi: New file.
751
0fabb425
MV
7522001-12-22 Marius Vollmer <mvo@zagadka.ping.de>
753
754 * scheme-compound.texi (Alist Example): Changed "Bismarck" to
755 "Pierre". Thanks to Ron Peterson!
756
226297eb
NJ
7572001-12-22 Neil Jerram <neil@ossau.uklinux.net>
758
759 * program.texi (Programming Overview): Chapter renamed from
760 `Programming Options'; some new material added.
761
a7a7bb95
NJ
7622001-12-07 Neil Jerram <neil@ossau.uklinux.net>
763
764 * scm.texi (Guile API): Renamed from `Scheme Primitives' and
765 broadened so that this chapter discusses the Guile API as a whole.
766
767 * program.texi (Available Functionality): Revise so that text
768 reads better.
769
770 * guile.texi (Programming Intro): New introductory text.
771
772 * scheme-ideas.texi (Definition): Reorder reference bullets in
773 ascending page number order.
774
923d5b87
MG
7752001-12-04 Martin Grabmueller <mg@glug.org>
776
777 * scheme-procedures.texi (Optional Arguments): Typo fix: wither ->
778 either.
779
2a946b44
NJ
7802001-12-01 Neil Jerram <neil@ossau.uklinux.net>
781
4c731ece
NJ
782 * scheme-data.texi (Hooks): Moved into scheme-utility.texi.
783
784 * Makefile.am (guile_TEXINFOS): Added scheme-compound.texi.
785
2a946b44
NJ
786 * scheme-data.texi (Variables): Node moved to modules chapter.
787 (Symbol Read Syntax): New node, with syntax-related material taken
788 from old Symbols node.
789 (Symbol Primitives): Renamed from `Symbols'.
790 (Symbols and Variables): Renamed to `Symbols'.
791 (Symbol Props): Renamed from `Symbol Tables'.
792 (Symbols): General review, improvements and additional material
793 throughout this section.
4c731ece
NJ
794 (Other Data Types): New material: links to object types documented
795 elsewhere. Also renamed node to `Other Types'.
796 (Data Types): Split into two: `Simple Data Types' and `Compound
797 Data Types'. Introductory blurbs rewritten accordingly.
2a946b44
NJ
798
799 * guile.texi: Updated Notes comment.
800
801 * scheme-data.texi (Rx Interface): Node moved to Guile Modules
802 part, as the Rx interface is not core Guile.
803
8042001-11-30 Neil Jerram <neil@ossau.uklinux.net>
805
806 * scheme-data.texi (String Miscellanea): Removed, moving doc for
807 string-ci->symbol into the node on Symbols.
808
809 * Makefile.am (ETAGS_ARGS): Added.
810
811 * scheme-data.texi (Symbol Tables): Removed doc for gentemp,
812 intern-symbol, string->obarray-symbol, symbol-binding,
813 symbol-bound?, symbol-set!, unintern-symbol, symbol-interned?; all
814 of which no longer exist.
815
5f7dd1ca
TTN
8162001-11-25 Thien-Thi Nguyen <ttn@glug.org>
817
818 * posix.texi: Fix spelling. Thanks to Chris Cramer.
819 Reword `getpass' intro blurb.
820
c276c3e3
NJ
8212001-11-23 Neil Jerram <neil@ossau.uklinux.net>
822
823 * program.texi (Program Control): Remove spurious placeholder
824 text.
825
19a35d19
TTN
8262001-11-20 Thien-Thi Nguyen <ttn@glug.org>
827
828 * scheme-options.texi (Install Config):
829 Tweak `%load-path' verb to not imply it's a proc.
830 Add documentation for `%guile-build-info'.
831
d4e5a409
NJ
8322001-11-19 Neil Jerram <neil@ossau.uklinux.net>
833
834 * scheme-data.texi (Symbol Tables), new-docstrings.texi: Removed
835 doc for builtin-bindings (no longer exists).
836 (Variables): Expanded existing description of variables. Removed
837 doc for builtin-variable (no longer exists).
838
839 * scheme-binding.texi (Top Level): New docs for define, scm_define
840 and scm_c_define. Also clarified point about interchangeability
841 of define and set!.
842
694a9bb3
NJ
8432001-11-18 Neil Jerram <neil@ossau.uklinux.net>
844
845 * scheme-data.texi (Vectors): Autoupdate docs for
846 vector-move-left! and vector-move-right!.
847
8f85c0c6
NJ
8482001-11-16 Neil Jerram <neil@ossau.uklinux.net>
849
850 * debugging.texi, deprecated.texi, intro.texi, misc-modules.texi,
851 new-docstrings.texi, posix.texi, scheme-binding.texi,
852 scheme-control.texi, scheme-data.texi, scheme-debug.texi,
853 scheme-evaluation.texi, scheme-io.texi, scheme-memory.texi,
854 scheme-modules.texi, scheme-options.texi, scheme-procedures.texi,
855 scheme-scheduling.texi, scheme-translation.texi,
856 scheme-utility.texi, script-getopt.texi, srfi-modules.texi: Change
857 category for "primitive" and "procedure" @deffn's to {Scheme
858 Procedure}; add @deffnx lines for {C Function}s; automatic updates
859 from libguile docstring changes.
860
861 * scheme-memory.texi (Garbage Collection): Removed doc for removed
862 `unhash-name'.
863
ef394643
TTN
8642001-11-14 Thien-Thi Nguyen <ttn@glug.org>
865
866 * scheme-procedures.texi: Spell "library" correctly.
867
72dd0a03
NJ
8682001-11-13 Neil Jerram <neil@ossau.uklinux.net>
869
870 * new-docstrings.texi, scheme-data.texi: Merge recent doc
871 improvements from stable branch.
872
873 * scheme-options.texi: Automatic updates from docstring changes in
874 libguile's C source code.
875
b56b5983
NJ
8762001-11-12 Neil Jerram <neil@ossau.uklinux.net>
877
878 * scheme-data.texi (Vtables, Structure Basics): Automatic doc
879 updates for struct? and struct-vtable?.
880 (String Searching): Add missing "for". Thanks to Scott Lenser.
881
9401323e
NJ
8822001-11-08 Neil Jerram <neil@ossau.uklinux.net>
883
884 * guile.texi (Top): Added new chapter `Programming Options'.
885
886 * program.texi: New file.
887
888 * Makefile.am (guile_TEXINFOS): Added program.texi.
889
8902001-11-07 Neil Jerram <neil@ossau.uklinux.net>
891
892 * scheme-memory.texi, scheme-io.texi, scheme-debug.texi,
893 scheme-data.texi, scheme-binding.texi, posix.texi,
894 new-docstrings.texi: Automatic updates from improved libguile
895 docstrings.
896
8972001-11-04 Neil Jerram <neil@ossau.uklinux.net>
898
899 * preface.texi: Use MANUAL_EDITION variable.
900 (Manual Layout): Updated to reflect reorg.
901
902 * guile.texi (MANUAL_EDITION): New variable, with value
903 incremented from 1.0 to 1.1 to reflect the reorg described here.
904 (Top): Use MANUAL_EDITION variable.
905
906 * scheme-indices.texi (R5RS Index, Guile Extensions Index): Use
907 @unnumbered rather than @chapter for these indices.
908
909 * guile.texi (Top): A little top-level reshuffling, with the aims
910 that: (1) the `Guile Scheme' (reference) part of the manual
911 becomes the `Guile API Reference', and covers both Scheme and C
912 interfaces; (2) non-API-reference material such as the `Basic
913 Ideas in Scheme' chapter is collected together to form a new part
914 `Programming with Guile'. This new part will contain general
915 documentation on using and programming Guile in both Scheme and C,
916 including - for example - awareness of GC when C programming, how
917 to use the snarf macros, how to debug ...
918 (Top): Move inclusion of scheme-indices.texi so that all indices
919 appear together in the printed manual.
920
921 * Makefile.am (guile_TEXINFOS): Removed appendices.texi, added
922 debugging.texi.
ef394643 923
9401323e
NJ
924 * appendices.texi: Removed.
925
926 * debugging.texi (Debugger User Interface): New file, same as the
927 material that used to be in appendices.texi, but now a chapter in
928 Part II rather than an appendix.
929
930 * appendices.texi (Obtaining and Installing Guile): Moved to
931 become a chapter in ...
932 * intro.texi: ... Part I: Introduction to Guile.
933
934 * scm.texi (I/O Extensions): Moved to become a section of ...
935 * scheme-io.texi (Input and Output): ... this chapter.
936
937 * scm.texi (Handling Errors): Moved to become a section of ...
938 * scheme-control.texi (Control Mechanisms): ... this chapter.
939
ca26b87d
TTN
9402001-11-06 Thien-Thi Nguyen <ttn@glug.org>
941
942 * srfi-modules.texi (SRFI-19, SRFI-19 Constants, SRFI-19 Current
943 time and clock resolution, SRFI-19 Time object and accessors,
944 SRFI-19 Time comparison procedures, SRFI-19 Time arithmetic
945 procedures, SRFI-19 Date object and accessors, SRFI-19
946 Time/Date/Julian Day/Modified Julian Day converters, SRFI-19 Date
947 to string/string to date converters): New nodes.
04bbd6ce 948 (SRFI Support): Add "SRFI-19" to menu.
ca26b87d 949
7ab89df1
MV
9502001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
951
952 * scripts.texi: Document `--debug' and `--no-debug'.
953
c2c67382
GH
9542001-10-27 Gary Houston <ghouston@arglist.com>
955
a42b5e5b
GH
956 * guile.texi, scsh.texi: removed obsolete guile-scsh material
957 and updated links (I don't know if it should remain in the
958 main menu. It's like slib I think.)
959
c2c67382
GH
960 * minor updates to the slib installation notes.
961
a599743c
NJ
9622001-10-05 Neil Jerram <neil@ossau.uklinux.net>
963
964 * scheme-evaluation.texi (Fly Evaluation): Removed documentation
965 for `read-and-eval!' and `eval2'. (Thanks to Alex Schroeder for
966 noticing that they'd disappeared!)
967
74e0de86
TTN
9682001-10-05 Thien-Thi Nguyen <ttn@glug.org>
969
970 * scheme-io.texi (Writing): Add entry for `display'.
971 Include in R5RS Index. Thanks to Alex Schroeder for suggestion.
972
40f316d0
MG
9732001-09-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
974
975 * srfi-modules.texi (SRFI-13): Tyop fix.
976 (SRFI-13): Changed paragraph about bindings both in the code and
977 in SRFI-13.
978
979 * misc-modules.texi (Formatted Output): Tyop fix.
980 (Formatted Output): Document ~g properly.
981
982 Thanks to Alex Schroeder for pointing out the typos and sending
983 suggestions.
74e0de86 984
523f81ba
TTN
9852001-09-25 Thien-Thi Nguyen <ttn@glug.org>
986
987 * scheme-procedures.texi (Syntax Rules): Add `cindex' directive.
988 Thanks to suggestion by Alex Schroeder.
989
6c997de2
NJ
9902001-08-30 Neil Jerram <neil@ossau.uklinux.net>
991
255ea784
NJ
992 * guile.texi (Top): Group all index nodes together so that
993 `Info-index' works more effectively in Info. Thanks to Eric
994 Hanchrow for the report and fix.
995
6c997de2
NJ
996 * scheme-data.texi (Random, String Syntax, String Modification,
997 Regular Expressions), scheme-ideas.texi (Definition),
998 scheme-modules.texi (Dynamic Linking and Compiled Code Modules),
999 scm.texi (Transforming Scheme name to C name, Port
1000 Implementation): Various typo fixes and clarifications merged from
1001 the stable CVS branch.
1002
b45898ca
NJ
10032001-08-27 Neil Jerram <neil@ossau.uklinux.net>
1004
1005 * intro.texi: Merged wording fixes from stable CVS branch.
1006
1007 * Makefile.am (guile_TEXINFOS): Remove ../AUTHORS.
1008
1009 * guile.texi: Incorporate text previously in separate AUTHORS
1010 file.
1011
10122001-08-27 Neil Jerram <neil@ossau.uklinux.net>
1013
1014 The change log for files in this directory continues backwards
1015 from 2001-08-27 in ../ChangeLog, as all the Guile documentation
1016 prior to this date was contained in a single directory.