* boot-9.scm (error-catching-loop): Added handling of key
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
c90c9685
JB
1Wed Oct 2 23:38:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
2
3 * boot-9.scm (make-record-type, record-constructor): Don't assume
4 the empty list is false when parsing the argument list.
5
6Mon Sep 30 22:15:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
7
8 * boot-9.scm (signal-handler): Clean up logic.
9
10 * boot-9.scm (load): Assume %load-path is always bound.
11
5552355a
GH
12Sat Sep 28 00:15:37 1996 Gary Houston <ghouston@actrix.gen.nz>
13
14 * boot-9.scm (error): replace another throw with scm-error. Throw
15 to 'misc-error instead of 'error (no need to distinguish these.)
16 Don't set up 'error as a key.
17 Set up regex-error as a key, if regex is available.
18 (signal-handler): use scm-error, not throw.
19
20* (%try-load, try-load-with-path, %load, load-with-path,
21 basic-try-load-with-path, basic-load-with-path,
22 try-load-module-with-path,load-module-with-path): deleted, since
23 they seem redundant.
24 (try-load): define using %try-load, not try-load-with-path.
25* (load): rewritten. load tries to open the file directly and
26 with a .scm extension before searching the library directories
27 (should "." be added to %load-path? then load could still open
28 directly files starting with "/").
29 (try-module-autoload): use load, not load-with-path.
30 (%load-indent): deleted, -2 was causing errors.
31
32 (%read-sharp): use port-line, not line-number.
33
c90c9685
JB
34Fri Sep 27 16:23:51 1996 Jim Blandy <jimb@totoro.cyclic.com>
35
36 * boot-9.scm (%%bad-throw): Delete definition. 1) It's very
37 straightforward to provide the equivalent functionality using
38 (catch #t ...), so there's no need for the extra complexity. 2)
39 Outside the context of a read-eval-print loop (which Guile should
40 not require) it's not clear we should do anything more complicated
41 than print an error and exit; the user or REPL can establish
42 something better if it wants. 3) In that case, it's much more
43 robust to just do it in the C code.
44
855c0eac
GH
45Tue Sep 24 06:53:04 1996 Gary Houston <ghouston@actrix.gen.nz>
46
47 * boot-9.scm (%try-load): define using primitive-load. Previously
48 %try-load itself was the primitive.
49 (load-with-path): use scm-error instead of %load-announce-lossage.
50 Errors are thrown to 'misc-error instead of 'could-not-load.
51 (%load-announce-lossage): deleted.
52
a0c97697
MD
53Mon Sep 23 00:16:31 1996 Mikael Djurfeldt <mdj@kenneth>
54
55 * boot-9.scm (warn, scm-style-repl): Use C printer instead of `print'.
56 (make-record-type type-name fields): Temporarily remove support
57 for printing of records (not possible yet with C printer).
58
be2d2c70
GH
59Fri Sep 20 00:24:27 1996 Gary Houston <ghouston@actrix.gen.nz>
60
61 * boot-9.scm (file-exists?, file-is-directory): catch only
62 system-error, not every kind of error.
63 (scm-error): new procedure.
64
434bf5ce
JB
65Thu Sep 19 16:02:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
66
67 * boot-9.scm: Formatting tweaks.
68
2194b6f0
GH
69Wed Sep 18 09:07:37 1996 Gary Houston <ghouston@actrix.gen.nz>
70
71 * boot-9.scm (%%handle-system-error key): remove the code for
72 SCM-style errors. handle the case that an unexpected number
73 of args are supplied.
74 (%%system-errors): removed.
75 (error): redefine using a throw with key and 4 args.
76 ('error): associate 'error, 'error-signal keys with
77 %%handle-system-error.
78 (%%default-error-handler): removed.
79 (signal-handler): throw with 4 args and use the error-signal key.
80 Create an error message instead of using numerical codes.
81 (%%bad-throw): call error instead of throw if key not found.
82
83Tue Sep 17 04:11:28 1996 Gary Houston <ghouston@actrix.gen.nz>
84
85 * boot-9.scm: initialize new error keys (see libguile/ChangeLog).
86 (%%handle-system-error key): check subr is not #f before printing.
87 Recognize %s (embed an argument using "display") and
88 %S (embed an argument using "write").
89
234f2da6
GH
90Sun Sep 15 03:55:35 1996 Gary Houston <ghouston@actrix.gen.nz>
91
92 * boot-9.scm (%%handle-system-error key): set args and rest to
93 the empty list if they are #f.
94 Initialize out-of-range as an error key.
95
e1724d20
GH
96Sat Sep 14 03:41:15 1996 Gary Houston <ghouston@actrix.gen.nz>
97
40c8906e
GH
98 * PLUGIN/REQ: remove the "ice-9 lgh" line which causes a cycle.
99
e1724d20
GH
100 * boot-9.scm: remove leading %% from references to '%%system-error.
101 (%%handle-system-error): don't pass all the thrown arguments when
102 aborting, just the key and subr.
103 Remove the code to "Install default handlers for built-in errors."
104 Remove the definition of the syserror procedure.
105 Associate 'numerical-overflow with default handler.
106
1a80fb07
MD
107Fri Sep 13 04:58:11 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
108
109 * boot-9.scm: Name change: value-ref --> local-ref
110 resolved-ref --> nested-ref Motivation: conformance to the other
111 dictionary operators: list-ref operates on list, vector-ref
112 operates on vector, nested-ref operates on nested namespace,
113 local-ref operates on the local nested namespace.
114
7cb1d4d3
GH
115Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
116
117 * boot-9.scm (%%handle-system-error): recognise errors thrown
118 by lgh-error (fill-message etc.)
9561554c 119 (fill-message): check first whether args is null.
a949b3f2 120 (fill-message): bug fix and check that args is a list.
7cb1d4d3 121
393ee9a8
JB
122Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>
123
124 * boot-9.scm: %load-path is initialized in C code now.
125 (implementation-vicinity, parse-path): Deleted, along with code to
126 initialize %load-path.
127
128 * boot-9.scm (in-vicinity): If the vicinity doesn't end with a
129 "/", use one to separate it from the file.
130
e4ef46d4
JB
131Thu Aug 29 23:05:11 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
132
133 * boot-9.scm (%load-path): Add the site directory.
134 Add the directory named after the version number.
135 Prepend the version number to the other directories in the path.
136 Simplify by mapping the common prefix onto each item.
137 * Makefile.in (datadir, pkgdatadir, pkgverdatadir, subpkgdatadir,
138 sitedatadir): New definitions.
139 (libparent, libdir, install_path): Replaced by above.
140 (install): Create the above directories.
141 Put the source files into subpkgdatadir.
142 (uninstall): Remove the above directories.
143
00312aa3
JB
144Thu Aug 29 21:48:47 1996 Jim Blandy <jimb@floss.cyclic.com>
145
146 Don't use the PLUGIN system to gather information for the
147 Makefile's distribution and installation targets; just put it all
148 in the Makefile directly.
149 * PLUGIN/this.configure (scm_files, aux_files): Remove sections
150 for these.
151 * configure.in: Remove code that gets and substitutes scm_files and
152 aux_files.
153 * Makefile.in (scm_files, aux_files): Write out the list of files
154 here, where people expect to find them.
155
96a8aaf3
MD
156Fri Aug 23 06:44:36 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
157
158 * boot-9.scm: Preliminary solution: optionally load the debug
7685f77c 159 module. Changed "gls" to "guile1.0b3".
96a8aaf3
MD
160
161 * debug.scm: New file: debug extensions.
162
4e378733
MD
163Wed Aug 21 13:06:56 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
164
165 * boot-9.scm (print-vector): Renamed weak-hash-table? -->
166 weak-key-hash-table?. (Again!)
167
0190d683
MD
168Tue Aug 20 07:31:39 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
169
170 * boot-9.scm (print-vector, macro-table, xformer-table):
171 Renamed weak-hash-table --> weak-key-hash-table.
172
173 * poe.scm (funcq-memo): Renamed weak-hash-table -->
174 weak-key-hash-table.
175
8b13c6b3
GH
176Sat Aug 3 06:16:35 1996 Gary Houston <ghouston@actrix.gen.nz>
177
178 * boot-9.scm (*null-device*): global constant from goonix.
179 (move->fdes): adjusted for boolean primitive-move->fdes. return
180 the modified port, always set revealed count to 1 (SCSH compatible).
181 (release-port-handle port): from goonix (SCSH compatible).
182 (%open-file): removed.
183 (open-input-file, open-output-file, file-exists?, file-is-directory?):
184 modified for open-file change (does not return #f).
185
a44a755d
JB
186Thu Aug 1 02:52:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
187
188 * Makefile.in (dist-dir): New target for new dist system.
189 (manifest): Deleted.
190 * PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
191 directory, and needs special treatment in the dist-dir target.
192
02b754d3
GH
193Thu Aug 1 09:00:21 1996 Gary Houston <ghouston@actrix.gen.nz>
194
195 * boot-9.scm: remove the wrappers for '%' system primitives,
196 now that they throw errors directly.
197 remove make-simple-wrapper and similar functions.
198 protect a call to getenv which may now throw an exception.
199
200Wed Jul 31 23:44:42 1996 Gary Houston <ghouston@actrix.gen.nz>
201
202 * boot-9.scm (false-if-exception): new macro.
203
0f2d19dd
JB
204Fri Apr 19 13:53:08 1996 Tom Lord <lord@beehive>
205
206 * The more things change...
207
208