*** empty log message ***
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
e2d23cc0
NJ
12006-10-13 Neil Jerram <neil@ossau.uklinux.net>
2
3 Integration of Unix domain socket patch from William Xu:
4
5 * gds-client.scm (connect-to-gds): Try to connect by Unix domain
6 socket if TCP connection fails.
7
8 * gds-server.scm (run-server): Update to support listening on a
9 Unix domain socket.
10
afc4ccd4
KR
112006-10-05 Kevin Ryde <user42@zip.com.au>
12
13 * ftw.scm (visited?-proc): Use hashv since we know we're getting
14 numbers. Incorporate stat:dev, since stat:ino is only unique within a
15 single device. This fixes a bug where if two files with the same
16 inode on different devices where seen only the first would be returned
17 by ftw (and nftw).
18
83a5b41b
NJ
192006-10-03 Neil Jerram <neil@ossau.uklinux.net>
20
21 * gds-client.scm (run-utility): Remove unnecessary
22 `connect-to-gds' call.
23
63258dc9
NJ
242006-09-30 Neil Jerram <neil@ossau.uklinux.net>
25
26 * debugging/ice-9-debugger-extensions.scm (debug-trap): Use
27 `debugger-command-loop' instead of `read-and-dispatch-commands',
28 which isn't actually available. Thanks to Carlos Pita for
29 reporting this.
30 (debugger-command-loop): Define here for 1.6.x.
31
ee6be719
NJ
322006-09-25 Neil Jerram <neil@ossau.uklinux.net>
33
34 * debugging/ice-9-debugger-extensions.scm (debugger:step):
35 Docstring improvements.
36 (debugger:next): Docstring improvements.
37 (debugger:continue): Docstring improvements.
38
39 * debugger/commands.scm (up, down): Docstring corrections.
40 (info-args, info-frame, position, evaluate): Docstring
41 improvements.
42
afc4ccd4
KR
432006-09-23 Kevin Ryde <user42@zip.com.au>
44
45 * boot-9.scm (log, log10, exp, sqrt): Remove, now in
46 libguile/numbers.c.
47
482006-09-07 Kevin Ryde <user42@zip.com.au>
49
50 * format.scm: Module "(ice-9 threads)" no longer used, now no mutex.
51 (format:parse-float): Fix normalization of leading zeros like "02.5"
52 to "2.5". left-zeros was zeroed before adjusting format:fn-dot,
53 resulting in the latter being unchanged.
54
8746959c
NJ
552006-08-18 Neil Jerram <neil@ossau.uklinux.net>
56
57 * debugging/trc.scm: New file.
58
59 * debugging/traps.scm: New file.
60
61 * debugging/trace.scm: New file.
62
63 * debugging/steps.scm: New file.
64
65 * debugging/load-hooks.scm: New file.
66
67 * debugging/ice-9-debugger-extensions.scm: New file.
68
69 * debugging/example-fns.scm: New file.
70
71 * debugging/breakpoints.scm: New file.
72
73 * debugging/Makefile.am: New.
74
75 * Makefile.am (SUBDIRS): Add debugging.
76
afc4ccd4
KR
772006-08-02 Kevin Ryde <user42@zip.com.au>
78
79 * boot-9.scm (%record-type-check): New function.
80 (record-accessor, record-modifier): Use it for a strict type check of
81 the given record. Previously an accessor returned #f on a wrong
82 record type, and modifier silently did nothing.
83
ea19f0b3
NJ
842006-06-19 Neil Jerram <neil@ossau.uklinux.net>
85
86 * Makefile.am (ice9_sources): Add new files.
87
88 * gds-client.scm, gds-server.scm: New files.
89
5be9f729
KR
902006-05-28 Kevin Ryde <user42@zip.com.au>
91
92 * documentation.scm (file-commentary): Move make-regexp into
93 file-commentary so that it's possible to get to the repl prompt when
94 regexps are not available.
95
962006-05-09 Kevin Ryde <user42@zip.com.au>
97
98 * threads.scm (n-par-for-each, n-for-each-par-map): Two more spots
99 where `futures' should become `threads' from Marius' change of
100 2006-01-29.
101
cd5fea8d
KR
102