* error.c, error.h (scm_error_callback): Removed (see NEWS).
[bpt/guile.git] / libguile / ChangeLog
1 Mon Aug 25 13:47:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2
3 * error.c, error.h (scm_error_callback): Removed (see NEWS).
4
5 Sun Aug 24 01:25:35 1997 Mikael Djurfeldt <mdj@kenneth>
6
7 * regex-posix.c: If <regex.h> can't be found, try <rxposix.h> or
8 <rx/rxposix.h>. (This is in order to accomodate for the GNU Rx
9 library.)
10
11 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp, ramap_1,
12 ramap_2o, scm_array_index_map_x, raeql_1, scm_array_equal_p),
13 unif.c (scm_vector_set_length_x, scm_uniform_vector_length,
14 scm_array_p, scm_array_rank, scm_array_dimensions,
15 scm_enclose_array, scm_array_in_bounds_p, scm_uniform_vector_ref,
16 scm_cvref, scm_array_set_x, scm_array_contents, scm_array_to_list,
17 scm_array_prototype): Added case scm_tc7_wvect.
18
19 Sat Aug 23 18:45:44 1997 Gary Houston <ghouston@actrix.gen.nz>
20
21 * errno.h: prototype for scm_strerror.
22 * error.c (scm_strerror): new procedure.
23
24 Mon Aug 18 14:58:22 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
25
26 * list.c (scm_list_append_x): Allow non-pair as last argument.
27 This is consistent with the R4RS append and is probably the
28 correct behaviour as specified by R2RS. (Thanks to Radey Shouman)
29
30 Sat Aug 16 18:42:15 1997 Gary Houston <ghouston@actrix.gen.nz>
31
32 * stime.h: prototype for scm_times.
33 * stime.c (scm_times): new procedure.
34 * ioext.c (scm_fseek): if the first argument is a file descriptor
35 call lseek.
36 (scm_ftell): if the first argument is a file descriptor call lseek
37 (sic).
38 * filesys.h: prototypes for scm_open_fdes, scm_fsync.
39 * filesys.c (scm_chmod): if the first argument is a file descriptor,
40 call fchmod.
41 (scm_chown): if the first argument is a port or file descriptor,
42 call fchown.
43 (scm_truncate_file): new procedure.
44 Add DEFER/ALLOW INTS to a few other procedures.
45 (scm_fsync): new procedure.
46 (scm_open_fdes): new procedure.
47 (scm_open): use scm_open_fdes. If mode isn't specified, 666 will
48 now be used.
49 (scm_fcntl): the first argument can now be a file descriptor. The
50 third argument is now optional.
51
52 * posix.c (scm_execl, scm_execlp): make the filename argument
53 compulsory, since omitting it causes SEGV.
54 (scm_sync): return unspecified instead of #f.
55 (scm_execle): new procedure.
56 (environ_list_to_c): new procedure.
57 (scm_environ): use environ_list_to_c. disable interrupts.
58 (scm_convert_exec_args): take pos and subr arguments and
59 improve error checking.
60
61 1997-08-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
62
63 * stacks.c (scm_make_stack), coop-threads.c, mit-pthreads.c
64 (scm_call_with_new_thread): Bugfix: SCM_WNA should go as third
65 argument to SCM_ASSERT. Furthermore, the name of the function
66 should be passed as first argument when signalling
67 SCM_WNA. (Thanks to Thomas Morgan)
68
69 * gsubr.c (scm_gsubr_apply): From Radey Shouman
70 <shouman@zianet.com>: "The switch in scm_gsubr_apply that
71 dispatches on the number of actual args has a default case
72 reporting an internal error. This is a vestige from a version
73 that mallocated a SCM vector to hold the arguments. In the
74 current version this check is too late: if it ever happens we will
75 have already overstepped the bounds of the array.
76
77 Also, the patch [...] adds a check for too many actual arguments."
78
79 mdj: Removed check for "internal programming error".
80
81 Wed Aug 13 15:38:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
82
83 * * gh_io.c (gh_write): New function.
84
85 * * gh_eval.c (catch_with_saved_stack): Removed. Replaced by:
86 throw.c (scm_internal_stack_catch): New sibling to the other catch
87 functions. Code moved from gh_eval.c.
88 throw.h: Added header.
89 gh_eval.c (gh_eval_str_with_stack_saving_handler): Renamed call to
90 scm_internal_stack_catch.
91
92 Tue Jul 29 01:03:08 1997 Gary Houston <ghouston@actrix.gen.nz>
93
94 * ioext.h: fix up prototypes.
95 * ioext.c (scm_dup_to_fdes): renamed from scm_primitive_dup2.
96 Scheme name is now dup->fdes.
97 (scm_dup_to_fdes): make the second argument optional and
98 fold in the functionality of scm_primitive_dup.
99 (scm_primitive_dup): deleted.
100
101 Mon Jul 28 05:24:42 1997 Gary Houston <ghouston@actrix.gen.nz>
102
103 * fports.h (SCM_P): prototypes for scm_setvbuf, scm_setfileno.
104 * fports.c (scm_setbuf0): don't disable the setbuf if MSDOS or
105 ultrix are defined. Use setvbuf instead of setbuf.
106 (scm_setvbuf): new procedure.
107 (scm_init_fports): intern _IOFBF, _IOLBF, _IONBF.
108 (scm_setfileno): moved from ioext.c.
109 (scm_fgets): cast SCM_STREAM to (FILE *), remove unused lp variable.
110 (top of file): Delete 25 lines of probably obsolete CPP hair for MSDOS.
111
112 Sun Jul 27 10:54:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
113
114 * fluids.c (scm_fluid_p): New function.
115 * fluids.h (scm_fluid_p): New prototype.
116
117 Sat Jul 26 21:33:37 1997 Marius Vollmer <mvo@zagadka.ping.de>
118
119 * print.c (scm_iprin1): Enter printed structures into the print
120 state as nested data while they are printed.
121 (print_state_fluid, print_state_fluid_num): New variables.
122 (scm_init_print): Initialize them.
123 (scm_iprin): If print_state_fluid carries a print_state, use that
124 instead of creating a new one.
125 (scm_printer_apply, apply_stub, struct apply_data): New
126 definitions to help with calling printer functions written in
127 Scheme.
128 * print.h (scm_printer_apply): New prototype.
129
130 * struct.c (scm_print_struct): Use scm_printer_apply to call the
131 user defined struct printer.
132
133 * dynwind.c (scm_dowinds): Handle fluids on the wind list.
134 * fluids.h (scm_internal_with_fluids, scm_with_fluids,
135 scm_swap_fluids, scm_swap_fluids_reverse): New prototypes.
136 * fluids.c (scm_internal_with_fluids, scm_with_fluids,
137 scm_swap_fluids, scm_swap_fluids_reverse): New functions.
138
139 Fri Jul 25 12:05:46 1997 Marius Vollmer <mvo@zagadka.ping.de>
140
141 * fluids.c (scm_fluid_ref, scm_fluid_set_x): Fixed use of
142 SCM_ASSERT: arg comes before pos.
143
144 Fri Jul 25 17:00:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
145
146 * eval.c (scm_apply): Handle the case when a tc7_sybr_2 is applied
147 to a list of length zero correctly.
148
149 Wed Jul 23 16:17:46 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
150
151 Supply an `fgets' method for port objects to do fast line i/o.
152 * ioext.c (scm_read_line): New function.
153 * genio.c (scm_gen_read_line): New function.
154 * fports.c (scm_fgets): New function.
155 (scm_fptob, scm_pipob): Add scm_fgets method.
156 * ports.c (fgets_void_port, scm_generic_fgets): New functions.
157 (void_port_ptob): Add void fgets method.
158 (scm_newptob): Initialize fgets method from ptob struct.
159 * ports.h (scm_ptobfuns): Add fgets method.
160 * vports.c (scm_sfptob): Supply generic fgets method.
161 * strports.c (scm_stptob): Supply generic fgets method.
162
163 Mon Jul 21 04:03:42 1997 Gary Houston <ghouston@actrix.gen.nz>
164
165 * ioext.h: removed scm_duplicate_port prototype.
166
167 * ioext.c (scm_primitive_dup2): return the new file descriptor
168 instead of SCM_UNSPECIFIED, since similarity to scm_primitive_dup
169 is convenient.
170 (scm_fdopen): bug fix: don't try to make port unbuffered until its
171 stream has been set.
172 (scm_duplicate_port): deleted, there's now an implementation in
173 boot-9.scm.
174 (scm_primitive_dup2): do nothing if newfd == oldfd.
175
176 Sun Jul 20 03:55:49 1997 Gary Houston <ghouston@actrix.gen.nz>
177
178 * filesys.c (scm_close): oops, don't call SCM_INUM twice on the
179 argument.
180
181 * ioext.h: new prototypes.
182 * ioext.c (scm_primitive_dup, scm_primitive_dup2): new procedures.
183
184 * fluids.c (next_fluid_num): don't do
185 SCM_THREAD_CRITICAL_SECTION_START/END unless USE_THREADS is defined.
186
187 * ports.h: prototypes too.
188 * ports.c (scm_mode_bits, scm_port_mode): moved from fports.c.
189
190 * fports.h: prototype too.
191 * fports.c (scm_evict_ports): moved from ioext.c.
192
193 Sat Jul 19 04:56:52 1997 Gary Houston <ghouston@actrix.gen.nz>
194
195 * ports.c (scm_close_port): return a boolean instead of unspecified.
196 throw an error if an error other than EBADF occurs.
197
198 * filesys.h: scm_close prototype.
199 * filesys.c (scm_close): new procedure, can close file descriptors
200 and ports (scsh compatible).
201
202 * ports.c (scm_flush_all_ports): SCM_PROC incorrectly allowed an
203 optional argument.
204
205 Fri Jul 18 11:19:53 1997 Marius Vollmer <mvo@zagadka.ping.de>
206
207 * fluids.c, fluid.h: New files.
208 * Makefile.am (libguile_la_SOURCES): Added "fluids.c".
209 (modinclude_HEADERS): Added "fluids.h"
210
211 * init.c: Include "fluids.h". (scm_boot_guile_1): Added call to
212 scm_init_fluids to initialize the fluid machine.
213 (scm_start_stack): Initialize the fluids of the first root with
214 scm_make_initial_fluids.
215
216 * root.h: Added "fluids" member to scm_root_state.
217 * root.c: Include "fluids.h". (scm_mark_root): Mark "fluids".
218 (scm_make_root): Call scm_copy_fluids to make fluid bindings
219 unique for the new root when it has a parent.
220
221 * smob.h: Include "libguile/print.h" to make scm_print_state
222 visible.
223
224 * dynl.c (free_dynl_obj): New function to free the dynamic object
225 data. (dynl_smob): Use it.
226 * dynl.c (scm_dynamic_link): Moved allocating of the memory for
227 the dynamic object data below the linking of the object to avoid
228 memory leak when the linking code throws an error. Now the code
229 leaks a whole dynamically linked library when must_malloc throws,
230 but that should be much less likely.
231
232 Fri Jul 11 00:19:47 1997 Jim Blandy <jimb@floss.red-bean.com>
233
234 Changes to compile under gnu-win32, from Marcus Daniels:
235 * stime.c (tzset): If tzset isn't provided, make it a NOP.
236 (scm_localtime): Change SCM_EOF to SCM_EOL.
237 (scm_mktime): Likewise.
238 * socket.c: Don't include sys/un.h unless autoconf tells
239 us Unix domain sockets are available.
240 (scm_fill_sockaddr): Ignore Unix domain code.
241 (scm_addr_vector): Likewise.
242 (scm_init_addr_buffer): Likewise.
243 (scm_socketpair): Don't include unless socketpair was
244 found during autoconf.
245 * simpos.c (SYSTNAME): Treat cygwin like Unix.
246 * scmsigs.c (scm_pause): Don't include unless pause was found
247 during autoconf.
248 * posix.c (scm_getgroups): Don't include unless support function
249 was found during autoconf (in this case, getgroups).
250 (scm_setpwent): For setpwent.
251 (scm_setegid): For setegid.
252 * net_db.c (scm_inet_netof): Don't include unless support
253 function was found during autoconf (in this case, inet_netof).
254 (scm_lnaof): For inet_lnaof.
255 (scm_inet_makeaddr): For inet_makeaddr.
256 (scm_getnet): For getnetent, getnetbyname, getnetbyaddr.
257 (scm_getproto): For getprotoent.
258 (scm_getserv): For getservent.
259 (scm_sethost): For sethostent, endhostent.
260 (scm_setnet): For setnetent, endnetent.
261 (scm_setproto): For setprotoent, endprotoent.
262 (scm_setserv): For setservent, endservent.
263 * scmconfig.h.in: Regenerated.
264
265 Thu Jul 10 00:22:24 1997 Jim Blandy <jimb@floss.red-bean.com>
266
267 * stime.c (scm_localtime, scm_mktime): Pass SCM_EOL to
268 scm_misc_error, not SCM_EOF.
269
270 * error.c (scm_wta): Pass SCM_EOL to scm_misc_error as the list of
271 arguments for formatting the error message, not SCM_BOOL_F. I
272 think this is left over from the (eq? '() #f) days.
273
274 * read.c (recsexpr): Give this a dummy definition if
275 DEBUG_EXTENSIONS isn't #defined.
276
277 Fri Jul 4 23:42:17 1997 Marius Vollmer <mvo@zagadka.ping.de>
278
279 * coop-threads.c (scm_wait_condition_variable): Lock mutex again
280 after waiting.
281
282 Thu Jul 3 16:31:24 1997 Marius Vollmer <mvo@zagadka.ping.de>
283
284 * root.c (cwdr_outer_body): Bugfix: Pass `c' instead of `&c' to
285 scm_internal_catch.
286
287 Sat Jun 28 16:14:09 1997 Tim Pierce <twp@twp.tezcat.com>
288
289 * Makefile.am (libguile_la_LIBADD): Remove @ALLOCA@, since
290 alloca.lo will be included in @LIBLOBJS@. Something better than
291 this should be possible.
292 * Makefile.in: Regenerated.
293
294 Sat Jun 28 03:40:15 1997 Gary Houston <ghouston@actrix.gen.nz>
295
296 * simpos.h: prototype for scm_primitive_exit.
297 * simpos.c (scm_primitive_exit): new procedure, terminates the
298 process without unwinding the stack.
299
300 Sat Jun 28 03:45:25 1997 Tim Pierce <twp@twp.tezcat.com>
301
302 * regex-posix.c (scm_make_regexp): Make `flags' a variable-length
303 argument and logior its components together, so the user doesn't
304 have to do this explicitly. Also, if regexp/basic is supplied, then
305 turn off REG_EXTENDED.
306 (scm_init_regex_posix): New regexp/basic symbol.
307 (REG_BASIC): #define this if it is not already present.
308
309 Fri Jun 27 20:36:35 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
310
311 * Makefile.am (libguile_la_LIBADD): Include @ALLOCA@.
312 (MOSTLYCLEANFILES): New target, changed from CLEANFILES.
313 (CLEANFILES): New target, clean versiondat.h, libpath.h.
314 (DISTCLEANFILES): New target, clean *.x.
315 * Makefile.in: Regenerated.
316
317 Tue Jun 24 00:29:07 1997 Jim Blandy <jimb@floss.red-bean.com>
318
319 * script.c (scm_compile_shell_switches): Add 1997 to copyright
320 years in usage message.
321
322 * Makefile.am (libguile_la_LDFLAGS): Bump library version.
323 * Makefile.in: Regenerated.
324
325 * regex-posix.c (scm_init_regex_posix): Delete the regexp/nosub
326 flag; I don't think we support it.
327 (scm_make_regexp): Make sure the user doesn't pass the
328 regexp/nosub flag.
329
330 * regex-posix.c (scm_make_regexp, scm_regexp_exec): Add optional
331 FLAGS arguments.
332 (scm_init_regex_posix): Define constants for the REG_mumble flags;
333 name them according to the SCSH convention: regexp/mumble.
334
335 * regex-posix.h (scm_make_regexp, scm_regexp_exec): Update prototypes.
336
337 Mon Jun 23 18:44:49 1997 Jim Blandy <jimb@floss.red-bean.com>
338
339 * Makefile.am (libpath.h): Include the values of all the standard
340 Makefile directory variables. Print a message, but don't print
341 all the commands.
342 (versiondat.h): Print a message, but don't print all the commands.
343 * load.c: #include "alist.h".
344 (init_build_info): New function.
345 (scm_init_load): Call it.
346 * Makefile.in: Regenerated.
347
348 Sun Jun 22 19:12:58 1997 Jim Blandy <jimb@floss.red-bean.com>
349
350 * root.c: Establish a reliable catch-all handler for the new root.
351 After all the Scheme handler function might signal an error too,
352 and we don't want to lose that.
353 (cwdr_inner_body): Renamed from cwdr_body.
354 (cwdr_outer_body): New function, to establish the user's handler,
355 and pass control to cwdr_inner_body.
356 (cwdr): Establish the reliable catch-all handler here, and pass
357 control to cwdr_outer_body.
358 (struct cwdr_body_data): New field, handler, to allow cwdr to pass
359 the user's handler through to cwdr_outer_body.
360 * throw.c (scm_handle_by_message): Move guts into....
361 (handler_message): New static function.
362 (scm_handle_by_message_noexit): New function.
363 * throw.h (scm_handle_by_message_noexit): New prototype.
364
365 * __scm.h: (SCM_FENCE): New macro: optimizer will not move code
366 across this. Only works on GCC. Otherwise, we hope for the best.
367 (SCM_DEFER_INTS, SCM_ALLOW_INTS): Use FENCE appropriately. I have
368 the feeling that real thread systems will not need this...
369
370 Sun Jun 22 15:46:35 1997 Jim Blandy <jimb@floss.red-bean.com>
371
372 Try to detect when people are using one version of libguile and a
373 different version of ice-9. People have been skewing things and
374 sending in bug reports.
375 * Makefile.am (versiondat.h): New file to generate.
376 * version.c: #include "versiondat.h", to get version info.
377 (scm_libguile_config_stamp): New function.
378 * script.c: #include "version.h".
379 (scm_compile_switches): Call scm_version to get version number.
380 * scmconfig.h.in, Makefile.in: Regenerated.
381 * Makefile.in: Regenerated.
382
383 * Makefile.am (ETAGS_ARGS): Catch SCM_PROC, etc. so we can find
384 primitive definitions under their Scheme names.
385
386 * Makefile.am (libguile_la_LDFLAGS): Update library version to
387 1:2. Helps avoid confusion between installed and uninstalled libs.
388
389 * scmconfig.h.in: Regenerated. (Needed after June 3 change to
390 ../configure.in.)
391
392 * gdb_interface.h (GDB_INTERFACE): Remove semicolon and trailing
393 backslash from definition; this should be used like: GDB_INTERFACE;
394
395 Sun Jun 22 04:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
396
397 * ioext.c (scm_duplicate_port): bug fix: don't try to make the
398 new port unbuffered until its stream has been set.
399
400 Sat Jun 21 18:44:03 1997 Gary Houston <ghouston@actrix.gen.nz>
401
402 * ports.h: new prototype.
403 * ports.c (scm_flush_all_ports): new procedure, scsh compatible.
404
405 Sat Jun 21 00:25:03 1997 Jim Blandy <jimb@floss.red-bean.com>
406
407 Make things compile neatly under Sun's C compiler.
408 * dynl.c (scm_dynamic_func): Cast return value from sysdep_dynl_func.
409 * extchrs.c (xmbtowc): Make the second arg a normal char, not
410 unsigned, because that's what the ANSI function takes.
411 * extchrs.h (xmbtowc): Corresponding change to prototype.
412 * genio.c (scm_gen_getc): Make buf plain chars. Nobody wants
413 uchars here.
414 * mbstrings.c (scm_mb_ilength): Use ANSI arg syntax. Make DATA
415 argument plain char *.
416 * strings.c (scm_string): Use SCM_ROCHARS, since c is a plain
417 char.
418 * tag.c (scm_tag): Remove unreachable statement.
419 * unif.c (scm_array_to_list): If we want to shift a 1 bit to the
420 top of the word, it should be unsigned.
421
422 * eval.c (scm_lookupcar1): Don't declare var2 unless USE_THREADS
423 is defined, to avoid warnings; it's only used in the
424 conflict-checking code. Which might go away anyway.
425 (SCM_CEVAL): All goto's targeting the `dispatch' label are in
426 conditionals; put the label definition in an #if too, to stifle
427 warnings.
428
429 * Makefile.am (EXTRA_DIST): Include ChangeLog-gh and
430 ChangeLog-threads in the distribution.
431 * Makefile.in: Regenerated.
432
433 Fri Jun 20 10:03:41 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
434
435 * guile-snarf.in: Changed regexp to support CPPs that insert
436 whitespace between lexical tokens (which munges the `%%%' snarf
437 cookie).
438
439 Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
440
441 * load.c (scm_init_load_path): Append $(datadir)/guile to
442 %load-path, so modules do not have to be installed in Guile's
443 current version directory.
444
445 Mon Jun 16 17:20:55 1997 Marius Vollmer <mvo@zagadka.ping.de>
446
447 * dynl.c (scm_dynamic_call, scm_dynamic_args_call): Wrap dynamic
448 function call in SCM_DEFER_INTS/SCM_ALLOW_INTS.
449 (scm_dynamic_link, scm_dynamic_unlink, scm_dynamic_func): Always
450 call the sysdep functions with deferred ints.
451 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c (sysdep_dynl_link,
452 sysdep_dynl_unlink, sysdep_dynl_func): Expect to be called with
453 deferred interrupts and insert SCM_ALLOW_INTS before throwing an
454 error.
455
456 * dynl.c (scm_dynamic_unlink, scm_dynamic_call): Return
457 SCM_UNSPECIFIED.
458
459 Sat Jun 14 19:00:58 1997 Gary Houston <ghouston@actrix.gen.nz>
460
461 * scmsigs.c (sys_deliver_signals): add a comment about a probable bug.
462
463 Wed Jun 11 00:33:00 1997 Jim Blandy <jimb@floss.red-bean.com>
464
465 * Makefile.in: Regenerated after xtra_PLUGIN_guile_libs change in
466 ../configure.in.
467
468 Sun Jun 8 14:37:26 1997 Marius Vollmer <mvo@zagadka.ping.de>
469
470 * eval.c (scm_lookupcar1): New procedure to cope with a race
471 condition during lookup (when using threads).
472 (scm_lookupcar): Implement in terms of scm_lookupcar1.
473 (SCM_CEVAL): Use scm_lookupcar1 instead of scm_lookupcar in one
474 place.
475
476 Fri Jun 6 19:05:07 1997 Jim Blandy <jimb@totoro.cyclic.com>
477
478 * regex-posix.c (scm_regexp_exec): Use the `start' argument if
479 supplied. (Change from Tim Pierce.)
480
481 Thu Jun 5 16:38:19 1997 Marius Vollmer <mvo@zagadka.ping.de>
482
483 * struct.c (init_struct): Forget to mention this in the "Wed Jun 4
484 23:47:01 1997" changelog: Slots are now initialized with `#f' by
485 default and not `()'. `#f' is the canonical non-value in Scheme,
486 right?
487
488 Wed Jun 4 23:47:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
489
490 * struct.c (struct_printer): New variable that holds a handle on
491 the Scheme variable *struct-printer*. This variable can be set by
492 Scheme code to override the printing of structures.
493 (scm_print_struct): If struct_printer is set, call it. If it is
494 not set, or returns #f, print the structure in the old fashion.
495 Include "eval.h" for scm_apply.
496
497 Tue Jun 3 23:01:39 1997 Marius Vollmer <mvo@zagadka.ping.de>
498
499 * struct.c (scm_struct_ref, scm_struct_set_x): Use
500 scm_struct_i_n_words to get the number of fields, not
501 -scm_struct_n_extra_words.
502
503 On the route to fancier struct printing:
504 * struct.c (scm_print_struct): New function to print a structure.
505 Include "genio.h" to support it. This function doesn't do
506 anything interesting right now, but I think it should be here
507 anyway.
508 * struct.h: Include "print.h" and add prototype for
509 scm_print_struct.
510 * print.c (scm_iprin1): Call scm_print_struct instead of trying to
511 print structures ourself.
512
513 Sun Jun 1 07:58:41 1997 Gary Houston <ghouston@actrix.gen.nz>
514
515 * scmsigs.c (sys_deliver_signals): bug fix: reset got_signal[i]
516 before applying the handler in case it doesn't return.
517
518 Sat May 31 18:57:51 1997 Gary Houston <ghouston@actrix.gen.nz>
519
520 * scmsigs.h, async.h: updated.
521
522 * _scm.h: if HAVE_RESTARTS is defined then don't use a SYSCALL
523 loop.
524
525 * posix.c (scm_uname): interpret only negative values as an error.
526 Solaris normally returns a positive value.
527
528 * script.c (scm_compile_shell_switches): if we are not going into
529 an interactive repl, set scm_mask_ints to zero so that asyncs can
530 run.
531
532 * simpos.c (scm_system): don't ignore/unignore signals around
533 the "system" call.
534
535 * posix.c (scm_open_pipe): don't ignore/unignore signals around
536 the "popen" call.
537
538 * init.c (scm_boot_guile_1): don't call scm_init_signals, it's
539 done in boot-9.scm instead.
540
541 * scmsigs.c, async.c: Major rewriting of signal handling code.
542 (scm_sigaction): new procedure.
543 (scm_sleep): don't wrap sleep in SCM_SYSCALL, it would mess up the
544 timing.
545 (scm_raise): return unspecified, throw error on failure.
546
547 Thu May 29 02:47:36 1997 Jim Blandy <jimb@floss.cyclic.com>
548
549 * regex-posix.c (scm_init_regex_posix): Register the "regex"
550 feature, to help boot-9.scm decide whether to import the regex
551 module.
552
553 Thu May 29 02:19:40 1997 Jim Blandy <jimb@floss.cyclic.com>
554
555 * eval.c: Include scmconfig.h at the beginning of the file so that
556 HAVE_ALLOCA_H may properly be defined. Thanks to Bill Janssen for
557 pointing this out.
558
559 * regex-posix.c: #include "_scm.h" before conditionally #including
560 <regex.h>; the former defines HAVE_REGCOMP.
561
562 * regex-posix.c: #include <regex.h> conditionally, so the file is
563 CPP'able (for dependency scanning) even on systems that don't have
564 a <regex.h> header.
565
566 Tue May 27 23:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
567
568 Add new R4RS-compliant syntax for keywords.
569 * read.c (scm_lreadr): Recognize `#:' as a prefix for keywords,
570 regardless of the setting of the `keywords' read option.
571 * kw.c (prin_kw): Print keywords using the `#:' syntax, so they
572 can be re-read no matter what the setting of the `keywords' read
573 option.
574
575 Tue May 27 22:47:31 1997 Tim Pierce <twp@twp.tezcat.com>
576
577 Add support for POSIX regular expressions.
578
579 * regex-posix.c, regex-posix.h: New files. (Some code
580 is taken liberally from rx/rgx.c in the old Guile dist.)
581
582 * init.c: Include regex-posix.h.
583 (scm_boot_guile_1): Call scm_init_regex_posix.
584
585 * Makefile.am (EXTRA_libguile_la_SOURCES, modinclude_HEADERS):
586 Add regex-posix.[ch] sources.
587 * Makefile.in: Regenerated.
588
589 * scmconfig.h.in: Add HAVE_REGCOMP macro. (automake is supposed
590 to do this automatically? It didn't for me, bleh.)
591
592 Mon May 26 18:51:29 1997 Jim Blandy <jimb@floss.cyclic.com>
593
594 * fports.c (print_pipe_port): New function.
595 (scm_fptob): Use print_pipe_port instead of scm_prinport; the
596 latter doesn't even take the right arguments.
597
598 * Makefile.am: Increment shared lib revision number. I think
599 sometimes the uninstalled Guile finds the installed shared lib;
600 Gord says doing this might help. As things turned out, I can't
601 say whether it does.
602 * Makefile.in: Regenerated.
603
604 * gh_init.c (gh_enter): Cast c_main_prog to a void * before
605 passing it as the closure argument to scm_boot_guile. (Bill
606 Janssen)
607
608 * ports.c (print_void_port, putc_void_port, puts_void_port,
609 write_void_port, flush_void_port, getc_void_port, close_void_port,
610 noop0): Use ANSI prototypes instead of K&R declarations, so the
611 initialization of void_port_ptob gets aggressively type-checked.
612 Fix arguments of print_void_port and write_void_port. (Bill
613 Janssen)
614
615 * COPYING, __scm.h, _scm.h, alist.c, alist.h, append.c, append.h,
616 appinit.c, arbiters.c, arbiters.h, async.c, async.h, backtrace.c,
617 backtrace.h, boolean.c, boolean.h, chars.c, chars.h,
618 continuations.c, continuations.h, coop-defs.h, coop-threads.c,
619 coop-threads.c.cygnus, coop-threads.h, coop-threads.h.cygnus,
620 coop.c, debug.c, debug.h, dynl-dl.c, dynl-dld.c, dynl-shl.c,
621 dynl-vms.c, dynl.c, dynl.h, dynwind.c, dynwind.h, eq.c, eq.h,
622 error.c, error.h, eval.c, eval.h, extchrs.h, feature.c, feature.h,
623 filesys.c, filesys.h, fports.c, fports.h, fsu-pthreads.h, gc.c,
624 gc.h, gdbint.c, gdbint.h, genio.c, genio.h, gh.h, gh_data.c,
625 gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c, gh_list.c,
626 gh_predicates.c, gh_test_c.c, gh_test_repl.c, gscm.c, gscm.h,
627 gsubr.c, gsubr.h, guile.c, hash.c, hash.h, hashtab.c, hashtab.h,
628 init.c, init.h, ioext.c, ioext.h, kw.c, kw.h, libguile.h, list.c,
629 list.h, load.c, load.h, mallocs.c, mallocs.h, markers.c,
630 markers.h, mbstrings.c, mbstrings.h, mit-pthreads.c,
631 mit-pthreads.h, net_db.c, net_db.h, numbers.c, numbers.h,
632 objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
633 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
634 procprop.h, procs.c, procs.h, putenv.c, ramap.c, ramap.h, read.c,
635 read.h, root.c, root.h, scmhob.h, scmsigs.c, scmsigs.h, script.c,
636 script.h, sequences.c, sequences.h, simpos.c, simpos.h, smob.c,
637 smob.h, snarf.h, socket.c, socket.h, srcprop.c, srcprop.h,
638 stackchk.c, stackchk.h, stacks.c, stacks.h, stime.c, stime.h,
639 strings.c, strings.h, strop.c, strop.h, strorder.c, strorder.h,
640 strports.c, strports.h, struct.c, struct.h, symbols.c, symbols.h,
641 tag.c, tag.h, tags.h, threads.c, threads.h, throw.c, throw.h,
642 unif.c, unif.h, variable.c, variable.h, vectors.c, vectors.h,
643 version.c, version.h, vports.c, vports.h, weaks.c, weaks.h: New
644 address for FSF.
645
646 Mon May 26 12:37:30 1997 Jim Blandy <jimb@floss.cyclic.com>
647
648 * script.c (scm_find_executable): Use prototype-style definition
649 here; apparently it's not quite right to have const in a prototype
650 and then use a K&R declaration. I wonder if stuff like this will
651 go away if we compile with -Wrequire-prototypes, or whatever that
652 is... (Bernard URBAN)
653
654 * scmhob.h: New text from Bernard URBAN.
655
656 Sat May 17 17:14:36 1997 Jim Blandy <jimb@floss.cyclic.com>
657
658 * script.c: Don't #define const on hpux. Configure takes care of
659 this. (Thanks to Larry Schwimmer.)
660
661 * script.c: Use the HAVE_UNISTD_H symbol provided by autoconf to
662 decide whether to #include <unistd.h>, instead of listing a bunch
663 of systems. Don't #include stdio twice. Removed dyked-out
664 definition of scm_find_impl_file.
665
666 Fri May 16 03:06:08 1997 Jim Blandy <jimb@floss.cyclic.com>
667
668 * Makefile.am (libguile_la_LDFLAGS): Update libguile's shared
669 library version info to 1:0.
670 * Makefile.in: Regenerated.
671
672 * backtrace.c, backtrace.h, debug.c, debug.h, eq.c,
673 gdb_interface.h, gdbint.c, gdbint.h, gh_data.c, gh_init.c,
674 gh_io.c, gh_list.c, gh_predicates.c, gh_test_c.c, gh_test_repl.c,
675 init.c, net_db.c, options.c, options.h, ports.c, print.c, read.c,
676 script.h, snarf.h, srcprop.c, srcprop.h, stacks.c, stacks.h,
677 throw.c: Update copyright years; these files have been worked on
678 significantly in 1997, but only had copyright years for 1996.
679 Also, change name of copyright holder on some from Mikael
680 Djurfeldt to Free Software Foundation; he has signed papers
681 assigning the changes to the FSF.
682
683 * script.c (scm_shell_usage): Pass FATAL to exit. There's no
684 reason not to give the user the option.
685
686 * net_db.c (scm_gethost, scm_getnet, scm_getproto, scm_getserv):
687 Return #f on end-of-file when scanning table (i.e. when called
688 with no arguments). Try to catch errors, when we can.
689 * posix.c (scm_getgrgid, scm_getpwuid): Same.
690
691 * script.h (scm_shell_usage, scm_compile_shell_switches): New
692 external declarations. These are useful.
693
694 Thu May 15 05:21:36 1997 Gary Houston <ghouston@actrix.gen.nz>
695
696 * posix.c: don't include <sys/select.h> or define macros for
697 select, since they were not used in this file.
698
699 * filesys.c (scm_select): make the fifth parameter microseconds,
700 not milliseconds. let the fourth parameter be either a real value
701 or an integer or #f. The first, second and third arguments can
702 now be vectors: the type of the corresponding return set will be
703 the same.
704 (set_element, get_element): new static procedures.
705
706 Wed May 14 12:18:12 1997 Jim Blandy <jimb@floss.cyclic.com>
707
708 * strports.c (scm_eval_string): New function.
709 (scm_eval_0str): Trivially re-implemented in terms of
710 scm_eval_string.
711 * strports.h (scm_eval_string): New extern decl.
712
713 * net_db.c (h_errno): Add extern decl for this.
714
715 * fports.c (local_pclose): New function.
716 (scm_pipob): Use it in the initializer here.
717
718 From Tim Pierce:
719 * net_db.c (scm_gethost, scm_getproto, scm_getnet, scm_getserv):
720 Use a meaningful error message when signalling an error. For
721 this, scm_gethost must check h_errno rather than errno.
722
723 Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
724
725 * Makefile.in: Regenerated, using automake-1.1p.
726
727 Tue May 13 04:34:52 1997 Gary Houston <ghouston@actrix.gen.nz>
728
729 * socket.c (scm_addr_vector): use SCM_UNDEFINED in scm_listify,
730 not SCM_UNSPECIFIED.
731
732 * script.c (scm_compile_shell_switches): don't append (quit) if
733 interactive.
734 (scm_shell): call scm_exit_status and exit on the result of the
735 evaluation.
736
737 Mon May 12 17:23:58 1997 Jim Blandy <jimb@floss.cyclic.com>
738
739 Ensure that shared substrings are handled properly when passed to
740 a system call or other foreign function. Many thanks to Tim
741 Pierce!
742 * symbols.h (SCM_COERCE_SUBSTR): new macro.
743 * filesys.c (scm_chmod, scm_rename, scm_delete_file, scm_mkdir,
744 scm_rmdir, scm_opendir, scm_chdir, scm_symlink, scm_readlink,
745 scm_lstat), ports.c (scm_sys_make_void_port), posix.c (scm_utime,
746 scm_putenv, scm_setlocale, scm_mknod), stime.c (setzone,
747 scm_strftime), vports.c (scm_make_soft_port), backtrace.c
748 (scm_display_error_message): use RO macros when strings may be RO.
749 * error.c (scm_error_scm), filesys.c (scm_chown, scm_chmod,
750 scm_rename, scm_delete_file, scm_mkdir, scm_rmdir, scm_opendir,
751 scm_chdir, scm_symlink, scm_readlink, scm_lstat), ioext.c
752 (scm_freopen, scm_duplicate_port, scm_fdopen), net_db.c
753 (scm_gethost, scm_getnet, scm_getproto, scm_getserv), ports.c
754 (scm_sys_make_void_port), posix.c (scm_getgrgid, scm_utime,
755 scm_setlocale, scm_mknod), stime.c (setzone, scm_strptime,
756 scm_strftime), vports.c (scm_make_soft_port): use
757 SCM_COERCE_SUBSTR to make sure shared substrings are
758 null-terminated.
759
760 Mon May 12 15:33:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
761
762 * error.c (scm_error): Add newline to error message.
763
764 * init.c (scm_init_standard_ports): Doc fix.
765
766 Thu May 8 14:38:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
767
768 * dynl-shl.c: Completely replaced with new code from Bernard
769 URBAN.
770
771 * script.c (scm_ice_9_already_loaded): New variable.
772 (scm_compile_shell_switches): Use it.
773
774 Mon May 5 20:35:08 1997 Gary Houston <ghouston@actrix.gen.nz>
775
776 * filesys.c (scm_input_waiting_p): add missing third argument to
777 scm_misc_error.
778
779 * stime.c (scm_localtime): copy the result of localtime before
780 calling gmtime in case they share a buffer.
781 (scm_localtime, scm_mktime): throw an error if neither HAVE_TM_ZONE
782 nor HAVE_TZNAME.
783
784 Fri May 2 19:07:11 1997 Gary Houston <ghouston@actrix.gen.nz>
785
786 * eq.c (scm_equal_p): use SCM_TYP7SD (y) not SCM_TYP7SD (x).
787
788 Thu May 1 17:01:45 1997 Jim Blandy <jimb@floss.cyclic.com>
789
790 * Makefile.am (check-local): New target, which causes 'make check'
791 to run gh_test_c and gh_test_repl, with some trivial input.
792 * Makefile.in: Rgnrtd.
793
794 Tue Apr 29 19:00:40 1997 Marius Vollmer <mvo@zagadka.ping.de>
795
796 * dynl.c (print_dynl_obj): Indicate whether the dynamic object has
797 been unlinked.
798
799 Mon Apr 28 06:10:14 1997 Gary Houston <ghouston@actrix.gen.nz>
800
801 * async.c (scm_sys_tick_async_thunk): commented out. I'm not
802 sure how this was supposed to work.
803 (scm_async_click): don't send SCM_TICK_SIGNAL.
804 (scm_init_async): don't initialize %tick-thunk.
805
806 * the following change doesn't affect the Scheme interface:
807 gc-thunk is called at the end of garbage collection. however it's
808 no longer implemented by pretending it's a signal.
809
810 * gc.c (scm_gc_end): don't call scm_take_signal. instead mark the
811 system async corresponding to scm_gc_thunk.
812 * async.h: declare scm_gc_async.
813 * async.c (scm_sys_gc_async_thunk): apply the thunk named by
814 gc-thunk directly, instead of going through a signal handler.
815 (scm_gc_async): new variable, points to the GC system-async.
816 (scm_init_async): save the GC async as scm_gc_async instead
817 of using system_signal_asyncs.
818 (scm_gc_vcell): new variable, stores the gc-thunk vcell.
819
820 Mon Apr 28 19:14:44 1997 Jim Blandy <jimb@floss.cyclic.com>
821
822 * Makefile.am (libpath.h, cpp_err_symbols.c, cpp_sig_symbols.c):
823 Don't screw up if we're interrupted.
824 * Makefile.in: Regeneradet.
825
826 Sun Apr 27 17:57:15 1997 Jim Blandy <jimb@floss.cyclic.com>
827
828 * aclocal.m4: Removed; unnecessary, given changes of Apr 24.
829
830 * Makefile.am (modincludedir): Use "ice-9" instead of "@module@";
831 we're not using AM_INIT_GUILE_MODULE any more.
832 * Makefile.in: Reneregated.
833
834 Thu Apr 24 00:41:08 1997 Jim Blandy <jimb@floss.cyclic.com>
835
836 Functions for finding variable bindings, grace à Tim Pierce.
837 * gh_data.c (gh_lookup, gh_module_lookup): New functions.
838 * gh.h (gh_lookup, gh_module_lookup): New prototypes.
839
840 Get 'make dist' to work again.
841 * Makefile.am (EXTRA_DIST): Remove PLUGIN files.
842 * Makefile.in: Regenerated, like a surry without a fringe on top.
843
844 Changes for reduced Guile distribution: one configure script,
845 no plugins.
846 * configure.in, configure: Removed.
847 * acconfig.h, acinclude.m4: Moved to parent directory, where the
848 real configure script lives.
849 * Makefile.in, scmconfig.h.in: Regenerated.
850
851 * init.c: #include "script.h", to get prototype for script.c's
852 init function.
853
854 Wed Apr 23 21:25:39 1997 Jim Blandy <jimb@floss.cyclic.com>
855
856 * gh_data.c (gh_scm2newstr, gh_symbol2newstr): Use
857 scm_must_malloc, not raw malloc.
858
859 * script.c (scm_compile_shell_switches): Dyke out debugging output
860 code.
861
862 Mon Apr 21 05:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
863
864 * eq.c (scm_equal_p): use "SCM_TYP7SD", not "SCM (TYP7SD".
865
866 * stime.c: include both <sys/times.h> and <sys/timeb.h> if the
867 system has them. Hope this is safe. Previously
868 sys/timeb.h was included if HAVE_FTIME was defined or if
869 HAVE_SYS_TIMEB_H was defined but HAVE_SYS_TIMES_H was not,
870 but IRIX iris 5.3 apparently has ftime but not sys/timeb.h.
871
872 * ioext.c (scm_setfileno): add missing third argument to
873 scm_misc_error call.
874
875 Sun Apr 20 15:09:31 1997 Jim Blandy <jimb@totoro.cyclic.com>
876
877 * eq.c (scm_equal_p): Correctly compare strings of different
878 varieties. (Thanks to Tim Pierce.)
879
880 Sat Apr 19 03:59:02 1997 Jim Blandy <jimb@floss.cyclic.com>
881
882 * read.c (skip_scsh_block_comment): SCSH says the !# that ends a
883 #! block comment must occur on a line all by itself.
884
885 Move most of the guts of shell command processing into libguile,
886 so guile.c can be very small (and eventuallly auto-generated. (I
887 mean, generated mechanically, not self-generated. Hmm.))
888 * guile.c, script.c, script.h: New source files.
889 * init.c (scm_boot_guile_1): Call scm_init_script.
890 * libguile.h: #include "script.h".
891 * Makefile.am (bin_PROGRAMS, guile_SOURCES, guile_LDADD): New
892 targets, for new executable.
893 (libguile_la_SOURCES): Mention script.c.
894 (modinclude_HEADERS): Add script.h.
895 * configure.in: Always check for -lm, -lsocket, -lnsl, whether or
896 not dynamic linking is enabled. This is because we're generating
897 executables now. Move CY_AC_WITH_THREADS call after those, so the
898 values of cy_cv_threads_libs captures the libs chosen above.
899 * Makefile.in, configure, aclocal.m4: Regenerated.
900
901 * Makefile.am (EXTRA_DIST): Don't distribute gscm.c or gscm.h.
902 We don't maintain this interface any more, and it just confuses
903 people.
904
905 * alloca.c: #include <scmconfig.h>, not <config.h>.
906 * Makefile.am (EXTRA_libguile_la_SOURCES): Mention alloca.c, so
907 it'll get included in disties.
908
909 Thu Apr 17 17:45:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
910
911 * gscm.c, gscm.h: These aren't supported any more, and shouldn't
912 be distributed, because they confuse people.
913 * Makefile.am (EXTRA_DIST): Remove gscm.c, gscm.h.
914
915 Sat Apr 19 11:56:18 1997 Tim Pierce <twp@twp.tezcat.com>
916
917 * configure.in: check for presence of gethostent (not present on
918 OpenBSD by default).
919 * net_db.c (scm_gethost): Check HAVE_GETHOSTENT.
920 * configure, scmconfig.h.in: Regenerated.
921
922 Wed Apr 16 17:52:38 1997 Jim Blandy <jimb@floss.cyclic.com>
923
924 * backtrace.c (scm_backtrace): Split message string across
925 newlines properly. GCC is more tolerant of this than other
926 compilers.
927
928 Mon Apr 14 20:20:14 1997 Jim Blandy <jimb@floss.cyclic.com>
929
930 Merge threads directory into libguile.
931 * coop-defs.h, coop-threads.c, coop-threads.h, coop.c, threads.c,
932 threads.h: New source files.
933 * Makefile.am (EXTRA_libguile_la_SOURCES): Add threads.c.
934 (noinst_HEADERS): Add coop-threads.c, coop-threads.h, coop.c
935 here; see comment.
936 (modinclude_HEADERS): Add threads.h, coop-defs.h.
937 (EXTRA_DIST): Add fsu-pthreads.h, mit-pthreads.c, mit-pthreads.h,
938 coop-threads.c.cygnus, coop-threads.h.cygnus.
939 * configure.in: If we're using threads, include threads.o in
940 LIBOBJS.
941 * _scm.h, libguile.h: threads.h lives in this directory now.
942 * fsu-pthreads.h, mit-pthreads.c, mit-pthreads.h,
943 coop-threads.c.cygnus, coop-threads.h.cygnus: New files, not
944 currently used, but brought along for information's sake.
945 * ChangeLog-threads: log from old 'threads' directory.
946 * Makefile.in, configure: Rebuilt.
947
948 Mon Apr 14 20:15:29 1997 Jim Blandy <jimb@totoro.cyclic.com>
949
950 * stime.c (scm_mktime): #ifndef HAVE_TM_ZONE, Use lt.tm_zone, not
951 lt->tm_zone.
952
953 Mon Apr 14 01:32:57 1997 Jim Blandy <jimb@floss.cyclic.com>
954
955 * gh_init.c (gh_standard_handler): Return SCM_BOOL_F, not garbage.
956
957 Merge GH interface library into libguile.
958 * gh.h, gh_data.c, gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c,
959 gh_list.c, gh_predicates.c, gh_test_c.c, gh_test_repl.c: New files.
960 * Makefile.am (libguile_la_SOURCES): Add gh_data.c, gh_eval.c,
961 gh_funcs.c, gh_init.c, gh_io.c, gh_list.c, gh_predicates.c. Move
962 _scm.h to ...
963 (EXTRA_libguile_la_SOURCES): ... here.
964 (pkginclude_HEADERS): Add variable, to get gh.h installed.
965 (THREAD_LIBS, check_ldadd, check_PROGRAMS, gh_test_c_SOURCES,
966 gh_test_c_LDADD, gh_test_repl_SOURCES, gh_test_repl_LDADD):
967 New variables, describing how to build the gh test programs.
968 * configure.in: Check for -lm, -lsocket, -lnsl; we need this to
969 build the test programs, and we probably should have been linking
970 libguile.la against them all along, to support AIX shared libs.
971 Add cflags for threads to CFLAGS; add libs for threads to new
972 variable THREAD_LIBS, used in Makefile.am.
973 * ChangeLog-gh: log from old `gh' subdirectory.
974 * Makefile.in, configure, scmconfig.h.in: Rebuilt.
975
976 Sun Apr 13 23:03:55 1997 Jim Blandy <jimb@floss.cyclic.com>
977
978 * acconfig.h: Undo change of Apr 9; including the definition of
979 PACKAGE in the guile headers conflicts with applications' own
980 definitions.
981 * scmconfig.h.in: Regenerated.
982
983 Fri Apr 11 14:12:13 1997 Jim Blandy <jimb@floss.cyclic.com>
984
985 * filesys.c (scm_fcntl): New function from Roland McGrath.
986 (scm_init_filesys): New symbols for use with fcntl.
987 * filesys.h: Added prototype.
988
989 * eval.c (SCM_APPLY): Set debug apply frame argument list correctly
990 when PROC is receiving no arguments.
991
992 Fri Apr 11 19:39:32 1997 Jim Blandy <jimb@totoro.cyclic.com>
993
994 * filesys.c (S_ISSOCK): Define this if it's missing, but we do
995 have S_IFSOCK. This is the case under Ultrix.
996
997 * posix.c (scm_status_exit_val, scm_status_exit_val,
998 scm_status_term_sig, scm_status_stop_sig): Modified to work with
999 Ultrix versions of WIFSTOPPED, etc., which assume that their
1000 arguments are lvalues (hmm).
1001
1002 Thu Apr 10 15:10:07 1997 Jim Blandy <jimb@floss.cyclic.com>
1003
1004 * eval.c: Doc fixes.
1005
1006 * throw.c: Doc fixes; rearranged.
1007
1008 * putenv.c: #include "libguile/scmconfig.h", not <config.h>.
1009
1010 Wed Apr 9 18:01:20 1997 Jim Blandy <jimb@floss.cyclic.com>
1011
1012 * acconfig.h: Added entry for PACKAGE.
1013 * scmconfig.h.in: Regenerated.
1014
1015 Changes to work with automake-1.1n, which has better libtool support.
1016 * Makefile.am: Use lib_LTLIBRARIES instead of lib_PROGRAMS.
1017 Use libguile_la_LIBADD instead of libguile_la_LDADD. (What's the
1018 difference here?)
1019 (libguile_la_SOURCES, modinclude_HEADERS, EXTRA_DIST): Format for
1020 readability.
1021 * Makefile.in: Rebuild.
1022
1023 Wed Apr 9 09:08:54 1997 Gary Houston <ghouston@actrix.gen.nz>
1024
1025 * stime.c (scm_mktime): take an optional zone argument.
1026 (scm_localtime): check putenv return value.
1027 (scm_strftime, scm_strptime): moved from posix.c. move #include
1028 sequences.h too.
1029 stime.h, posix.h: update prototypes.
1030 (bdtime2c, setzone, restorezone): new static procedures.
1031 (scm_mktime, scm_strftime): use them.
1032 (scm_strftime): don't call mktime before strftime. Use
1033 filltime for return value.
1034 (filltime): convert NULL zname to #f.
1035 (scm_strptime): return a count of characters consumed, not
1036 the remaining string.
1037
1038 Sun Apr 6 05:44:11 1997 Gary Houston <ghouston@actrix.gen.nz>
1039
1040 * stime.c (scm_localtime): check HAVE_TM_ZONE and HAVE_TZNAME.
1041 (scm_mktime): likewise.
1042 Declare *tzname[].
1043 Uncomment localtime and mktime.
1044
1045 * configure.in: add AC_STRUCT_TIMEZONE.
1046
1047 Sat Apr 5 23:56:40 1997 Gary Houston <ghouston@actrix.gen.nz>
1048
1049 * stime.c (scm_init_stime): don't define ticks/sec.
1050 (scm_gettimeofday): renamed from scm_time_plus_ticks (avoids multiple
1051 return value problem and is still portable.)
1052
1053 Sat Apr 5 17:59:24 1997 Jim Blandy <jimb@floss.cyclic.com>
1054
1055 * cpp_err_symbols.in: Renamed from cpp_err_symbols, to avoid
1056 make's implicit cpp_err_symbols: cpp_err_symbols.c rule.
1057 * cpp_sig_symbols.in: Renamed from cpp_sig_symbols.
1058 * Makefile.am (check_errnos, check_signals, cpp_sig_symbols.c,
1059 cpp_err_symbols.c): Corresponding changes.
1060 * Makefile.in: Regenerated.
1061
1062 Sat Apr 5 02:39:02 1997 Gary Houston <ghouston@actrix.gen.nz>
1063
1064 * posix.c (scm_putenv): don't check HAVE_PUTENV.
1065 * Makefile.am (EXTRA_libguile_la_SOURCES): add putenv.c.
1066 * configure.in: move putenv from AC_CHECK_FUNCS to AC_REPLACE_FUNCS.
1067 * putenv.c: new file, from sh-utils 1.12.
1068
1069 * posix.c (scm_environ): use malloc in place of scm_must_malloc
1070 since allocation isn't for Scheme objects.
1071 (scm_putenv): copy strings before placing in the environment.
1072
1073 * stime.c (scm_current_time): throw an error if time returns -1,
1074 instead of returning #f.
1075 (scm_get_internal_real_time, scm_get_internal_real_time): use
1076 scm_long2num for return value instead of SCM_MAKINUM.
1077
1078 * stime.h: prototypes updated.
1079
1080 * stime.c (scm_time_in_msec): apparently unused, deleted.
1081
1082 Fri Apr 4 08:53:41 1997 Gary Houston <ghouston@actrix.gen.nz>
1083
1084 * configure.in: check for gettimeofday.
1085
1086 * stime.c (scm_time_plus_ticks): new procedure, an scsh interface
1087 which may be more usefully portable than a gettimeofday interface.
1088
1089 Wed Apr 2 17:11:39 1997 Jim Blandy <jimb@totoro.cyclic.com>
1090
1091 * Makefile.am (EXTRA_DIST): It's cpp_err_symbols, not
1092 cpp_err_signals.
1093 * Makefile.in: Regenerated.
1094
1095 Mon Mar 31 03:22:37 1997 Gary Houston <ghouston@actrix.gen.nz>
1096
1097 * stime.c (filltime): recovered static procedure.
1098 (scm_localtime, scm_gmtime, scm_mktime, scm_tzset): recovered from
1099 an earlier Guile.
1100
1101 * posix.h: add prototype for scm_close_pipe, remove prototypes for
1102 scm_open_input_pipe, scm_open_output_pipe, change scm_mknod prototype.
1103
1104 * posix.c (scm_mknod): split the mode argument into type and perms
1105 arguments, like the extra fields returned by stat.
1106
1107 * fports.c (scm_pipob): set the close, free and print procedures.
1108 (scm_close_pipe): new procedure.
1109
1110 * posix.c (scm_open_input_pipe, scm_open_output_pipe): deleted,
1111 define them in boot-9.scm
1112
1113 Wed Mar 26 04:10:32 1997 Gary Houston <ghouston@actrix.gen.nz>
1114
1115 * ioext.c (scm_setfileno): throw a runtime error if SET_FILE_FD_FIELD
1116 wan't defined. Don't include fd.h.
1117
1118 * Previously fd.h was regenerated whenever configure was run,
1119 forcing a couple of files to be recompiled.
1120
1121 * fd.h.in: deleted, SET_FILE_FD_FIELD moved to ioext.c.
1122 * configure.in: AC_DEFINE FD_SETTER instead of HAVE_FD_SETTER.
1123 Check for _fileno as well as _file.
1124 Don't output fd.h.
1125 * ioext.c: don't fd.h.
1126 * acconfig.h: remove duplicate HAVE_FD_SETTER and change the
1127 other to FD_SETTER.
1128
1129 * Change the stratigy for getting information about errno
1130 (and now signal number) values, e.g., ENOSYS, SIGKILL. Instead of
1131 generating lists of symbols during the build process, which will
1132 not always work, include comprehensive lists in the distribution.
1133 To help keep the lists up to date, the "check_signals" and
1134 "check_errnos" make targets can be used.
1135
1136 * configure.in: don't check for a command to extract errno codes.
1137 * Makefile.am: update file lists, remove errnos.list and errnos.c
1138 targets, add cpp_err_symbols.c, cpp_sig_symbols.c, check_signals,
1139 check_errnos targets.
1140 (CLEANFILES): remove errnos.c and errnos.list, add
1141 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new
1142 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new
1143 * errnos.default: deleted.
1144 * cpp_signal.c: new file.
1145 * cpp_errno.c: renamed from errnos_get.c.
1146 * cpp_err_symbols, cpp_sig_symbols: new files.
1147 * cpp_cnvt.awk: renamed from errnos_cnvt_awk.
1148 * error.c (scm_init_error): #include cpp_err_symbols instead of
1149 errnos.c.
1150 * posix.c (scm_init_posix): don't intern signal symbols. #include
1151 cpp_sig_symbols.c.
1152
1153 Tue Mar 25 04:51:10 1997 Gary Houston <ghouston@actrix.gen.nz>
1154
1155 * strop.c (scm_i_index): allow the lower bound to be equal to the
1156 length of the string, so a null string doesn't always give an error.
1157
1158 * posix.h: new prototypes.
1159 * posix.c (scm_status_exit_val, scm_status_term_sig,
1160 scm_status_stop_sig): new functions, as in scsh. They break down
1161 process status values as returned by waitpid.
1162
1163 Sat Mar 22 18:16:29 1997 Gary Houston <ghouston@actrix.gen.nz>
1164
1165 * net_db.c (scm_gethost): don't check HAVE_GETHOSTENT, since
1166 configure doesn't know about it.
1167
1168 Fri Mar 21 23:49:28 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1169
1170 * snarf.h, backtrace.c: Name change SCM_GLOBAL --> SCM_VCELL.
1171
1172 * snarf.h: Added new macros SCM_GLOBAL_SYMBOL and SCM_GLOBAL_VCELL
1173 which defines C variables with global linkage.
1174
1175 Mon Mar 17 05:57:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1176
1177 * snarf.h (SCM_PROC1): Bugfix: Use (void) rather than (...) for
1178 zero arg subrs.
1179
1180 Sun Mar 16 11:43:49 1997 Mikael Djurfeldt <mdj@floss.cyclic.com>
1181
1182 * eval.c (safe_setjmp): Temporarily use old setjmp until someone
1183 has time to check why this doesn't work well with continuations.
1184
1185 Sun Mar 16 05:09:55 1997 Jim Blandy <jimb@totoro.cyclic.com>
1186
1187 * Fix shell syntax error; some shells won't tolerate
1188 multiple "fi" statements on a single line. (Thanks to Fred Fish.)
1189
1190 Sat Mar 15 01:11:40 1997 Gary Houston <ghouston@actrix.gen.nz>
1191
1192 * posix.c (scm_uname): throw an error if uname fails instead
1193 of returning errno.
1194
1195 * error.h (scm_errno, scm_perror): obsolete prototypes removed.
1196
1197 * error.c (err_head, scm_errno, scm_perror): obsolete procedures
1198 removed.
1199
1200 * async.c (scm_ints_disabled): definition moved from error.c.
1201
1202 Sat Mar 15 00:06:08 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1203
1204 * acconfig.h: Removed PACKAGE.
1205
1206 * scmconfig.h.in: Regenerated.
1207
1208 * snarf.h: g++ says it's non-portable not to specify the first
1209 argument in a varargs declaration. I introduced the first
1210 argument by using preprocessor conditionals.
1211
1212 Thu Mar 13 21:28:25 1997 Gary Houston <ghouston@actrix.gen.nz>
1213
1214 * ioext.c (scm_read_delimited_x): use RO string macros for delims.
1215 (scm_freopen): use RO string macros for filename and modes.
1216 (scm_duplicate_port, scm_fdopen): use RO string macros for modes.
1217
1218 * posix.c (scm_getgrgid): simplify conversion of name to C string.
1219 (scm_mknod): use RO string macros for path.
1220
1221 * socket.c (scm_fill_sockaddr, scm_send, scm_sendto):
1222 use SCM_ROSTRINGP, SCM_ROCHARS, SCM_ROLENGTH.
1223
1224 * net_db.c (scm_gethost, scm_getnet, scm_getproto, scm_getserv):
1225 use SCM_ROSTRINGP and SCM_ROCHARS.
1226
1227 Thu Mar 13 18:31:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1228
1229 * unif.c (scm_array_set_x): Cast ICHR (obj) to char if storing in
1230 a scm_tc7_byvect.
1231
1232 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp,
1233 scm_array_index_map_x, raeql_1, scm_array_equal_p): Completed
1234 support for byte vectors.
1235
1236 * print.c (scm_iprin1): Limit number of vector elements printed
1237 according to pstate->length.
1238
1239 Thu Mar 13 00:12:35 1997 Gary Houston <ghouston@actrix.gen.nz>
1240
1241 * backtrace.c (scm_display_error_message): don't segv if message
1242 is an immediate.
1243
1244 * error.h: prototype for scm_error_scm.
1245
1246 * error.c (scm_error_scm): new procedure, reimplements scm-error
1247 in C and uses scm_error.
1248
1249 Tue Mar 11 03:51:00 1997 Gary Houston <ghouston@actrix.gen.nz>
1250
1251 * read.c (scm_read_hash_extend): make scm_read_hash_procedures a
1252 pointer to the Scheme variable read-hash-procedures and intern it
1253 in scm_init_read. Modify scm_read_hash_extend and
1254 scm_get_hash_procedure to use the pointer.
1255
1256 Mon Mar 10 06:28:54 1997 Gary Houston <ghouston@actrix.gen.nz>
1257
1258 * read.h (SCM_N_READ_OPTIONS): increase SCM_N_READ_OPTIONS to 4.
1259 (SCM_KEYWORD_STYLE): defined.
1260
1261 * read.c (scm_read_opts): add a keywords option. This isn't a
1262 boolean option, in case someone wants to add support for DSSSL
1263 keywords too.
1264 Setup scm_keyword_prefix symbol.
1265 (scm_lreadr): Only process keywords if SCM_KEYWORD_STYLE is
1266 set to 'prefix.
1267 I've left keyword support disabled by default, since it doesn't
1268 seem to break the module system and it gives R4RS standard behaviour.
1269 It can be reactivated with (read-set! keywords 'prefix).
1270
1271 Sun Mar 9 14:14:39 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1272
1273 * arbiters.c (scm_make_arbiter): Bugfix: Must SCM_DEFER_INTS
1274 before constructing arbiter.
1275
1276 * eval.c (scm_m_define): Bugfix: Check that the object is a
1277 closure before setting the procedure property!
1278
1279 * ports.h: Removed prototype for scm_ungetc_char_ready_p.
1280
1281 * ports.c: Removed `ungetc-char-ready?'.
1282
1283 Sat Mar 8 00:27:05 1997 Gary Houston <ghouston@actrix.gen.nz>
1284
1285 * read.c (scm_init_read): intitialise scm_read_hash_procedures
1286 (idea from Mikael: make it a pair so scm_permanent object only
1287 called once.)
1288 (scm_read_hash_extend): don't call scm_permanent_object.
1289 (ideas from Mikael): if chr is already in the list, replace its
1290 procedure instead of appending it again. If proc is #f, remove
1291 it from the list.
1292 (scm_get_hash_procedure): take CDR of scm_read_hash_procedures.
1293
1294 * strports.c (scm_read_0str, scm_eval_0str): update scm_read usage.
1295
1296 * gdbint.c (gdb_read): update scm_lreadr usage.
1297
1298 * load.h: update prototypes.
1299
1300 * load.c (scm_primitive_load, scm_read_and_eval_x,
1301 scm_primitive_load_path): remove case_insensitive_p, sharp arguments.
1302
1303 * read.h: add prototype for scm_read_hash_extend. Change args for
1304 other prototypes.
1305
1306 * read.c (scm_read_hash_procedures): new variable.
1307 (scm_read_hash_extend): new procedure.
1308 (scm_get_hash_procedure): new procedure.
1309 (scm_lreadr): use scm_get_hash_procedure instead of an argument
1310 for extended # processing.
1311 (scm_read, scm_lreadr, scm_lreadrecparen, scm_lreadparen,
1312 scm_read_token): remove case_i, sharp arguments. Change callers.
1313
1314 Fri Mar 7 08:58:21 1997 Gary Houston <ghouston@actrix.gen.nz>
1315
1316 * read.h (SCM_N_READ_OPTIONS): increase to 3.
1317 (SCM_CASE_INSENSITIVE_P): define.
1318
1319 * read.c: add case-insensitive option to scm_read_opts.
1320 (scm_read_token): use SCM_CASE_INSENSITIVE_P instead of an argument
1321 to determine whether to convert symbol case.
1322 (default_case_i): definition removed.
1323 * read.c (scm_read_token): if case_i, downcase ic before doing
1324 anything with it.
1325
1326 Sat Mar 8 03:49:03 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1327
1328 * configure.in: Added configuration option `guile-debug'.
1329 Configure with --enable-guile-debug if you want a bunch of extra
1330 functions used for debugging when developing Guile.
1331
1332 * acconfig.h: Added new preprocessor symbol GUILE_DEBUG.
1333
1334 * procs.c (make-cclo): New undocumented debugging procedure: Make
1335 compiled closure with internal procedure PROC and length LENGTH.
1336 Only compiled if GUILE_DEBUG is defined.
1337
1338 * debug.c: Only include `debug-hang' if GUILE_DEBUG is defined.
1339
1340 * print.c: Put #ifdef GUILE_DEBUG around `current-pstate'.
1341
1342 * ports.c: Changed preprocessor symbol DEBUG --> GUILE_DEBUG.
1343
1344 * eval.c (SCM_CEVAL): Added code sections for handling of rpsubrs
1345 with 3 or more args internally to the evaluator.
1346
1347 Fri Mar 7 19:38:18 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1348
1349 * eval.c (SCM_CEVAL): Added code sections for handling of asubrs
1350 with 3 or more args internally to the evaluator. This is mainly
1351 because we don't want to pass entry and exit points of the
1352 debug support twice, but it also seems to increase the speed of
1353 the evaluator for such calls (e. g. (+ 1 2 3)).
1354
1355 * backtrace.c (scm_display_application): New procedure:
1356 display-application; Set fancy printing parameters individually
1357 for different types of display (backtrace, error, application).
1358 (These should of course be customizable!)
1359
1360 * debug.h (SCM_RESET_DEBUG_MODE): Bugfix: The old code didn't
1361 clear the CHECK-flags.
1362
1363 Thu Mar 6 00:53:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1364
1365 * tags.h, eval.c (iqq): Fixes to comments about SCM_ECONSP.
1366
1367 Wed Mar 5 23:31:21 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1368
1369 * tags.h (SCM_ECONSP, SCM_NECONSP): Bugfix: Discriminate structs
1370 from pairs with a GLOC in the car.
1371
1372 * symbols.c (msymbolize): Bugfix: Also initialize SCM_SYMBOL_HASH,
1373 otherwise `symbol-hash' will behave badly.
1374 (scm_symbol_hash): Bugfix: Must msymbolize if tc7_ssymbol, othwise
1375 we get segmentation fault!
1376
1377 * symbols.c: Added #include "weaks.h". New functions:
1378 `builtin-bindings' and `builtin-weak-bindings'. (These will be
1379 moved to an extraneous library when we split libguile.)
1380
1381 Tue Mar 4 19:50:07 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1382
1383 * filesys.c (scm_stat): stat now takes fport arguments too as
1384 documented in the manual.
1385
1386 Mon Mar 3 07:11:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1387
1388 * debug.c (scm_single_step): Bugfix: Call continuation with
1389 scm_call_continuation instead of throwing to it.
1390
1391 Mon Mar 3 09:07:56 1997 Gary Houston <ghouston@actrix.gen.nz>
1392
1393 * ports.c (scm_char_ready_p): bug fix: in SCM_PROC char-ready's
1394 argument wasn't declared to be optional.
1395
1396 Sun Mar 2 16:34:40 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1397
1398 * stime.c (scm_init_stime): Add feature "current-time".
1399
1400 Sun Mar 2 06:37:31 1997 Gary Houston <ghouston@actrix.gen.nz>
1401
1402 * throw.h: prototype for scm_exit_status.
1403 * throw.c (scm_handle_by_message): if a 'quit is caught, use its
1404 args to derive an exit status. Allows (quit) to work from a
1405 script.
1406 (scm_exit_status): new function.
1407 #include "eq.h".
1408
1409 Sat Mar 1 00:09:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1410
1411 * eval.c (scm_deval): Removed some old code.
1412 (ENTER_APPLY): Bugfix: Reset apply-frame trap on trap as is done
1413 with the others.
1414 (ENTER_APPLY, scm_deval): Reset trace flag on apply-frame and
1415 exit-frame traps.
1416
1417 * symbols.c (msymbolize): Bugfix: Must initialize property list to
1418 SCM_EOL.
1419
1420 * procs.c: Introduce the existent C function scm_thunk_p at the
1421 Scheme level as well.
1422
1423 Wed Feb 26 12:53:58 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1424
1425 * symbols.c, symbols.h (scm_symbol_value0): New function. Can be
1426 used from C to easily lookup the value of a symbol in the current
1427 module.
1428
1429 Tue Feb 25 00:14:10 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1430
1431 * unif.c (scm_init_unif): Added #include "unif.x". (There are two
1432 scm_init_unif in this file. This will also fix a previous problem
1433 with guile-snarf.)
1434
1435 * configure.in: Added AM_MAINTAINER_MODE
1436
1437 Fri Feb 21 23:07:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1438
1439 * gdb_interface.h (GDB_INTERFACE): Added some (void *) casts to
1440 avoid warnings.
1441
1442 Fri Feb 21 18:00:38 1997 Marius Vollmer <mvo@zagadka.ping.de>
1443
1444 * Makefile.am (EXTRA_libguile_la_SOURCES): New variable to hold
1445 source files that are not always included in libguile but should
1446 have their dependencies calculated by automake. This variable is
1447 recognized by automake, no further magic is needed.
1448 (libguile_la_DEPENDENCIES): Changed to @LIBLOBJS@. Libtool wants
1449 to deal exclusively with *.lo files, as it seems. The *.o files
1450 are built automatically when the corresponding *.lo file gets
1451 built.
1452
1453 Wed Feb 19 14:04:23 1997 Jim Blandy <jimb@floss.cyclic.com>
1454
1455 * list.h (scm_list_cdr_ref): Delete prototype; function no longer
1456 exists.
1457
1458 Thu Feb 13 21:44:07 1997 Gary Houston <ghouston@actrix.gen.nz>
1459
1460 * unif.c (scm_array_set_x): minor change to argument error checking.
1461
1462 Tue Feb 11 18:19:47 1997 Jim Blandy <jimb@floss.cyclic.com>
1463
1464 * Makefile.am (libguile_la_SOURCES): Remove backtrace.c, debug.c,
1465 inet_aton.c, srcprop.c, stacks.c, and strerror.c from this list.
1466 They should only be included in the library at configure.in's
1467 discretion.
1468 (libguile_la_LDADD): Include the appropriate .lo files here.
1469 (libguile_la_DEPENDENCIES): List the corresponding .o files here,
1470 so we know when to build them (and their .lo bretheren).
1471 * configure.in (LIBLOBJS): New substituted variable. We let
1472 configure decide which .o files to include in LIBOBJS, and then
1473 put the corresponding list of .lo files in LIBLOBJS. The latter
1474 is what we pass to libtool.
1475 * Makefile.in, configure: regenerated.
1476
1477 Mon Feb 10 00:08:08 1997 Mikael Djurfeldt <mdj@kenneth>
1478
1479 * symbols.c (scm_sysintern0): New function. Contains the core of
1480 old scm_sysintern but doesn't take a second value argument.
1481 (scm_sysintern): Now uses scm_sysintern0.
1482 (scm_sysintern_no_module_lookup): Renamed to
1483 scm_sysintern0_no_module_lookup and doesn't take a second value
1484 argument any longer.
1485
1486 * symbols.h (scm_sysintern0: Added declaration.
1487
1488 * options.c (scm_init_opts): Use scm_sysintern0 instead of
1489 scm_sysintern when interning option keys. Otherwise we risk
1490 destroying the values of already interned variables.
1491
1492 * symbols.c (scm_sym2vcell): Bugfix: Treat definedp as
1493 scheme-level boolean (use SCM_NFALSEP).
1494
1495 * backtrace.c (scm_init_backtrace): Make Scheme-level variable
1496 `the-last-stack'.
1497 (scm_backtrace): New function. (C version of old function from
1498 boot-9.scm) Motivation: Make it possible to display backtraces
1499 without depending on boot-9.scm. (I'm uncertain if this
1500 motivation is good enough...)
1501
1502 * root.h (scm_root_state): Add member the_last_stack_var.
1503 (scm_the_stack_var): Defined to scm_root->the_last_stack_var.
1504
1505 * root.c (mark_root): Mark scm_the_last_stack_var.
1506
1507 * init.c (scm_start_stack): Initialize scm_the_last_stack_var to
1508 SCM_BOOL_F.
1509
1510 Sun Feb 9 18:04:41 1997 Mikael Djurfeldt <mdj@kenneth>
1511
1512 * throw.c (mark_lazy_catch, free_lazy_catch): Removed.
1513 1. mark_lazy_catch didn't mark the smob.
1514 2. Both functions above have standard variants:
1515 (lazy_catch_funs): Changed mark_lazy_catch --> scm_mark0,
1516 free_lazy_catch --> scm_free0.
1517
1518 Fri Feb 7 17:30:26 1997 Jim Blandy <jimb@floss.cyclic.com>
1519
1520 * throw.c (scm_internal_lazy_catch): New function.
1521 (scm_lazy_catch): Rewritten to use it.
1522 (scm_ithrow): Handle the new lazy catch representation.
1523 Use SCM_LAZY_CATCH_P, instead of assuming that any wind list entry
1524 that doesn't have a jmpbuf is a lazy catch clause.
1525 (tc16_lazy_catch, struct lazy_catch, mark_lazy_catch,
1526 free_lazy_catch, print_lazy_catch, lazy_catch_funs,
1527 make_lazy_catch, SCM_LAZY_CATCH_P): Support funs, including a new
1528 smob.
1529 (scm_init_throw): Register the new lazy-catch smob type.
1530 * throw.h (scm_internal_lazy_catch): decl for new function.
1531
1532 * throw.c (scm_internal_catch): Doc fixes.
1533
1534 * alloca.c: New file, needed to support the AC_FUNC_ALLOCA call in
1535 configure.in. Including this might cause problems if applications
1536 that link against libguile include their own copies of alloca, but
1537 if they're using autoconf, they should be adding libguile to LIBS
1538 before calling AC_FUNC_ALLOCA anyway, in which case they'll find
1539 the copy in libguile, and things will be okay. (I think.)
1540
1541 Thu Feb 6 03:10:32 1997 Gary Houston <ghouston@actrix.gen.nz>
1542
1543 * strop.c (scm_string_upcase_x, scm_string_downcase_x): moved from
1544 unif.c.
1545 strop.h: move prototypes too.
1546
1547 Wed Feb 5 08:33:00 1997 Gary Houston <ghouston@actrix.gen.nz>
1548
1549 * posix.c (scm_init_posix): don't intern EINTR since it's now done
1550 elsewhere.
1551
1552 * ioext.c (scm_init_ioext): don't intern stat macros, S_IRUSR
1553 etc. I deleted them from filesys.c long ago, but didn't
1554 notice they were here too (although ineffective since
1555 sys/stat.h wasn't included).
1556
1557 Tue Feb 4 18:17:50 1997 Tom Tromey <tromey@cygnus.com>
1558
1559 * eval.c: Don't define alloca in GCC case. gcc will automatically
1560 use __builtin_alloca if appropriate.
1561
1562 Tue Feb 4 16:57:40 1997 Jim Blandy <jimb@floss.cyclic.com>
1563
1564 * eval.c (safe_setjmp): New function: trivial wrapper for setjmp.
1565 (SCM_CEVAL, SCM_APPLY): Call it, instead of setjmp, to make sure
1566 that values of automatic variables are preserved. See comments
1567 for safe_setjmp for details.
1568
1569 Change from Thomas Morgan:
1570 * variable.c: Include eq.h.
1571 (var_equal): New function.
1572 (variable_smob): Use var_equal as the discriminator for variables.
1573
1574 * throw.c (s_throw): Remove extraneous declaration.
1575
1576 * configure.in: Call AC_FUNC_ALLOCA, to see if we have alloca.
1577 * eval.c: Add necessary CPP cruft to support that.
1578 * configure, Makefile.in, scmconfig.h.in: regenerated.
1579
1580 Change from Thomas Morgan:
1581 * procprop.c (scm_procedure_properties): Convert the Scheme
1582 boolean returned by scm_procedure_p into a C boolean before using
1583 it as a condition for SCM_ASSERT.
1584 (scm_procedure_property): Likewise.
1585
1586 * simpos.c (SYSTNAME): Accept both 'unix' and '__unix' as
1587 indications of Unixness.
1588 * stime.c: Same.
1589
1590 Tue Feb 4 05:07:35 1997 Gary Houston <ghouston@actrix.gen.nz>
1591
1592 * net_db.c (scm_lnaof): change scheme name from lnaof to inet-lnaof.
1593
1594 Mon Feb 3 06:12:37 1997 Gary Houston <ghouston@actrix.gen.nz>
1595
1596 * read.c (scm_lreadr): use scm_misc_error to improve one of the
1597 "unknown # object" error messages.
1598
1599 * strop.c (scm_i_index, scm_i_rindex): combine into one procedure
1600 (scm_i_index) and declare it static. Add a 'direction' argument
1601 to indicate what way the search should go.
1602 (scm_i_index): throw out-of-range error instead of wrong-type-arg
1603 if indices are bad.
1604 (scm_string_index, scm_string_rindex): adjust usage of scm_i_index.
1605 strop.h: remove scm_i_index, scm_i_rindex prototypes.
1606
1607 Fri Jan 31 04:33:11 1997 Gary Houston <ghouston@actrix.gen.nz>
1608
1609 * ioext.c, ioext.h: remove obsolete _sys_ from 9 procedure names.
1610
1611 * posix.c (scm_fork): Scheme name changed from fork to primitive-fork,
1612 to avoid clash with various scsh forks.
1613
1614 Thu Jan 30 20:14:09 1997 Mikael Djurfeldt <mdj@syk-0606.pdc.kth.se>
1615
1616 The following two changes (ramap.c, throw.c) are motivated by the
1617 apparent unportability of forward declarations of static arrays of
1618 the form `static foo bar[];'.
1619
1620 * ramap.c (scm_array_fill_x): Moved above scm_array_fill_int.
1621 (ra_rpsubrs, ra_asubrs): Moved to the top of array code.
1622
1623 * throw.c (scm_throw): Moved above scm_ithrow.
1624
1625 * options.h: Removed the extern declarations of scm_yes_sym and
1626 scm_no_sym since these are static.
1627
1628 Fri Jan 24 06:16:32 1997 Gary Houston <ghouston@actrix.gen.nz>
1629
1630 * ports.c: add SCM_PROC declarations for pt-size and pt-member.
1631
1632 * Makefile.am: remove AWK=@AWK@.
1633 Add a rule for generating errnos.list.
1634 (CLEANFILES): put errnos.list here instead of in DISTCLEANFILES.
1635
1636 * configure.in: add AC_SUBST(AWK) and AC_SUBST(ERRNO_EXTRACT).
1637 don't extract errnos, just set a variable (avoids the
1638 need to recompile error.c just because configure is run.)
1639
1640 * unif.h: update prototypes.
1641 * unif.c (scm_uniform_array_read,write): change the offset and
1642 length arguments to start and end, for consistency.
1643
1644 * __scm.h: uncomment SCM_ARG6 and SCM_ARG7, I needed SCM_ARG6.
1645
1646 * ioext.h: update prototypes.
1647 * ioext.c (scm_read_delimited_x): replaces scm_read_line and
1648 scm_read_line_x, it's a more general procedure using an
1649 interface from scsh. read-line and read-line! are now defined
1650 in boot-9.scm.
1651 Note that the new read-line trims the terminator
1652 by default, previously it was appended to the returned string. An
1653 optional argument specifies how to process the terminator (scsh
1654 compatible). For the old behaviour: (read-line port 'concat).
1655 scm_read_line, scm_read_line_x: deleted. (read-line port 'split)
1656 returns a pair, but is converted to multiple values if the scsh
1657 module is loaded.
1658
1659 socket.h: update prototypes.
1660 * socket.c (scm_recvfrom): for consistency with other procedures,
1661 take start and end as separate optional arguments.
1662 (scm_recv, scm_recvfrom): don't allow the second argument
1663 to be a size, only a buffer. Change the scheme names to
1664 recv! and recvfrom!. Don't return the buffer.
1665
1666 * ioext.h, posix.h: move prototypes too.
1667 * ioext.c, posix.c (scm_read_line, scm_read_line_x, scm_write_line:
1668 moved back from posix.c to ioext.c. Also move #includes of "genio.h"
1669 "read.h" and "unif.h".
1670 * ioext.c: include "chars.h"
1671
1672 Mon Jan 20 19:54:49 1997 Marius Vollmer <mvo@zagadka.ping.de>
1673
1674 * dynl.c: The dynamic linking and module registration functions
1675 are now defined even when dynamic linking is not available for the
1676 host system. Some of their functionality can be done without
1677 dynamic linking; when it's really needed, they throw errors.
1678
1679 Thu Jan 16 16:39:29 1997 Marius Vollmer <mvo@zagadka.ping.de>
1680
1681 * configure.in: Only define DYNAMIC_LINKING when one of the system
1682 dependent functions is detected.
1683 * dynl.c (scm_dynamic_func): New function to get the address of a
1684 function in a dynamic object.
1685 (scm_dynamic_call, scm_dynamic_args_call): Accept the values
1686 produced by scm_dynamic_func as the thing to call.
1687
1688 Sun Jan 12 21:09:42 1997 Marius Vollmer <mvo@zagadka.ping.de>
1689
1690 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c: Restructured.
1691 (scm_register_module_xxx, scm_registered_modules,
1692 scm_clear_registered_modules): New functions.
1693
1694 Sat Jan 11 21:37:15 1997 Marius Vollmer <mvo@zagadka.ping.de>
1695
1696 * symbols.c (scm_sysintern): Renamed to
1697 scm_sysintern_no_module_lookup.
1698 (scm_sysintern): New function to take the place of the old
1699 scm_sysintern. It uses the current toplevel lookup closure to give
1700 the symbol its value. This is a temporary hack to put packages
1701 like gtcltk into their own module.
1702 (scm_can_use_top_level_lookup_closure_var): New variable to tell
1703 us whether `scm_top_level_lookup_closure_var' has been initialized
1704 and is usable.
1705 * eval.c (scm_init_eval): Set it.
1706
1707 Sat Jan 18 00:03:31 1997 Gary Houston <ghouston@actrix.gen.nz>
1708
1709 * fports.c (scm_open_file): pass errno to scm_syserror_msg.
1710 * filesys.h: update prototypes. Remove macros: SCM_FD_P, SCM_FD_FLAGS,
1711 SCM_FD.
1712 * filesys.c (scm_sys_stat, scm_sys_lstat): pass errno to
1713 scm_syserror_msg.
1714 (scm_sys_read_fd, scm_sys_write_fd, scm_sys_close, scm_sys_lseek,
1715 scm_sys_dup): deleted: FD capability will be added to other
1716 procedures.
1717 Remove support for the FD object type: scm_tc16_fd, scm_fd_print,
1718 scm_fd_free, fd_smob, scm_intern_fd.
1719 (scm_open): renamed from scm_sys_open. Return a port instead of
1720 an FD object. Make the mode argument optional.
1721 (scm_sys_create): deleted, it's just a special case of open.
1722 (scm_init_filesys): move interning of constants O_CREAT etc.,
1723 here (were previously using SCM_CONST_LONG macro).
1724 Add missing constants: O_RDONLY, O_WRONLY, O_RDWR, O_CREAT.
1725 don't newsmob fd.
1726 (numerous _sys_ procedures): remove gratuitous _sys_ from names.
1727 include "fports.h" and <stdio.h>
1728 (scm_stat, scm_select): don't support FD objects.
1729
1730 * error.h: adjust scm_syserror_msg prototype.
1731 * error.c (scm_syserror_msg): take an extra argument for errno.
1732 Using the global value didn't always work, since it could be
1733 reset by procedure calls in the message or args arguments.
1734
1735 * fports.c (scm_setbuf0): call setbuf even if FIONREAD is not defined.
1736 I don't understand why the check was there (and what about the
1737 ultrix check?)
1738
1739 * strop.c (scm_string_copy): allow shared substrings to be copied.
1740
1741 * unif.h: corresponding change to prototypes.
1742 * unif.c (scm_uniform_array_read_x, scm_uniform_array_write_x):
1743 recognize two new optional arguments: offset and length. Allow
1744 the port argument to be an integer (file descriptor, for scsh).
1745 Include <unistd.h> for "read" prototype.
1746
1747 Tue Jan 14 02:42:02 1997 Gary Houston <ghouston@actrix.gen.nz>
1748
1749 * socket.c: don't include filesys.h.
1750
1751 Mon Jan 13 03:47:04 1997 Gary Houston <ghouston@actrix.gen.nz>
1752
1753 * Makefile.am: add AWK=@AWK@ (?)
1754
1755 * Makefile.am (EXTRA_DIST): add errnos_cnvt.awk, errnos.default,
1756 errnos_get.c.
1757 Add a rule to generate errnos.c from errnos.
1758 * error.c (scm_init_error): include errnos.c.
1759 * errnos_cnvt.awk: new file, converts the list of errno codes to
1760 C expressions.
1761 * errnos_get.c: new file.
1762 * errnos.default: new file, contains errnos to try if they can't
1763 be extracted from errno.h.
1764 * configure.in: if using GCC, try and extract errno codes from
1765 errno.h.
1766 Added AC_PROG_AWK.
1767
1768 Sat Jan 11 14:47:00 1997 Marius Vollmer <mvo@zagadka.ping.de>
1769
1770 * configure.in: Replaced AC_PROG_RANLIB with AM_PROG_LIBTOOL.
1771 * Makefile.am: Made libguile into a libtool library.
1772 * PLUGIN/guile.config: Removed "-L ../libguile" from xtra_cflags.
1773 Set libtool_libs to indicate that libguile is a libtool library.
1774 See guile/ChangeLog for details.
1775 * .cvsignore: ignore "*.lo", the libtool library objects.
1776
1777 Wed Jan 8 06:54:54 1997 Gary Houston <ghouston@actrix.gen.nz>
1778
1779 * net_db.c (scm_getserv): add missing SCM_ALLOW_INTS.
1780 use htons in getservbyport argument.
1781
1782 Tue Jan 7 18:11:24 1997 Jim Blandy <jimb@floss.cyclic.com>
1783
1784 * ports.h (SCM_PTOBNUM): Removed extraneous semicolon.
1785 * smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a
1786 duplicate.
1787
1788 * objprop.c (scm_object_property): No need to take the CDR of the
1789 value returned by scm_object_properties, since Aug 20 change.
1790
1791 * configure.in: When checking for struct linger, #include
1792 <sys/types.h> as well as <sys/socket.h>. I've never known
1793 <sys/types.h> to cause any portability problems, and Solaris's
1794 <sys/socket.h> needs it.
1795 * configure: Rebuilt.
1796
1797 I think the Sun compiler has chosen a perverse way to interpret
1798 ANSI declarations combined with K&R definitions. We'll
1799 appease it a little bit. But when it invades France, we fight.
1800 * print.c (scm_iprlist): Change 'tlr' argument to an int.
1801 * print.h (scm_iprlist): Here too.
1802 * numbers.c (scm_divbigdig): Change definition to match
1803 declaration in numbers.h.
1804 * unif.c (scm_makflo): Change definition to match declaration in
1805 unif.h.
1806
1807 * init.c (scm_boot_guile): Don't return the value of
1808 scm_boot_guile_1. This function doesn't return a value;
1809 scm_boot_guile_1 doesn't return a value (or return at all).
1810
1811 * eval.c (unmemocopy): Add a semicolon to appease the Sun
1812 compiler.
1813
1814 * simpos.c (SYSTNAME): Add case for AIX; otherwise it won't
1815 compile. I have a feeling this function is a bad idea anyway ---
1816 one should always test for features, not systems.
1817
1818 * smob.h (SCM_SMOBNUM, SCM_PTOBNUM): Remove extraneous
1819 semicolons. Only pure luck kept this from being noticed earlier.
1820
1821 Tue Jan 7 15:04:06 1997 Mikael Djurfeldt <mdj@kenneth>
1822
1823 * socket.c (scm_recvfrom): Added missing semicolon.
1824
1825 Mon Jan 6 20:39:08 1997 Gary Houston <ghouston@actrix.gen.nz>
1826
1827 * socket.c (scm_recvfrom): allow buff_or_size to be a list containing
1828 the buffer and start and end positions for scsh networking
1829 implementation.
1830
1831 Sun Jan 5 13:53:53 1997 Jim Blandy <jimb@floss.cyclic.com>
1832
1833 * configure.in: Revert previous change to this file; the problem
1834 is due to transient automake weirdness.
1835 * configure: Rebuilt.
1836
1837 * Makefile.am (EXTRA_DIST): Distribute PLUGIN/guile.libs.in, not
1838 PLUGIN/guile.libs. configure generates the latter from the former.
1839 * Makefile.in: Rebuilt.
1840
1841 * configure.in: Call AM_PROG_INSTALL; the automake manual says we
1842 need this if we install scripts, like guile-snarf.
1843 * configure: Rebuilt.
1844
1845 Thu Jan 2 01:56:38 1997 Marius Vollmer <mvo@zagadka.ping.de>
1846
1847 * Makefile.am (EXTRA_DIST): Added DYNAMIC-LINKING
1848
1849 Sat Dec 28 19:14:01 1996 Gary Houston <ghouston@actrix.gen.nz>
1850
1851 * socket.c (scm_addr_vector): fix faulty scm_listify.
1852
1853 Sat Dec 28 13:55:58 1996 Marius Vollmer <mvo@zagadka.ping.de>
1854
1855 * read.c (scm_lreadr): Encountering EOF after skipping a SCSH
1856 style block comment is no longer considered an error.
1857
1858 Fri Dec 27 13:44:23 1996 Marius Vollmer <mvo@zagadka.ping.de>
1859
1860 * PLUGIN/guile.libs.in: New file.
1861 * PLUGIN/guile.libs: Removed from repository.
1862 * configure.in: Create PLUGIN/guile.libs from
1863 PLUGIN/guile.libs.in. This is for including additonal libraries
1864 needed for dynamic linking.
1865 * Makefile.am (EXTRA_DIST): Distribute PLUGIN/guile.libs.in
1866 instead of PLUGIN/guile.libs.
1867
1868 * Makefile.am: Added explicit dependency "dynl.o: dynl.x".
1869
1870 Sun Dec 22 23:06:14 1996 Jim Blandy <jimb@floss.cyclic.com>
1871
1872 * list.c (scm_delq_x, scm_delv_x, scm_delete_x): Delete all
1873 occurrences of the given element from the list, not just the
1874 first. This is how the Emacs Lisp functions behave, how the
1875 analogous Common Lisp functions behave, and (I believe) how the
1876 older Maclisp functions worked. I realize that this change may
1877 break code, but it seemed better to break it before the Guile
1878 release than after.
1879
1880 * gc.c (scm_protect_object, scm_unprotect_object): New functions.
1881 Their prototypes were already present in gc.h, but they weren't
1882 implemented.
1883 (scm_init_storage): Initialize scm_protects.
1884 * root.c (scm_protects): New element of scm_sys_protects.
1885
1886 * net_db.h (scm_init_net_db): Fix spelling from scm_init_netdb.
1887
1888 Sat Dec 21 15:38:32 1996 Jim Blandy <jimb@floss.cyclic.com>
1889
1890 * libguile.h: Added #include "libguile/net_db.h".
1891
1892 * libguile.h: Don't #include "libguile/libpath.h", contrary to Oct
1893 30 change. That file is only meant for communication between the
1894 configuration process and load.c. If code linked against libguile
1895 wants to get at the paths mentioned in libpath.h, it can call
1896 functions declared in load.h.
1897
1898 Sat Dec 21 14:50:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1899
1900 * libguile.h: Removed #include "libguile/fdsocket.h"
1901
1902 * net_db.c: Added #include <sys/socket.h>.
1903
1904 Sat Dec 21 00:33:03 1996 Gary Houston <ghouston@actrix.gen.nz>
1905
1906 * filesys.c (scm_input_waiting_p): use select in preference to
1907 FIONREAD, since the latter doesn't detect EOF.
1908 Throw error if neither select nor FIONREAD available.
1909
1910 * socket.c (scm_connect): take a port, not a fd object.
1911 (scm_fill_sockaddr): throw an error if fam is not recognised.
1912 (scm_bind): use scm_fill_sockaddr.
1913 (scm_listen): take a port, not a fd object.
1914 (scm_accept): take and return a port. return #f in the car if
1915 address can't be got
1916 (scm_sock_fd_to_port): new procedure.
1917 (scm_socket): use scm_sock_fd_to_port.
1918 (scm_addr_vector): throw error if unrecognised address type.
1919 take an extra argument with the calling procedure name.
1920 (scm_getsockname): take a port. return #f if address can't be got.
1921 (scm_getpeername): take a port. return #f if address can't be got.
1922 (scm_recvfrom): take a port. return #f for address component if can't
1923 be got.
1924 (scm_sendto, scm_socketpair, scm_getsockopt scm_shutdown,
1925 scm_setsockopt, scm_recv, scm_send): take a port not a fd object.
1926
1927 Fri Dec 20 23:06:53 1996 Jim Blandy <jimb@floss.cyclic.com>
1928
1929 * throw.c (scm_internal_catch): Make body funcs and handler funcs
1930 use separate data pointers, to allow them to be designed
1931 independently and reused.
1932 (scm_body_thunk, scm_handle_by_proc, scm_handle_by_message):
1933 Renamed from catch_body, catch_handler, and uncaught_throw; made
1934 generically useful.
1935 (struct scm_catch_body_data): Renamed from catch_body_data; moved
1936 to throw.h.
1937 (scm_catch): Use the above.
1938 (scm_throw): Don't bother printing a message for an uncaught
1939 throw; we establish a default handler in init.
1940 * throw.h (scm_internal_catch): Prototype updated.
1941 (scm_body_thunk, scm_handle_by_proc, scm_handle_by_message): New
1942 decls.
1943 (struct scm_body_thunk_data): New structure, used as data
1944 argument to scm_body_thunk.
1945 * init.c (struct main_func_closure): New structure, packaging up
1946 the data to pass to the user's main function.
1947 (scm_boot_guile): Create one. Pass it to scm_boot_guile_1.
1948 (scm_boot_guile_1): Pass it through to invoke_main_func. Use
1949 scm_internal_catch to establish a catch-all handler, using
1950 scm_handle_by_message. This replaces the special-case code in
1951 scm_throw.
1952 (invoke_main_func): Body function for scm_internal_catch; invoke
1953 the user's main function, using the main_func_closure pointer to
1954 decide what to pass it.
1955 * root.c (struct cwdr_body_data): Remove handler_proc member.
1956 (cwdr): Use scm_handle_by_proc instead of cwdr_handler.
1957 (cwdr_handler): Removed.
1958
1959 Thu Dec 19 00:00:26 1996 Gary Houston <ghouston@actrix.gen.nz>
1960
1961 * socket.h (SCM_P): update bind prototype.
1962 * socket.c (scm_init_socket): intern PF_UNSPEC, PF_UNIX, PF_INET.
1963 include "feature.h".
1964 (scm_socket): return a port, not a file descriptor object.
1965 include "fports.h" and <unistd.h>
1966 (scm_bind): take a port, not a file descriptor object.
1967 take an extra argument for address args.
1968
1969 * net_db.c (scm_init_net_db): intern INADDR_ANY, INADDR_BROADCAST,
1970 INADDR_NONE, INADDR_LOOPBACK.
1971
1972 Tue Dec 17 22:58:26 1996 Gary Houston <ghouston@actrix.gen.nz>
1973
1974 * init.c: include net_db.h and not fdsocket.h.
1975 (scm_boot_guile_1): call scm_init_net_db and not scm_init_fdsocket.
1976
1977 * Makefile.am: corresponding changes.
1978 * socket.h: renamed from fdsocket.h, fix names.
1979 * net_db.h: renamed from socket.h, fix names.
1980 * socket.c: renamed from fdsocket.c.
1981 remove _sys from procedure names.
1982 (scm_init_socket): rename from scm_init_fdsocket. include socket.x.
1983 add "socket" to features list.
1984 * net_db.c: renamed from socket.c.
1985 remove _sys from procedure names.
1986 (scm_init_net_db): rename from scm_init_socket. include net_db.x.
1987 add "net-db" to features list.
1988 include "net_db.h". don't include <sys/socket.h> or
1989 <sys/un.h>.
1990
1991 Thu Dec 19 14:03:24 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1992
1993 * tags.h (scm_tags): Removed comma at end of last enumerator.
1994
1995 Thu Dec 19 02:54:59 1996 Jim Blandy <jimb@floss.cyclic.com>
1996
1997 Don't use GCC extensions to allocate space for debugging frames.
1998 (Here he goes again! Why do we put up with this?!)
1999 * debug.h (scm_debug_frame): Make the 'vect' member a pointer to
2000 an scm_debug_info structure, not an in-line array of them. Add
2001 'info' member, to say how many vect elements we've used, for eval
2002 frames.
2003 * eval.c (SCM_CEVAL): Use alloca to allocate space for vect. Use
2004 a new variable debug_info_end to mark the end of vect, instead of
2005 the address of the 'info' pointer itself.
2006 [DEVAL] (ENTER_APPLY, SCM_CEVAL, SCM_APPLY): Remove casts of
2007 &debug to scm_debug_frame *; debug is a real scm_debug_frame now.
2008 (SCM_APPLY): Explicitly allocate space for debug.vect.
2009 * debug.c (scm_m_start_stack): Same, for vframe.vect.
2010 * stacks.c: Adjusted for new debug frame structure.
2011 (RELOC_INFO, RELOC_FRAME): New macros.
2012 (stack_depth, read_frames): Use them, and new scm_debug_frame
2013 element 'info', instead of magically knowing that eval frames have
2014 an info pointer sitting after vect.
2015 (scm_make_stack, scm_stack_id, scm_last_stack_frame): Use
2016 RELOC_FRAME.
2017 (scm_init_stacks): Formatting tweaks.
2018
2019 Wed Dec 18 14:57:57 1996 Jim Blandy <jimb@floss.cyclic.com>
2020
2021 Give GCC more control flow information, so it can be sure that
2022 variables aren't used uninitialized.
2023 * error.h (scm_error, scm_syserror, scm_syserror_msg,
2024 scm_sysmissing, scm_num_overflow, scm_out_of_range,
2025 scm_wrong_num_args, scm_wrong_type_arg, scm_memory_error,
2026 scm_misc_error): Tell GCC that these functions never return.
2027 * struct.c (scm_struct_ref, scm_struct_set_x): If we can't figure
2028 out the field type, call abort if SCM_ASSERT returns, to placate
2029 the optimizer.
2030 * stacks.c (scm_make_stack, scm_last_stack_frame): abort if
2031 scm_wta ever returns. We can't handle this case anyway, and this
2032 gives the optimizer more information.
2033 * unif.c (scm_uniform_vector_ref, scm_array_set_x): Abort if
2034 scm_wta ever returns.
2035
2036 In some cases, the code is fine, but GCC isn't smart enough to
2037 figure that out; this usually happens when one variable is only
2038 initialized and used when a particular condition holds true, and
2039 we know that condition will never change within a given invocation
2040 of the function. In this case, we simply initialize the variables
2041 to placate the compiler, hopefully to a value which will cause a
2042 crash if it is ever actually used.
2043 * print.c (scm_iprin1): Initialize mw_pos.
2044 * read.c (scm_lreadrecparen): Initialize tl2, ans2.
2045 * throw.c (scm_ithrow): Initialize dynpair.
2046 * unif.c (scm_uniform_vector_ref): Initialize cra.
2047 * struct.c (init_struct): Initialize prot.
2048 * mbstrings.c (scm_print_mb_symbol): Initialize mw_pos and inc.
2049
2050 * strports.c (scm_eval_0str): Don't return uninitialized garbage
2051 if EXPR contains no expressions.
2052
2053 Wed Dec 18 11:43:22 1996 Jim Blandy <jimb@totoro.cyclic.com>
2054
2055 * eval.c, debug.h: Revert changes of Dec 16 and Nov 21. They
2056 cause an infinite loop (???). So much for the algebraic
2057 equivalency of variable-sized arrays and alloca...
2058
2059 Tue Dec 17 20:29:03 1996 Marius Vollmer <mvo@zagadka.ping.de>
2060
2061 * backtrace.c (scm_display_error): Bugfix: scm_procedure_p returns
2062 a SCM boolean, not a C boolean.
2063
2064 Sat Dec 14 23:21:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
2065
2066 * gc.c (SCM_MTRIGGER_HYSTERESIS): New memory management parameter.
2067 (scm_must_malloc, scm_must_realloc): Added a hysteresis to the
2068 rules for raising scm_mtrigger. Previously, unfortunate but not
2069 unlikely circumstances could result in almost constant invokation
2070 of the gc. Now, this situations should be less likely, but they
2071 are not prevented completely.
2072
2073 Tue Dec 17 16:19:07 1996 Jim Blandy <jimb@totoro.cyclic.com>
2074
2075 * numbers.c (scm_fuck): Procedure removed; looks like old test
2076 code.
2077 * numbers.h: Prototype removed.
2078
2079 Mon Dec 16 18:20:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
2080
2081 * debug.h (scm_debug_frame): Change `vect' member from an in-line
2082 array to a pointer, to match my Nov 21 change in eval.c.
2083
2084 Fri Dec 13 16:12:14 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2085
2086 * libguile.h: Added #include "libguile/backtrace.h", #include
2087 "libguile/stacks.h".
2088
2089 * strings.c (scm_string scm_make_string scm_string_ref
2090 scm_string_set_x scm_string_equal_p scm_string_append):
2091 Bugfix according to scm patch from Aubrey Jaffer:
2092 Corrected long-standing
2093 (not (eqv? (integer->char 128)
2094 (string-ref (make-string 1 (integer->char 128)) 0)))
2095 bug found by John Kozak <jk@noontide.demon.co.uk>.
2096
2097 * strports.c, strports.h: Make scm_eval_0str return the value of
2098 the last expression evaluated (previously, it returned void).
2099
2100 * strports.c, strports.h: New function: scm_read_0str. Does what
2101 it sounds like.
2102
2103 Tue Dec 10 23:38:43 1996 Gary Houston <ghouston@actrix.gen.nz>
2104
2105 * simpos.c (scm_getenv): return #f if string can't be found in the
2106 environment instead of throwing an exception, for compatibility
2107 with numerous other systems.
2108
2109 Mon Dec 9 23:23:35 1996 Tom Tromey <tromey@cygnus.com>
2110
2111 * Makefile.am (.c.x): Use guile-snarf.
2112 * configure.in (AC_OUTPUT): Generate guile-snarf; make it
2113 executable.
2114 * guile-snarf.in: New file, resurrected from old guile-snarf.sh.
2115
2116 Mon Dec 9 18:36:50 1996 Jim Blandy <jimb@duality.gnu.ai.mit.edu>
2117
2118 * backtrace.c (scm_display_error_message): Made non-static, and
2119 renamed from display_error_message.
2120 * backtrace.h (scm_display_error_message): Added extern decl.
2121 * throw.c (uncaught_throw): Use it to display the error message.
2122
2123 Mon Dec 9 10:10:38 1996 Tom Tromey <tromey@cygnus.com>
2124
2125 * inet_aton.c: Use #if 0, not #ifdef 0.
2126
2127 Mon Dec 9 06:36:48 1996 Gary Houston <ghouston@actrix.gen.nz>
2128
2129 * ioext.c (scm_sys_ftell): use scm_long2num instead of SCM_MAKINUM
2130 to convert the returned value.
2131 (scm_sys_fseek): use scm_num2long instead of SCM_INUM to convert
2132 the offset argument.
2133
2134 Sun Dec 8 21:06:38 1996 Jim Blandy <jimb@duality.gnu.ai.mit.edu>
2135
2136 Add new interface to catch/throw, usable from C as well as
2137 Scheme.
2138 * throw.h (scm_catch_body_t, scm_catch_handler_t): New types.
2139 (scm_internal_catch): New function, replaces...
2140 (scm_catch_apply): Deleted.
2141 * throw.c (scm_catch_apply): Deleted; replaced with a more general
2142 mechanism which is a bit more code, but can be used nicely from C
2143 and implement the Scheme semantics as well.
2144 (scm_internal_catch): This is the replacement; it's named after
2145 the analogous function in Emacs.
2146 (scm_catch): Reimplemented in terms of the above.
2147 (struct catch_body_data, catch_body, catch_handler): New
2148 functions, used by scm_catch.
2149 * root.c (cwdr): Reimplemented in terms of scm_internal_catch.
2150 (struct cwdr_body_data, cwdr_body, cwdr_handler): New functions;
2151 support for new cwdr.
2152
2153 * Makefile.am (libpath.h): Re-incorporate Mikael's changes of Wed
2154 Oct 30.
2155
2156 Sun Dec 8 17:55:34 1996 Marius Vollmer <mvo@zagadka.ping.de>
2157
2158 * acconfig.h: Added DYNAMIC_LINKING symbol.
2159 * configure.in: Add option and checks for dynamic linking.
2160 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c, dynl-vms.c,
2161 dynl.h: New files for dynamic linking support.
2162 * Makefile.am (libguile_a_SOURCES):
2163 Added "dynl.c".
2164 (modinclude_HEADERS): Added "dynl.h".
2165 (EXTRA_DIST): Added "dynl-dl.c", "dynl-dld.c", "dynl-shl.c" and
2166 "dynl-vms.c".
2167 * init.c (scm_boot_guile_1): Call
2168 scm_init_dynamic_linking to initialize dynamic linking support.
2169
2170 Thu Dec 5 22:47:53 1996 Marius Vollmer <mvo@zagadka.ping.de>
2171
2172 * init.c (scm_boot_guile_1): Moved `live' variable to the toplevel
2173 (as we Schemers say). It needs to be global, so that I can tweak
2174 it for the proper operation of unexec.
2175 (scm_boot_guile_1_live): New variable, see above.
2176
2177 Sun Dec 1 00:00:49 1996 Tom Tromey <tromey@cygnus.com>
2178
2179 * guile-snarf.sh: Removed.
2180 * PLUGIN/guile.libs: Added dependency for -lm.
2181 * acinclude.m4: Renamed from aclocal.m4.
2182 * PLUGIN/greet: Removed.
2183 * Makefile.am, aclocal.m4: New files.
2184 * configure.in: Updated for Automake.
2185
2186 Thu Nov 28 00:23:55 1996 Marius Vollmer <mvo@zagadka.ping.de>
2187
2188 * eval.c (scm_definedp): Use top_level_lookup_closure_var
2189 and not top_level_lookup_thunk_var.
2190
2191 Wed Nov 27 22:04:19 1996 Jim Blandy <jimb@baalperazim.frob.com>
2192
2193 * Makefile.in (ancillary): List ChangeLog-scm, not ChangeLog.scm.
2194
2195 Wed Nov 27 14:14:56 1996 Marius Vollmer <mvo@zagadka.ping.de>
2196
2197 * eval.c (scm_definedp): Incompatibly changed to be a builtin
2198 Scheme function, instead of syntax. Single argument is now a
2199 symbol.
2200
2201 Thu Nov 21 20:26:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
2202
2203 * ramap.c (scm_ra_sum, scm_ra_difference, scm_ra_product,
2204 scm_ra_divide): Properly terminate statements passed as arguments
2205 to IVDEP macros. (Thanks to Bernard Urban.)
2206
2207 * eval.c (SCM_CEVAL): Use alloca, not GCC's extensions for arrays
2208 with non-constant sizes. (Thanks to Bernard Urban.)
2209
2210 Thu Nov 21 11:17:42 1996 Jim Blandy <jimb@floss.cyclic.com>
2211
2212 It's an "eval closure", not an "eval thunk." A thunk is a
2213 function of no arguments.
2214 * root.h (struct scm_root_state): Renamed
2215 top_level_lookup_closure_var from top_level_lookup_thunk_var.
2216 (scm_top_level_lookup_closure_var): Renamed from
2217 scm_top_level_lookup_thunk_var.
2218 * root.c (mark_root): Uses changed.
2219 * gdbint.c (gdb_eval, gdb_binding): Uses changed.
2220 * init.c (scm_start_stack): Uses changed.
2221 * eval.c (scm_eval, scm_eval_x, scm_init_eval): Rename uses.
2222 Change scheme-visible name to *top-level-lookup-closure* from
2223 *top-level-lookup-thunk*.
2224
2225 Tue Nov 19 22:43:31 1996 Jim Blandy <jimb@totoro.cyclic.com>
2226
2227 * gc.c (scm_igc, scm_gc_mark): Round up the size of the stack we
2228 pass to scm_mark_locations. (Thanks to Aubrey Jaffer.)
2229
2230 Sun Nov 10 13:35:05 1996 Jim Blandy <jimb@floss.cyclic.com>
2231
2232 * gc.c (struct scm_heap_seg_data): Doc fixes.
2233
2234 * gc.c (scm_gc_sweep): Empty all segments' freelists before
2235 sweeping. Then, prepend each segment's free cells to its
2236 freelist, rather than wiping out the old value. (Thanks to Marius
2237 Vollmer.)
2238
2239 * gc.c (which_seg, scm_map_free_list, scm_newcell_count,
2240 scm_check_freelist, scm_debug_newcell): New functions and
2241 variables, for debugging freelist problems.
2242 * pairs.h (SCM_NEWCELL): New debugging version added.
2243 * gc.h (scm_debug_newcell): Added extern declaration, used by
2244 debugging version of SCM_NEWCELL.
2245
2246 Sat Nov 9 19:02:46 1996 Jim Blandy <jimb@floss.cyclic.com>
2247
2248 On some systems <libc.h> conflicts with <unistd.h>, and should not
2249 be #included at all.
2250 * aclocal.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): New autoconf macro.
2251 * acconfig.h (LIBC_H_WITH_UNISTD_H): New CPP symbol.
2252 * configure.in: Call it.
2253 * posix.c, filesys.c: Use its results to decide whether or not to
2254 #include <libc.h>.
2255 * configure, scmconfig.h.in: Rebuilt with autoconf and
2256 autoheader.
2257
2258 Wed Nov 6 16:19:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
2259
2260 * fports.c (scm_stdio_to_port, scm_open_file): Set the port's
2261 pointer to the stdio stream before calling scm_setbuf0, so the
2262 latter will be able to retrieve it. I'm surprised this didn't
2263 segfault earlier. (Thanks to Christopher Lee.)
2264
2265 Wed Nov 6 16:01:20 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2266
2267 * throw.c (scm_lazy_catch, scm_ithrow): Completed implementation
2268 of `lazy-catch'.
2269
2270 Sat Nov 2 21:01:48 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2271
2272 * stacks.c, stacks.h (scm_make_stack): Now takes arbitrary
2273 number of stack narrowing specifier pairs. The first specifier in
2274 a pair controls inner border, the second the outer border. A
2275 number means cut that number of frames, a procedure object means
2276 cut until that object is found in operator position in a frame.
2277
2278 * root.c (cwdr): Bugfix.
2279
2280 * read.c: Recording of positions disabled by default.
2281
2282 * procs.c (scm_closure_p): New function.
2283
2284 * posix.c (scm_tmpnam): New function.
2285
2286 * load.c: Added #include "throw.h".
2287 (scm_sys_search_load_path): Bugfix: Don't add an extra '/' if path
2288 ends with '/'.
2289
2290 * load.c, load.h (scm_read_and_eval_x): New function.
2291
2292 * eval.c: Renamed debug option "deval" to "debug".
2293
2294 (scm_eval_x): `eval!' is no longer accessible from the scheme
2295 level. Motivation: We can't allow operations which introduce
2296 glocs into the scheme level. Guile's type system can't handle
2297 these as data. Use `eval' or `read-and-eval!' as replacement.
2298
2299 * debug.c (scm_m_start_stack): Bugfix: Use SCM_ECONSP instead of
2300 SCM_CONSP since this is a macro!; Set vframe.prev to
2301 scm_last_debug_frame instead of 0. In this way we can look
2302 "above" the virtual start stack frame if we wish.
2303 (scm_debug_hang): New function: Useful for debugging Guile in
2304 certain tricky situations. Will probably be removed later...
2305
2306 * debug.h: Changed semantics of debug option "backtrace". This
2307 option now only indicates whether we want automatic backtrace at
2308 an error.
2309
2310 Wed Oct 30 00:31:55 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2311
2312 * ports.c: #include "filesys.h"
2313 (scm_char_ready_p): input_waiting renamed and moved to filesys.c.
2314
2315 * filesys.c, filesys.h (scm_input_waiting_p): Moved from ports.c.
2316 Motivation: This is system specific code which is related to file
2317 I/O. It also may use select. Added code by Gary Houston to
2318 detect presence of character in stdio buffers.
2319
2320 * libguile.h: #include "libguile/libpath.h"
2321
2322 * Makefile.in (libpath.h): Renamed definition of: LIBRARY_PATH -->
2323 SCM_LIBRARY_DIR; Added definitions of: SCM_PKGDATA_DIR,
2324 SCM_SITE_DIR; Install libpath.h among the other include files.
2325
2326 * load.c, load.h (scm_sys_package_data_dir): New function.
2327
2328 Mon Oct 28 11:43:41 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2329
2330 * stacks.h: Bugfix: Don't use tail-array length field as stack
2331 length field! This screwed GC.
2332
2333 Tue Oct 22 01:01:00 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2334
2335 * _scm.h: Added #ifndef around definition of macros min and max.
2336
2337 * __scm.h: Added hooks for threads to plugin to in ints protection
2338 macros: SCM_THREAD_DEFER, SCM_THREAD_ALLOW, SCM_THREAD_REDEFER,
2339 SCM_THREAD_ALLOW_1, SCM_THREAD_ALLOW_2. Motivation: We don't want
2340 the main code in these macros duplicated and spread over multiple
2341 files. Renamed SCM_THREADS_SWITCHING_CODE ->
2342 SCM_THREAD_SWITCHING_CODE.
2343
2344 Tue Oct 29 14:55:40 1996 Marius Vollmer <mvo@zagadka.ping.de>
2345
2346 * snarf.h: New file.
2347 * guile-snarf.sh: New file.
2348 * Makefile.in (inner_h_files): Added snarf.h
2349 (ancillary, install, uninstall, distclean): Added actions for
2350 guile-snarf.
2351 (.c.x): Use guile-snarf.
2352 (guile-snarf): New rule, to produce guile-snarf from guile-snarf.sh.
2353 (gen_c_files): Note that these depend on guile-snarf.
2354 * _scm.h: Removed the snarfing macros (SCM_PROC, etc). They are
2355 now in "snarf.h". Added #include "snarf.h" to get them.
2356 * libguile.h: Added #include "snarf.h".
2357 (Patches applied and tweaked by Jim Blandy.)
2358
2359 Tue Oct 29 13:21:13 1996 Jim Blandy <jimb@totoro.cyclic.com>
2360
2361 * socket.c: Use K&R style declaration for 'close'; the GNU coding
2362 standards suggest against providing prototypes for system
2363 functions. Thanks to Greg Troxel.
2364
2365 Mon Oct 28 16:48:32 1996 Jim Blandy <jimb@floss.cyclic.com>
2366
2367 * strports.c (scm_eval_0str): New function.
2368 #include "read.h", to get prototype for scm_read.
2369 * Makefile.in (strports.o): Update dependencies.
2370 * strports.h: New prototype.
2371
2372 * numbers.c (scm_integer_p): Renamed from scm_int_p; change its
2373 scheme name from "int?" to "integer?". It seems to do the job.
2374 * numbers.h: Rename prototype too.
2375 * scmhob.h (intp): Change definition to refer to scm_integer_p. I
2376 hope this is right.
2377
2378 * numbers.c (scm_less_p, scm_gr_p, scm_leq_p, scm_geq_p,
2379 scm_num_eq_p): Rename these according to R4RS conventions: call
2380 them <, <=, =, >, and >=, not <?, <=?, =?, >?, and >=?. En route
2381 to making libguile R4RS compliant without ice-9...
2382
2383 * load.c (scm_sys_search_load_path): Search for files under all
2384 extensions listed in the %load-extensions variable. If FILENAME
2385 is absolute, return it unchanged, without searching the load path.
2386 (scm_loc_load_extensions): New variable, pointing to
2387 %load-extensions' value cell.
2388 (scm_init_load): Initialize it, and the value it points to.
2389 (scm_primitive_load_path): Improve error reporting.
2390
2391 * load.c (scm_loc_load_hook): New variable, pointing to value cell
2392 of new Scheme variable %load-hook.
2393 (scm_primitive_load): Apply %load-hook to filename.
2394
2395 Mon Oct 28 06:28:28 1996 Gary Houston <ghouston@actrix.gen.nz>
2396
2397 * configure.in: add tests for figuring out whether buffered data
2398 is available in a FILE structure, which is needed by char-ready.
2399
2400 * acconfig.h: define FILE_CNT_FIELD, FILE_CNT_GPTR and
2401 FILE_CNT_READPTR.
2402
2403 * simpos.c (scm_getenv): renamed from scm_sys_getenv. Throw
2404 exceptions using misc_error instead of syserror. It seems a bit
2405 odd to throw an exception if a string can't be found in the
2406 environment, but it's consistent with open-file, stat etc.
2407 (simpos.h): remove sys_ from getenv.
2408
2409 * posix.c (scm_putenv): renamed from scm_sys_putenv. If an error
2410 occurs, throw an error instead of returning errno. Return value
2411 is now unspecified.
2412 (numerous in posix.c and posix.h): removed superfluous sys_ from names.
2413
2414 Sun Oct 27 01:22:04 1996 Gary Houston <ghouston@actrix.gen.nz>
2415
2416 * filesys.c (scm_stat2scm): derive file type and permissions from
2417 the stat mode and append them to the returned vector.
2418 There isn't much overhead in doing this and it avoids the need to
2419 work with S_IRUSR et al. in Scheme.
2420 Define symbols scm_sym_regular etc.
2421 (scm_init_filesys): don't intern S_IRUSR etc.
2422
2423 * load.c: change s_try_load and s_try_load_path to s_primitive_load
2424 and s_primitive_load_path.
2425
2426 * eval.c, load.c, error.c (scm_wta): use scm_misc_error.
2427
2428 * error.h: don't declare error symbols. prototype for scm_misc_error.
2429
2430 * stackchk.c (scm_stack_overflow_key): defined here instead of in
2431 error.c.
2432
2433 * error.c: use SCM_SYMBOL to set up error keys.
2434 scm_misc_error: new procedure.
2435
2436 Fri Oct 25 01:56:30 1996 Jim Blandy <jimb@floss.cyclic.com>
2437
2438 * read.c (scm_lreadr): Recognize SCSH-style block comments; text
2439 between `#!' and `!#' is ignored.
2440 (skip_scsh_block_comment): New function.
2441
2442 * feature.c (scm_set_program_arguments): New argument, FIRST.
2443 * feature.h: Update prototype.
2444 * init.c (scm_boot_guile_1): Pass new argument to
2445 scm_set_program_arguments.
2446
2447 Tue Oct 22 20:54:42 1996 Jim Blandy <jimb@floss.cyclic.com>
2448
2449 * init.c (scm_start_stack): Don't initialize scm_progargs here.
2450 (scm_boot_guile): Call scm_set_program_arguments here, later than
2451 the old initialization.
2452
2453 * init.c: (scm_boot_guile, scm_boot_guile_1): New, simplified
2454 initialization procedure.
2455 - Delete in, out, err arguments; there are other perfectly good
2456 ways to override these when desired.
2457 - Delete result argument; this function shouldn't ever return.
2458 - Rename init_func argument to main_func, for less confusion.
2459 - Delete boot_cmd argument; main_func is more general.
2460 -Add 'closure' argument, to help people pass data to main_func
2461 without resorting to global variables.
2462 - Abort if reentered; don't bother returning an error code.
2463 - Call scm_init_standard_ports to set up the default/current
2464 standard ports; no need to pass them to scm_start_stack.
2465 - Remove code to evaluate the boot_cmd, and start the repl; let
2466 the user do something like that in main_func if they want.
2467 - Remove code to package up a return value; main_func can do any
2468 of that as needed.
2469 - Call exit (0), instead of returning.
2470 (scm_start_stack): Don't initialize the I/O ports here; that's
2471 weird. Delete in, out, err arguments. Move guts to
2472 scm_init_standard_ports, scm_stdio_to_port.
2473 (scm_init_standard_ports): New function, to set up current and
2474 default standard ports.
2475 (scm_start_stack, scm_restart_stack): Make these static.
2476 * init.h (scm_boot_guile): Adjust declaration.
2477 (scm_start_stack, scm_restart_stack): Remove externally
2478 visible declarations for these.
2479 (enum scm_boot_status): Removed; now scm_boot_guile never returns.
2480
2481 * fports.c (scm_stdio_to_port): New function. Its guts used to be
2482 written out several times in scm_start_stack.
2483 * fports.h: New declaration for the above.
2484
2485 * feature.c (scm_set_program_arguments): New function.
2486 * feature.h: New declaration for the above.
2487
2488 * ports.c: Formatting tweak.
2489
2490 Sun Oct 20 03:29:32 1996 Mikael Djurfeldt <mdj@kenneth>
2491
2492 * pairs.h, eval.c, eval.h, feature.c, gc.c, list.c, load.c,
2493 ramap.c, symbols.c: Added new selectors SCM_CARLOC and SCM_CDRLOC
2494 for obtaining the address of a car or cdr field. Motivation:
2495 &SCM_CXR make assumptions about the internal structure of the
2496 SCM_CXR selectors.
2497
2498 * eval.h, eval.c: Added new selector SCM_GLOC_VAL_LOC.
2499 Motivation: see SCM_CXRLOC.
2500
2501 * pairs.h, eval.c, gc.c, init.c, ioext.c, ports.c, ports.h,
2502 srcprop.h, tags.h, throw.c, unif.c: Added new selectors
2503 SCM_SETAND_CAR, SCM_SETAND_CDR, SCM_SETOR_CAR and SCM_SETOR_CDR.
2504 Motivation: Safer use. Some other macros are defined in terms of
2505 these operations. If these are defined using the SCM_SETCXR
2506 (<e1>, SCM_CXR (<e1>) <op> <e2>) pattern a complex <e1> will lead
2507 to inefficiency and an <e1> with side-effects could potentially
2508 break. Also, these particular operations are heavily utilized in
2509 the garbage collector. In unoptimized code there will be a
2510 measurable speedup.
2511
2512 * alist.c, arbiters.c, continuations.c, debug.c, debug.h, eval.c,
2513 eval.h, feature.c, filesys.c, fports.c, gc.c, gsubr.c, init.c,
2514 ioext.c, kw.c, list.c, load.c, mallocs.c, numbers.c, numbers.h,
2515 pairs.c, pairs.h, ports.c, ports.h, posix.c, procprop.c, procs.c,
2516 procs.h, ramap.c, read.c, root.c, srcprop.c, srcprop.h,
2517 strports.c, symbols.c, tags.h, throw.c, unif.c, variable.c,
2518 vports.c: Cleaned up use of pairs: Don't make any special
2519 assumptions about the internal structure of selectors and
2520 mutators: SCM_CXR (<e1>) = <e2> --> SCM_SETCXR (<e1>, <e2>),
2521 SCM_CXR (<e1>) &= <e2> --> SCM_SETAND_CXR (<e1>, <e2>) etc.
2522 (Among other things, this change makes it easier to build Guile
2523 with certain compilers which have problems with casted lvalues.)
2524
2525 Fri Oct 18 01:11:56 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2526
2527 * stacks.c: Improve selection of relevant stack frames when making
2528 a stack object. Introduce one level of indirection in the stack
2529 object to make it possible to "narrow" to a certain region of the
2530 stack. This facilitates making use of more clever algorithms (not
2531 implemented) for selecting relevant frames and gives a cleaner
2532 design since selection of frames can be done independently of
2533 extraction of frames from the real stack.
2534 (scm_stack_id): Also take #t as argument which means look at
2535 current stack.
2536
2537 * stacks.h: In struct scm_stack: Turn field frames into a pointer.
2538 Turn n_tail into an integer directly representing current number
2539 of frames in stack. Add field tail.
2540
2541 * ports.c (scm_port_line_x, scm_port_column_x): New mutators.
2542
2543 * debug.c (scm_make_memoized): Made it available at scheme level.
2544 (scm_unmemoize, scm_memoized_environment): Bugfix: Check for
2545 SCM_NIMP before applying heavier predicates in argument checking.
2546 (scm_local_eval): Also take memoized object as argument.
2547
2548 * backtrace.c (scm_display_error): Just a safety measure: Stacks
2549 aren't created with zero length, but should such a strange
2550 creature suddenly turn up...
2551
2552 Wed Oct 16 11:08:41 1996 Marius Vollmer <mvo@zagadka.ping.de>
2553
2554 * hashtab.h (scm_hashx_remove_x): Renamed `delete' parameter to
2555 `del', for the sake of C++ compilers. (Patch applied by JimB.)
2556
2557 Tue Oct 15 17:06:13 1996 Jim Blandy <jimb@floss.cyclic.com>
2558
2559 * variable.c (scm_make_variable): Make the name hint optional, as
2560 documented.
2561 (anonymous_variable_sym): Renamed from variable_sym. All uses
2562 changed.
2563
2564 * load.c (scm_primitive_load, scm_primitive_load_path): Renamed
2565 from scm_sys_try_load and scm_sys_try_load_path. The Scheme name
2566 of scm_primitive_load_path was also changed to
2567 "primitive-load-path", from "%try-load-path". Callers changed.
2568 We'd like to respect the convention that a function named
2569 "try-mumble" should behave just like the function called "mumble",
2570 but return #f instead of signalling some error.
2571 * load.h: Rename prototypes.
2572
2573 Tue Oct 15 05:34:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2574
2575 * print.c (make_print_state, grow_print_state), print.h: Modified
2576 the print state representation: Don't use a tail array for
2577 recording of circular references. Resizing of the print state
2578 structure invalidates the print state pointer. To avoid passing
2579 around an indirect print state reference to all printing
2580 functions, we instead let the print state reference a resizable
2581 vector.
2582
2583 Mon Oct 14 19:25:00 1996 Jim Blandy <jimb@totoro.cyclic.com>
2584
2585 * alist.c (scm_sloppy_assq, scm_sloppy_assv, scm_sloppy_assoc):
2586 Don't crash when passed an improper list terminated by a
2587 non-immediate value.
2588
2589 Mon Oct 14 19:08:33 1996 Jim Blandy <jimb@floss.cyclic.com>
2590
2591 Allocate data for structures on an eight-byte boundary, as
2592 required by the tagging system.
2593 * struct.c (alloc_struct): New function.
2594 (scm_make_struct, scm_make_vtable_vtable): Call it.
2595 * struct.h (scm_struct_n_extra_words): Bump to 3.
2596 (scm_struct_i_ptr): New "field".
2597 * gc.c (scm_gc_sweep): When we need to free the data, use the
2598 information stored by alloc_struct to find the beginning of the
2599 block allocated to the structure, so we can free it.
2600
2601 Mon Oct 14 17:07:55 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2602
2603 * init.c (scm_boot_guile_1): Moved scm_init_struct in front of
2604 scm_init_stacks.
2605
2606 * debug.h (SCM_VOIDFRAME, SCM_VOIDFRAMEP): New macros.
2607 (scm_debug_info): New member: id.
2608
2609 * stacks.c: Stacks are now represented as structs; Stacks have an
2610 id given to them by `start-stack'.
2611 (scm_last_stack_frame): Added predicates `stack?' and `frame?'.
2612
2613 * stacks.h: Added declarations of scm_stack_p and scm_frame_p;
2614 Changed stack representation.
2615
2616 * debug.c (scm_procedure_name): Try procedure property `name' for
2617 compiled closures aswell.
2618
2619 * gc.c (scm_init_storage): Initialize scm_stand_in_procs to SCM_EOL.
2620
2621 * eval.c: scm_i_name moved to gsubr.c
2622 (scm_m_define): Record names of all kinds of procedure
2623 objects. (Earlier, only closures were recorded.)
2624
2625 * procprop.h: Added declaration of scm_i_name.
2626
2627 * gsubr.c: Added global scm_i_name. Added #include "procprop.h".
2628 (scm_make_gsubr): Record names of compiled closures.
2629
2630 Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2631
2632 * debug.c, debug.h: Removed obsolete code.
2633
2634 * continuations.c, continuations.h, debug.c, gc.c, init.c, root.c,
2635 stacks.c: Renamed regs --> scm_contregs.
2636
2637 * print.c (scm_free_print_state): Cleanup print state before
2638 returning it to pool. It is better to do it here than in
2639 scm_prin1 since scm_prin1 is called often.
2640
2641 * srcprop.c (scm_source_properties, scm_set_source_properties_x,
2642 s_set_source_property_x): Check that first argument is a pair or a
2643 memoized object.
2644
2645 * srcprop.c, srcprop.h: Made scm_i_filename, scm_i_copy,
2646 scm_i_line, scm_i_column and scm_i_breakpoint global.
2647
2648 * init.c: Added #include "backtrace.h" and #include "stacks.h".
2649 (scm_boot_guile_1): Added calls to scm_init_backtrace and
2650 scm_init_stacks.
2651
2652 * debug.h: Added debug object smob declaration and macro
2653 definitions.
2654
2655 * configure.in: Build with backtrace.o and stacks.o if debug
2656 support enabled.
2657
2658 * Makefile.in: Added entries for new files: backtrace.c,
2659 backtrace.h, stacks.c and stacks.h.
2660
2661 * symbols.c (scm_sym2ovcell): Fixed documentation.
2662
2663 * _scm.h (min, max): Added.
2664
2665 * async.c: Moved `min' macro to _scm.h.
2666
2667 * debug.h: New debug options SCM_BACKTRACE_MAXDEPTH and
2668 SCM_BACKTRACE_INDENT.
2669
2670 * eval.c: Added new debug options `maxdepth' and `indent'.
2671
2672 * print.c (make_print_state): Bugfix: Initialize pstate->ceiling.
2673
2674 * print.h: Added selector SCM_PRINT_STATE.
2675
2676 * print.c: New functions: scm_make_print_state,
2677 scm_free_print_state.
2678
2679 * print.h: Added declarations for scm_make_print_state,
2680 scm_free_print_state.
2681
2682 * debug.c (scm_m_start_stack): New acro.
2683
2684 * debug.h: Small cleanup.
2685
2686 * init.c (scm_boot_guile_1): Moved scm_init_debug below
2687 scm_init_eval.
2688
2689 Sun Oct 13 20:14:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
2690
2691 * __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
2692 arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
2693 chars.c, chars.h, continuations.c, continuations.h, debug.c,
2694 debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
2695 eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
2696 filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
2697 gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
2698 hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
2699 kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
2700 markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
2701 objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
2702 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
2703 procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
2704 root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
2705 simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
2706 stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
2707 strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
2708 struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
2709 unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
2710 version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
2711 declare functions with prototypes. (Patch thanks to Marius
2712 Vollmer.)
2713
2714 More prototype-related changes from Marius Vollmer:
2715 * gdb_interface.h: Wrapped header file in #ifdef/#endif
2716 * gscm.h (gscm_run_scm): Added prototype for `initfn' paramter.
2717 * ports.h (ptobfuns): Added prototypes. This means some casting in
2718 fports.c.
2719 * fports.c: Added casts for initializations, since the functions
2720 are defined to take FILE * as their stream argument, not SCM.
2721 * fdsocket.c, fdsocket.h: Made `init_addr_buffer' static.
2722 * genio.c (scm_gen_puts): Changed `unsigned char *str_data' parameter
2723 to `char *str_data' to conform to prototype.
2724
2725 Sat Oct 12 21:49:29 1996 Gary Houston <ghouston@actrix.gen.nz>
2726
2727 * error.c, eval.c, load.c, stackchk.c: use scm_error not lgh_error.
2728
2729 * __scm.h (lgh_error): removed, lgh shouldn't be in libguile.
2730
2731 * stime.c, stime.h: use SCM_P method.
2732
2733 Sat Oct 12 16:16:25 1996 Jim Blandy <jimb@floss.cyclic.com>
2734
2735 * eval.c (scm_nconc2last): Don't accept an empty list; apply must
2736 be given at least two arguments. Insist that lst's last element
2737 be a list, but don't make any requirements of its predecessors.
2738
2739 Fri Oct 11 03:58:25 1996 Jim Blandy <jimb@floss.cyclic.com>
2740
2741 * eval.c (scm_nconc2last): Revert last change; there seems to be
2742 other stuff going on here.
2743
2744 Fri Oct 11 02:43:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
2745
2746 * eval.c (scm_nconc2last): Make sure that each element of lst
2747 (which is a list of argument lists, except for the tail) is a
2748 proper list, i.e., finite and terminated by '().
2749
2750 Thu Oct 10 21:09:13 1996 Jim Blandy <jimb@totoro.cyclic.com>
2751
2752 * unif.c (scm_ra_set_contp): Localize `inc' declaration.
2753 Clarifies flow.
2754
2755 * struct.c (scm_make_struct, scm_make_vtable_vtable): Use the
2756 symbolic name for the tag, scm_tc3_cons_gloc, instead of just
2757 saying "1".
2758
2759 * vectors.c (scm_make_vector): Fill vectors with the undefined
2760 value, to help make Guile Scheme code more portable to other
2761 Schemes.
2762
2763 * symbols.c (scm_intern_obarray_soft, scm_sysintern): Doc fixes.
2764 * symbols.h, tags.h: Doc fixes.
2765
2766 Wed Oct 9 19:39:29 1996 Jim Blandy <jimb@floss.cyclic.com>
2767
2768 * async.c (scm_take_signal): Doc fixes.
2769
2770 Mon Oct 7 22:30:34 1996 Jim Blandy <jimb@totoro.cyclic.com>
2771
2772 * numbers.c (scm_divbigint): When the remainder is zero, we don't
2773 want to subtract it from the modulus; we just want to leave it
2774 alone.
2775
2776 Mon Oct 7 00:14:17 1996 Mikael Djurfeldt <mdj@kenneth>
2777
2778 * init.c (scm_boot_guile_1): Bugfix: i --> base in argument to
2779 `scm_init_threads'.
2780
2781 * throw.h (scm_catch_apply): Removed the `lazyp' argument.
2782
2783 * throw.c (scm_catch_apply): Finished implementation of
2784 `lazy-catch'.
2785
2786 Sun Oct 6 05:26:05 1996 Gary Houston <ghouston@actrix.gen.nz>
2787
2788 * filesys.c (scm_sys_select): move SCM_ALLOW_INTS past the sreturn
2789 check.
2790 (scm_init_filesys): set "i/o-extensions" feature.
2791 include feature.h.
2792
2793 Sat Oct 5 12:22:00 1996 Jim Blandy <jimb@floss.cyclic.com>
2794
2795 * Makefile.in (root.o): Correct dependencies.
2796
2797 Sat Oct 5 18:40:42 1996 Mikael Djurfeldt <mdj@kenneth>
2798
2799 * Makefile.in: Added dependency entry for root.o.
2800
2801 * continuations.c, debug.[ch], eval.c, gscm.c init.c, root.c,
2802 throw.c: Renamed last_debug_info_frame -> scm_last_debug_frame.
2803
2804 * init.c (scm_start_stack): Set initial root continuation number
2805 to 0.
2806
2807 * procs.c: New function: scm_thunk_p.
2808
2809 * procs.h: Added declarations of scm_thunk_p.
2810
2811 * root.c: Renamed `call-with-new-root' -->
2812 `call-with-dynamic-root'.
2813 (cwdr): Removed allocation of new root state. This should be done
2814 separately by use of scm_make_root.
2815 (scm_apply_with_dynamic_root): New function: Does what it
2816 sounds like. Needed when spawning threads.
2817
2818 * root.h: Added member last_debug_frame to root state.
2819 Added #include "libguile/debug.h"
2820
2821 * throw.c: Renamed scm_catch --> scm_catch_apply and added more
2822 arguments. The motivation is that code in root.c needs catch
2823 functionality, and we want to avoid code duplication.
2824 New functions: scm_catch, scm_lazy_catch. These are wrappers for
2825 scm_catch_apply. scm_lazy_catch is intended to introduce catch
2826 handlers that run without popping the stack into the dynwind
2827 chain.
2828
2829 * throw.h: Added prototypes for scm_catch_apply and
2830 scm_lazy_catch.
2831
2832 Thu Oct 3 11:12:33 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2833
2834 * root.h (scm_root, scm_set_root): Decouple thread support details
2835 by introducing the selector SCM_THREAD_LOCAL_DATA and the mutator
2836 SCM_SET_THREAD_LOCAL_DATA.
2837
2838 * print.c (scm_iprlist): Bugfix: Added SCM_ECONSP tests in hare
2839 and tortoise scanning loop.
2840
2841 Thu Oct 3 00:04:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
2842
2843 * Makefile.in: Rebuild dependencies.
2844
2845 * libguile.h: #include "libguile/print.h" before "smob.h", since
2846 the latter uses the print_state structure.
2847
2848 * throw.c (scm_ithrow): Use the correct variable when checking to
2849 see if a given element of scm_dynwinds is a valid catch.
2850
2851 * throw.c (scm_ithrow): If scm_dynwinds has invalid list
2852 structure, abort; don't just silently ignore the garbage.
2853
2854 * _scm.h: #include "print.h" here, since it seems to be used just
2855 about everywhere.
2856 * eval.c, gdbint.c, genio.h, numbers.h, smob.h, srcprop.c,
2857 strports.c, unif.h: Don't #include "print.h".
2858
2859 Tue Oct 1 05:15:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2860
2861 * feature.h (scm_loc_features): Removed external declaration.
2862 (Bug fix suggested by Petr Adamek <adamek@mit.edu>.)
2863
2864 Tue Oct 1 00:00:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
2865
2866 * feature.c (scm_init_feature): Added threads feature (needs to be
2867 initialized here, since features doesn't exist when
2868 scm_init_threads is called).
2869
2870 * libguile.h: Added #include "libguile/../threads/threads.h".
2871 (This is a kludge to get thread support working. This should be
2872 fixed.)
2873
2874 * configure.in, acconfig.h: Added flags for thread support.
2875
2876 * scmsigs.c: Define `signal' to be `pthread_signal' if using
2877 mit-pthreads.
2878
2879 * gc.c (scm_igc): Added SCM_THREAD_CRITICAL_SECTION_START and
2880 SCM_THREAD_CRITICAL_SECTION_END. Moved marking of root data to
2881 root.c:mark_root.
2882
2883 * _scm.h: Added conditional #include "threads.h"
2884
2885 * __scm.h (SCM_ASYNC_TICK): Added call to macro
2886 SCM_THREADS_SWITCHING_CODE.
2887
2888 * init.c (scm_start_stack): Call `scm_make_root' to dynamically
2889 allocate the basic dynamic root object.
2890 (scm_boot_guile): Added call to scm_init_root.
2891
2892 * root.c, root.h: Added root smob.
2893 (cwdr, scm_call_with_new_root, scm_dynamic_root, scm_app_wdr): New
2894 functions: Implements dynamic roots mostly according to spec in
2895 SCM manual. Main difference is that the second argument is a
2896 throw handler rather than an error "thunk".
2897
2898 * root.h: Added declaration of scm_init_root.
2899
2900 * root.c: Added #include "genio.h", #include "smob.h", #include
2901 "pairs.h", #include "throw.h", #include "dynwind.h", #include
2902 "eval.h"
2903 (scm_init_root): Added #include "root.x".
2904
2905 * throw.c: Added #include "stackchk.h"
2906 (scm_catch): Changed SCM_DEFER_INTS --> SCM_REDEFER_INTS and
2907 SCM_ALLOW_INTS --> SCM_REALLOW_INTS. This is so that scm_catch
2908 can be used in scm_call_with_new_root; Added reenabling of stack
2909 checking when catching a throw.
2910
2911 Mon Sep 30 21:48:11 1996 Jim Blandy <jimb@totoro.cyclic.com>
2912
2913 * list.c, list.h: Use SCM_P instead of CPP hair. Doc fixes.
2914
2915 * list.c (scm_member, scm_memv, scm_memq): Return #f if a matching
2916 element is not found, as per R4RS.
2917
2918 Sat Sep 28 18:13:01 1996 Jim Blandy <jimb@totoro.cyclic.com>
2919
2920 * list.c: Doc fixes throughout.
2921
2922 Sat Sep 28 02:07:43 1996 Gary Houston <ghouston@actrix.gen.nz>
2923
2924 * strings.c, strings.h: (scm_makfrom0str, scm_makefrom0str_opt:
2925 declare the char * to be const. Avoids a warning in rgx.c.
2926
2927 * ports.h: spelling fix.
2928
2929 * filesys.c (scm_sys_stat, scm_sys,lstat): include file name in
2930 error messages.
2931
2932 * load.c (scm_sys_try_load_path): throw an error if file not found
2933 (like it says it in NEWS).
2934
2935 Fri Sep 27 18:27:01 1996 Jim Blandy <jimb@totoro.cyclic.com>
2936
2937 * symbols.c (scm_intern_obarray_soft): Initialize the new symbol's
2938 PROPS slot to '(), not #f; it's an empty alist.
2939
2940 * throw.h, throw.c: Use SCM_P instead of #if hair.
2941
2942 Remove special support for uncaught throws; see throw.c for
2943 rationale.
2944 * throw.c (uncaught_throw): New function.
2945 (scm_ithrow): Call uncaught_throw if we don't find a throw
2946 target; don't mess with scm_bad_throw_vcell.
2947 (scm_bad_throw_vcell): Variable deleted.
2948 (scm_init_throw): Don't initialize it.
2949
2950 * throw.c (scm_ithrow): Don't let outer key matches shadow inner
2951 #t catches.
2952
2953 Wed Sep 25 04:35:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
2954
2955 * numbers.c (scm_istr2int): If the number is short (as most
2956 numbers are), just call scm_small_istr2int to deal with it.
2957 (scm_small_istr2int): New function, created by un-#ifdefing the
2958 non-bignum version of scm_istr2int and renaming it.
2959
2960 Tue Sep 24 06:48:38 1996 Gary Houston <ghouston@actrix.gen.nz>
2961
2962 * load.c (scm_sys_try_load): don't check whether value returned
2963 by scm_open_file is #f, it won't be. Always return SCM_UNSPECIFIED.
2964 Change the Scheme name from %try-load to primitive-load.
2965
2966 * error.c (scm_error): convert a NULL message to SCM_BOOL_F.
2967 Can avoid passing a message, allowing it to be derived in the
2968 error handler (e.g., if we want to throw to the key both from
2969 Scheme and C).
2970
2971 Mon Sep 23 00:42:15 1996 Mikael Djurfeldt <mdj@kenneth>
2972
2973 * print.c (scm_iprin1, scm_prin1, scm_iprlist): Circular
2974 references now have a new appearance which is more compact and
2975 also gives a clue about what the target of the reference is.
2976 By setting parameters in the print state, more fancy printing can
2977 be achieved. This is used by the (not yet commited) backtrace
2978 code.
2979
2980 Sun Sep 22 17:10:06 1996 Mikael Djurfeldt <mdj@kenneth>
2981
2982 * eval.c, numbers.h, unif.h, smob.h, srcprop.c: Added #include
2983 "print.h"
2984
2985 * print.c: Added #include "struct.h". Removed function
2986 scm_prlist.
2987
2988 * print.h: Modified prototypes for scm_iprlist, scm_prin1 and
2989 scm_iprin1. Removed prototype for scm_prlist.
2990
2991 * arbiters.c (prinarb),
2992 async.c (print_async),
2993 debug.c (prindebugobj, prinmemoized),
2994 eval.c (prinprom, prinmacro),
2995 filesys.c (scm_fd_print, scm_dir_print),
2996 kw.c (print_kw),
2997 mallocs.c (prinmalloc),
2998 numbers.c, numbers.h (scm_floprint, scm_bigprint),
2999 smob.h (scm_smobfuns),
3000 srcprop.c (prinsrcprops),
3001 throw.c (prinjb),
3002 unif.c, unif.h (scm_raprin1, rapr1),
3003 variable.c (prin_var): Changed argument `int writing' to
3004 `scm_print_state *pstate'.
3005
3006 * init.c (scm_boot_guile): Moved scm_init_struct upwards so
3007 that it will be called before scm_init_print.
3008
3009 * print.c (scm_prin1): Print states are now allocated when calling
3010 scm_prin1 and then passed around to all printing functions as an
3011 argument. A cache `print_state_pool' enables reuse of print
3012 states.
3013 (scm_make_print_state): New function.
3014 (scm_iprin1): Adaption to print states.
3015 (scm_iprlist): An initial "hare and tortoise" scan brings down
3016 time complexity to O (depth * N). (Better time complexity will be
3017 achieved when the printing code is completely rewritten.)
3018
3019 Fri Sep 20 22:01:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
3020
3021 * aclocal.m4 (GUILE_STRUCT_UTIMBUF): Use AC_CACHE_CHECK instead of
3022 AC_CACHE_VAL; #define UTIMBUF_NEEDS_POSIX outside AC_CACHE_VAL, so
3023 it gets done whether or not the cache variable has a value.
3024
3025 Thu Sep 19 17:06:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
3026
3027 Distinguish #f and ().
3028 * __scm.h: #undef SICP.
3029 * pairs.h (SCM_EOL): Delete this definition, equating it with
3030 SCM_BOOL_F.
3031 * tags.h (SCM_EOL): Give it a new definition here; I think I found
3032 the value it used to have. Doc fixes, too.
3033
3034 Thu Sep 19 15:33:51 1996 Mikael Djurfeldt <mdj@kenneth>
3035
3036 * struct.c (scm_make_struct_layout, init_struct, scm_struct_ref,
3037 scm_struct_set_x), struct.h, gc.c (scm_gc_mark): Completed Tom
3038 Lord's implementation of structs, allowing for tail arrays as
3039 described in the manual. Also fixed some bugs. (Both the interface
3040 and the implementation should be improved.)
3041
3042 * read.c (scm_init_read): Removed #ifdef READER_EXTENSIONS
3043
3044 * print.c, print.h: Closures now print like #<procedure foo (x)>.
3045 People who whish to see the source can do `(print-enable 'source)'.
3046 Removed #ifdef DEBUG_EXTENSIONS.
3047
3048 Thu Sep 19 00:00:29 1996 Gary Houston <ghouston@actrix.gen.nz>
3049
3050 * filesys.c (scsm_sys_stat): don't SIGSEGV if argument is an
3051 integer (assuming for now accepting an integer is a good thing).
3052
3053 * error.c, fports.c: replace use of %S in lgh_error args with %s.
3054 %S will be used instead for write'ing arguments.
3055
3056 * unif.c (scm_transpose_array): change arguments in the SCM_WNA
3057 asserts. fix a few other asserts.
3058 (scm_aind, scm_enclose_array, scm_array_in_bounds_p,
3059 scm_uniform_vector_ref, scm_array_set_x,
3060 scm_dimensions_to_unform_array): change args in
3061 SCM_WNA SCM_ASSERTS and change scm_wta's to scm_wrong_num_args.
3062 strop.c (scm_substring_move_left_x, scm_substring_move_right_x,
3063 scm_substring_fill_x): likewise.
3064 gsubr.c (scm_gsubr_apply): likewise.
3065 eval.c (SCM_APPLY): likewise.
3066
3067 * eval.c (4 places): replace scm_everr with lgh_error or
3068 scm_wrong_num_args.
3069
3070 * error.c, error.h (scm_wrong_num_args, scm_wrong_type_arg,
3071 scm_memory_error): new procedures.
3072 scm_everr: deleted. can use scm_wta, dropping first two args.
3073 scm_error: convert NULL subr to SCM_BOOL_F.
3074
3075 * __scm.h: don't define SCM_STACK_OVFLOW, SCM_EXIT, SCM_ARG6, SCM_ARG7,
3076 SCM_ARGERR.
3077
3078 * stackchk.c (scm_report_stack_overflow): use lgh_error instead
3079 of scm_wta.
3080
3081 * error.c, error.h: new error keys: scm_arg_type_key,
3082 scm_args_number_key, scm_memory_alloc_key, scm_stack_overflow_key,
3083 scm_misc_error_key.
3084 scm_wta: reimplement using lgh_error instead of scm_everr.
3085
3086 Wed Sep 18 17:13:35 1996 Mikael Djurfeldt <mdj@kenneth>
3087
3088 * gdbint.c: scm_lread now has one more argument.
3089
3090 * ports.c, ports.h: Name change: scm_\(line\|column\)_number -->
3091 scm_port_\1; Added mutator scm_set_port_filename_x (used when
3092 loading source from non-file ports, which, e. g., happens when
3093 using the Emacs interface).
3094
3095 * fports.c (scm_open_file): Don't call scm_makfrom0str on a scheme
3096 object.
3097
3098 * read.c: Added code for recording of positions of source code
3099 expressions; New functions: recsexpr, scm_lreadrecparen;
3100 _scm_make_srcprops --> scm_make_srcprops
3101 (scm_flush_ws): Removed updating of positions counters. This work
3102 is already done by scm_gen_getc
3103
3104 * read.h: Added prototype for scm_lreadrecparen
3105
3106 * print.c: Added #include "alist.h"
3107
3108 * eval.c: Added #include "hash.h"
3109
3110 * eq.c: Added #include "ramap.h"
3111
3112 * options.c: Documentation fixes.
3113
3114 * srcprop.c (scm_finish_srcprop): Bugfix: update ptr.
3115 (scm_init_srcprop): Adjusted size of initial source-whash. Name
3116 changes: tc16_srcprops --> scm_tc16_srcprops, _scm_make_srcprops
3117 --> scm_make_srcprops
3118
3119 * srcprop.h: Name changes: tc16_srcprops --> scm_tc16_srcprops,
3120 _scm_make_srcprops --> scm_make_srcprops; Remove one layer of
3121 function calls in the definition of the whash access macros.
3122
3123 Tue Sep 17 11:33:16 1996 Lee Iverson <leei@Canada.AI.SRI.COM>
3124
3125 * init.c (scm_boot_guile): Add level of indirection to
3126 scm_boot_guile_1() to ensure that stack base pointer is properly
3127 initialized. There was no guarantee that variable i was the
3128 highest/lowest variable on stack (i.e. the call frame of
3129 scm_boot_guile was not completely protected from gc).
3130
3131 Tue Sep 17 01:40:56 1996 Gary Houston <ghouston@actrix.gen.nz>
3132
3133 * ports.h (scm_port_table): put back file_name, it will be used to
3134 support debugging. Undo related changes in fports.c, ioext.c,
3135 ports.c, gc.c.
3136
3137 Sun Sep 15 03:58:29 1996 Gary Houston <ghouston@actrix.gen.nz>
3138
3139 * ports.h (scm_port_table): remove file_name member for now, it seems
3140 undesirable.
3141 * fports.c (scm_open_file): don't set file_name in PTAB.
3142 (prinfport): don't use file_name in PTAB.
3143 * ioext.c (scm_sys_duplicate_port): don't set file_name in PTAB.
3144 * ports.c (scm_add_to_port_table): don't intialize file_name.
3145 (scm_port_file_name): remove for now.
3146 * gc.c (scm_gc_mark): don't mark PTAB file_name.
3147
3148 * fports.h (scm_mkfile): prototype deleted.
3149 * fports.c (scm_mkfile): merged into scm_open_file to simplify.
3150
3151 * debug.c, unif.c: use scm_out_of_range instead of
3152 wta for range errors (ASSERT still needs work).
3153
3154 * error.c, error.h (scm_out_of_range): new procedure.
3155
3156 * error.c, error.h (scm_out_of_range_key): new key.
3157
3158 * posix.c (scm_sync): #else was missing.
3159
3160 * error.c, error.h: append _key to names scm_num_overflow and
3161 scm_system_error.
3162
3163 * __scm.h (SCM_SYSMISSING, SCM_NUM_OVERFLOW): use SCM_BOOL_F instead
3164 of consing an empty list.
3165 (SCM_SYSERROR etc.): move into error.c, make them procedures instead
3166 of macros, saves code and string space.
3167 error.c, fports.c, numbers.c, posix.c, ioext.c, filesys.c, socket.c,
3168 fdsocket.c, simpos.c: change names of SCM_SYSERROR etc., to
3169 lower case. Rename scm_syserror_m to scm_syserror_msg.
3170 error.h: prototypes for new procedures.
3171
3172 Sat Sep 14 03:35:41 1996 Gary Houston <ghouston@actrix.gen.nz>
3173
3174 * numbers.c: use SCM_NUM_OVERFLOW instead of scm_wta or ASSERT.
3175
3176 * error.c, error.h: setup scm_num_overflow key.
3177
3178 * __scm.h: SCM_NUM_OVERFLOW: macro for reporting numerical overflow.
3179 Remove definition of SCM_OVSCM_FLOW.
3180
3181 * fports.c (scm_open_file): use SCM_SYSERROR_M.
3182
3183 * __scm.h: SCM_SYSERROR_M: new macro for system errors with an
3184 explicit message and args.
3185
3186 * error.c, error.h, __scm.h: change system_error_sym to
3187 scm_system_error.
3188
3189 * error.c (system_error_sym): remove leading %% from the Scheme name
3190 "%%system-error".
3191
3192 * __scm.h (SCM_SYSMISSING): Redefine using lgh_error.
3193
3194 Fri Sep 13 12:58:08 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3195
3196 * __scm.h, chars.c, debug.c, eval.c, eval.h, extchrs.c, extchrs.h,
3197 fdsocket.c, feature.c, mbstrings.c, mbstrings.h, numbers.c,
3198 numbers.h, print.c, scmhob.h, simpos.h, symbols.c, symbols.h,
3199 tags.h, throw.c, variable.h: Name cleanup. Lots of xxxSCM_yyy
3200 renamed. (These were introduced by unsupervised name
3201 substitution.)
3202
3203 Fri Sep 13 01:19:08 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3204
3205 * print.c: Added code for detection of circular references during
3206 printing. (init_ref_stack, grow_ref_stack): New functions. Added
3207 a hook for printing of closures (accessible via print options).
3208 This leads to a split of calls to scm_iprin1 into two classes:
3209 elementary print operations (e. g. the code which prints a smob)
3210 still use scm_iprin1 while top level calls (like scm_display) use
3211 scm_prin1. scm_prin1 begins by clearing the data structure used
3212 to record reference information.
3213
3214 * print.h: Added declarations of scm_prin1 and scm_prlist.
3215
3216 * strports.c (scm_strprint_obj): scm_iprin1 --> scm_prin1
3217
3218 * gscm.c (gscm_portprint_obj): scm_iprin1 --> scm_prin1
3219
3220 * gscm.h (gscm_print_obj): scm_iprin1 --> scm_prin1
3221
3222 * error.c (err_head): scm_iprin1 --> scm_prin1
3223
3224 * debug.c: Adjusted header comment.
3225
3226 * tags.h: Typo.
3227
3228 Wed Sep 11 17:55:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
3229
3230 * strerror.c: Doc fix.
3231
3232 Thu Sep 12 00:00:32 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3233
3234 * gdbint.c (gdb_read): Now possible to run during GC.
3235 (unmark_port, remark_port): New functions.
3236
3237 * symbols.h (SCM_SETLENGTH): Use SCM_SETCAR.
3238
3239 * read.c (scm_grow_tok_buf): Use scm_vector_set_length_x instead
3240 of allocating a new string object. Also, increase size by
3241 the factor 2 instead of 1.5.
3242
3243 Wed Sep 11 15:10:38 1996 Petr Adamek <jimb@floss.cyclic.com>
3244
3245 * __scm.h (SCM_P): Corrected to run under traditional C.
3246
3247 * _scm.h (SCM_PROC): Extraneous semicolon (outside functions)
3248 removed.
3249
3250 * async.c: Calls to scm_sysintern corrected.
3251
3252 * async.h (scm_async_clock): Redundant declaration removed.
3253
3254 * continuations.c (scm_dynthrow): Redundant declaration removed.
3255
3256 * debug.c (scm_single_step, scm_memoized, scm_lookup_soft):
3257 Definition typos corrected.
3258
3259 * debug.h: Missing declarations of functions in debug.c added
3260 (lots).
3261
3262 * eval.h (scm_eval_args, scm_deval_args, scm_m_undefine):
3263 Missing declarations to functions in eval.c added.
3264
3265 * filesys.c: Possibly uninitialized variable rv.
3266
3267 * gc.h (scm_object_addr, scm_unhash_name): Missing
3268 declarations of functions defined in gc.c added.
3269
3270 * genio.c: Possible typos str_data -> wstr_data. ???
3271
3272 * genio.c: Possibly unintended shadowing of local variable
3273 `int c' (gotos out of scope of inner `c'). ???
3274
3275 * init.c: Uninitialized `SCM last' may be used.
3276
3277 * ioext.h: (scm_sys_isatty_p): Typo.
3278
3279 * list.h (scm_list_head): Missing prototype for function in
3280 list.c added.
3281
3282 * numbers.c (scm_two_doubles): Changed from extern to static
3283 (is used only within numbers.c).
3284
3285 * numbers.h: Repeated declarations removed.
3286
3287 * ports.h (scm_close_all_ports_except): Declaration for the
3288 function defined in ports.c added.
3289
3290 * posix.h: Missing declarations added.
3291
3292 * procs.h (scm_make_subr_opt): Missing declaration added.
3293
3294 * socket.h (scm_sys_gethost): Missing declaration added.
3295
3296 * socket.h: Redundant declarations removed (they are in fdsocket.h).
3297
3298 * srcprop.h (scm_set_source_property_x, scm_finish_srcprop):
3299 Missing declarations added.
3300
3301 * stime.h (scm_get_internal_real_time): Repeated declarations removed.
3302
3303 * struct.c: Uninitialized variable `SCM answer' may be used.
3304
3305 * unif.c (l2ra): Declaration prototype.
3306
3307 * unif.c (scm_array_equal_p): Dummy definition removed (it is
3308 defined in ramap.c).
3309
3310 * unif.h (scm_raprin1, scm_istr2bve, scm_array_equal_p):
3311 Redundant declarations removed (they are in ramap.h).
3312
3313 * variable.h (scm_make_udvariable,
3314 scm_make_undefined_variable): Declaration corrected to
3315 correspond variable.c.
3316
3317 * vectors.h (scm_vector_move_left_x, scm_vector_move_right_x):
3318 Missing declarations added.
3319
3320 Wed Sep 11 14:38:50 1996 Jim Blandy <jimb@floss.cyclic.com>
3321
3322 * Makefile.in (distclean): Don't forget to delete fd.h.
3323
3324 Tue Sep 10 14:01:46 1996 Jim Blandy <jimb@floss.cyclic.com>
3325
3326 * fd.h.in, tags.h: Trivial cleanups.
3327
3328 * marksweep.c, marksweep.h: Deleted; marksweep.c was empty, and
3329 marksweep.h just declared functions from gc.c.
3330 * gc.h, libguile.h: Don't #include "marksweep.h".
3331 * Makefile.in (libobjs, inner_h_files, c_files, gen_c_files): Omit
3332 marksweep.o, marksweep.h, marksweep.c, and marksweep.x. Other
3333 dependencies updated.
3334
3335 * libguile.h: Don't #include "files.h"; it's been deleted.
3336
3337 * files.c (scm_sys_delete_file): Moved to filesys.c.
3338 File is now empty; deleted.
3339 * files.h: Deleted.
3340 * filesys.c: scm_sys_delete_file is now here. Remove
3341 #if's; they seem to rely on remnants of an old portability
3342 regimen. If the problems come up again, solve them properly,
3343 using autoconf. Specifically: Don't test M_SYSV, and #define
3344 remove to be unlink if it's #defined; don't use remove just
3345 because HAVE_STDC_HEADERS is #defined.
3346 * filesys.h: Add declarations for scm_sys_delete_file.
3347 * Makefile.in (libobjs, inner_h_files, c_files, gen_c_files): Omit
3348 files.o, files.h, files.c, and files.x.
3349 * init.c: Don't #include "files.h", and don't call scm_init_files.
3350
3351 Use SCM_P instead of PROTO; the latter intrudes on the user's
3352 namespace.
3353 * params.h: Deleted; definition of SCM_P moved to...
3354 * __scm.h: ... here, where it replaces PROTO macro.
3355 * libguile.h, smob.h: Don't #include "params.h".
3356 * continuations.c, error.h, feature.h, gc.c, gc.h, init.h, load.h,
3357 smob.h: Fix prototypes accordingly.
3358 * Makefile.in: Update dependencies.
3359 (inner_h_files): Remove params.h.
3360
3361 * gc.c: #include "gc.h"; every module should include its header,
3362 to let the compiler cross-check the declarations against the
3363 definitions.
3364
3365 * eq.h, files.h, hashtab.h, load.h, mallocs.h, scmsigs.h,
3366 simpos.h: #include "libguile/__scm.h".
3367
3368 Mon Sep 9 20:00:15 1996 Jim Blandy <jimb@floss.cyclic.com>
3369
3370 * init.c: Don't forget to #include smob.h and init.h.
3371 * Makefile.in: Dependencies updated.
3372
3373 * smob.h: Use PROTO instead of #if __STDC__.
3374
3375 * continuations.c (scm_dynthrow): Use PROTO, not SCM_P.
3376
3377 * __scm.h: Doc fixes.
3378
3379 * __scm.h, libguile.h: Use "quotes" in the #includes, not
3380 <angles>; this allows `make depends' to work properly.
3381
3382 * libguile.h: #include smob.h and pairs.h before the others; they
3383 define typedefs used by other headers.
3384
3385 C files should #include only the header files they need, not
3386 libguile.h (which #includes all the header files); the pointless
3387 recompilation was wasting my time.
3388 * Makefile.in (all .o dependency lists): Regenerated.
3389 * libguile.h: Don't try to get a definition for size_t here...
3390 * __scm.h: Do it here.
3391 * _scm.h: Since this is the internal libguile header, put things
3392 here that all (or a majority) of the libguile files will want.
3393 Don't #include <libguile.h> here; that generates dependencies on
3394 way too much. Instead, get "__scm.h", "error.h", "pairs.h",
3395 "list.h", "gc.h", "gsubr.h", "procs.h", "numbers.h", "symbols.h",
3396 "boolean.h", "strings.h", "vectors.h", "root.h", "ports.h", and
3397 "async.h".
3398 * alist.c: Get "eq.h", "list.h", "alist.h".
3399 * append.c: Get "append.h", "list.h".
3400 * arbiters.c: Get "arbiters.h", "smob.h".
3401 * async.c: Get "async.h", "smob.h", "throw.h", "eval.h".
3402 * boolean.c: Get "boolean.h".
3403 * chars.c: Get "chars.h".
3404 * continuations.c: Get "continuations.h", "dynwind.h", "debug.h",
3405 "stackchk.h".
3406 * debug.c: Get "debug.h", "feature.h", "read.h", "strports.h",
3407 "continuations.h", "alist.h", "srcprop.h", "procprop.h", "smob.h",
3408 "genio.h", "throw.h", "eval.h".
3409 * dynwind.c: Get "dynwind.h", "alist.h", "eval.h".
3410 * eq.c: Get "eq.h", "unif.h", "smob.h", "strorder.h",
3411 "stackchk.h".
3412 * error.c: Get "error.h", "throw.h", "genio.h", "pairs.h".
3413 * eval.c: Get "eval.h", "stackchk.h", "srcprop.h", "debug.h",
3414 "hashtab.h", "procprop.h", "markers.h", "smob.h", "throw.h",
3415 "continuations.h", "eq.h", "sequences.h", "alist.h", "append.h",
3416 "debug.h".
3417 * fdsocket.c: Get "fdsocket.h", "unif.h", "filesys.h".
3418 * feature.c: Get "feature.h".
3419 * files.c: Get "files.h".
3420 * filesys.c: Get "filesys.h", "smob.h", "genio.h".
3421 * fports.c: Get "fports.h", "markers.h".
3422 * gc.c: Get "async.h", "unif.h", "smob.h", "weaks.h",
3423 "genio.h", "struct.h", "stackchk.h", "stime.h".
3424 * gdbint.c: Get "gdbint.h", "chars.h", "eval.h", "print.h",
3425 "read.h", "strports.h", "tag.h".
3426 * genio.c: Get "genio.h", "chars.h".
3427 * gsubr.c: Get "gsubr.h", "genio.h".
3428 * hash.c: Get "hash.h", "chars.h".
3429 * hashtab.c: Get "hashtab.h", "eval.h", "hash.h", "alist.h".
3430 * init.c: Get everyone who has an scm_init_mumble function:
3431 "weaks.h", "vports.h", "version.h", "vectors.h", "variable.h",
3432 "unif.h", "throw.h", "tag.h", "symbols.h", "struct.h",
3433 "strports.h", "strorder.h", "strop.h", "strings.h", "stime.h",
3434 "stackchk.h", "srcprop.h", "socket.h", "simpos.h", "sequences.h",
3435 "scmsigs.h", "read.h", "ramap.h", "procs.h", "procprop.h",
3436 "print.h", "posix.h", "ports.h", "pairs.h", "options.h",
3437 "objprop.h", "numbers.h", "mbstrings.h", "mallocs.h", "load.h",
3438 "list.h", "kw.h", "ioext.h", "hashtab.h", "hash.h", "gsubr.h",
3439 "gdbint.h", "gc.h", "fports.h", "filesys.h", "files.h",
3440 "feature.h", "fdsocket.h", "eval.h", "error.h", "eq.h",
3441 "dynwind.h", "debug.h", "continuations.h", "chars.h", "boolean.h",
3442 "async.h", "arbiters.h", "append.h", "alist.h".
3443 * ioext.c: Get "ioext.h", "fports.h".
3444 * kw.c: Get "kw.h", "smob.h", "mbstrings.h", "genio.h".
3445 * list.c: Get "list.h", "eq.h".
3446 * load.c: Get "load.h", "eval.h", "read.h", "fports.h".
3447 * mallocs.c: Get "smob.h", "genio.h".
3448 * markers.c: Get "markers.h".
3449 * mbstrings.c: Get "mbstrings.h", "read.h", "genio.h", "unif.h",
3450 "chars.h".
3451 * numbers.c: Get "unif.h", "genio.h".
3452 * objprop.c: Get "objprop.h", "weaks.h", "alist.h", "hashtab.h".
3453 * options.c: Get "options.h".
3454 * ports.c: Get "ports.h", "vports.h", "strports.h", "fports.h",
3455 "markers.h", "chars.h", "genio.h".
3456 * posix.c: Get "posix.h", "sequences.h", "feature.h", "unif.h",
3457 "read.h", "scmsigs.h", "genio.h", "fports.h".
3458 * print.c: Get "print.h", "unif.h", "weaks.h", "read.h",
3459 "procprop.h", "eval.h", "smob.h", "mbstrings.h", "genio.h",
3460 "chars.h".
3461 * procprop.c: Get "procprop.h", "eval.h", "alist.h".
3462 * procs.c: Get "procs.h".
3463 * ramap.c: Get "ramap.h", "feature.h", "eval.h", "eq.h",
3464 "chars.h", "smob.h", "unif.h".
3465 * read.c: Get "alist.h", "kw.h", "mbstrings.h", "unif.h",
3466 "eval.h", "genio.h", "chars.h".
3467 * root.c: Get "root.h", "stackchk.h".
3468 * scmsigs.c: Get "scmsigs.h".
3469 * sequences.c: Get "sequences.h".
3470 * simpos.c: Get "simpos.h", "scmsigs.h".
3471 * smob.c: Get "smob.h".
3472 * socket.c: Get "socket.h", "feature.h".
3473 * srcprop.c: Get "srcprop.h", "weaks.h", "hashtab.h", "debug.h",
3474 "alist.h", "smob.h".
3475 * stackchk.c: Get "stackchk.h", "genio.h".
3476 * stime.c: Get "stime.h"."libguile/continuations.h".
3477 * strings.c: Get "strings.h", "chars.h".
3478 * strop.c: Get "strop.h", "chars.h".
3479 * strorder.c: Get "strorder.h", "chars.h".
3480 * strports.c: Get "strports.h", "print.h", "eval.h", "unif.h".
3481 * struct.c: Get "struct.h", "chars.h".
3482 * symbols.c: Get "symbols.h", "mbstrings.h", "alist.h",
3483 "variable.h", "eval.h", "chars.h".
3484 * tag.c: Get "tag.h", "struct.h", "chars.h".
3485 * throw.c: Get "throw.h", "continuations.h", "debug.h",
3486 "dynwind.h", "eval.h", "alist.h", "smob.h", "genio.h".
3487 * unif.c: Get "unif.h", "feature.h", "strop.h", "sequences.h",
3488 "smob.h", "genio.h", "eval.h", "chars.h".
3489 * variable.c: Get "variable.h", "smob.h", "genio.h".
3490 * vectors.c: Get "vectors.h", "eq.h".
3491 * version.c: Get "version.h".
3492 * vports.c: Get "vports.h", "fports.h", "chars.h", "eval.h".
3493 * weaks.c: Get "weaks.h".
3494
3495 * stackchk.h: #include "libguile/debug.h",
3496
3497 * print.h, read.h: #include "options.h", since everyone who uses
3498 either of these files will need that.
3499
3500 * smob.h: #include "ports.h", "genio.h", and "print.h", since
3501 anyone who uses this file will need them to define the smob
3502 printing functions. Also, get markers.h, since people will need
3503 to #define the mark functions.
3504
3505 * smob.h (scm_ptobfuns, SCM_PTOBNUM): Definitions moved...
3506 * ports.h: ... to here.
3507
3508 * ports.h (scm_port_table_size): Explicitly give type as 'int';
3509 don't rely on archaic C default type rules.
3510
3511 * fports.h: #include "libguile/ports.h", since you need that in
3512 order to parse this.
3513
3514 * genio.h: #include "libguile/print.h", because you need that to
3515 parse this; don't bother #including "ports.h", since print.h gets
3516 that.
3517
3518 * error.h: Don't #include "pairs.h"; _scm.h will do that now.
3519
3520 * eval.h (scm_top_level_lookup_thunk_var): Remove declaration for
3521 this; it's now a reference to an element of *scm_root.
3522
3523 * debug.h: Don't #include "options.h"; the compiler won't be able
3524 to find that once the headers are installed; instead, #include
3525 "libguile/options.h".
3526 * gc.h: Same, with marksweep.h.
3527 * mbstrings.h: Same, with symbols.h.
3528 * scmhob.h: Same, with _scm.h.
3529 * smob.h: Same, with params.h.
3530
3531 * Makefile.in (depends): Don't nuke scmconfig.h and the generated
3532 C files; there's no need for this, and it forces recompilations
3533 unnecessarily.
3534
3535 Sat Sep 7 06:57:23 1996 Gary Houston <ghouston@actrix.gen.nz>
3536
3537 * error.c (scm_error): declare scm_error_callback.
3538
3539 * error.h: prototype for scm_error_callback.
3540
3541 * __scm.h: define lgh_error.
3542 (SCM_SYSERROR): redefine using lgh_error.
3543
3544 Thu Sep 5 22:40:06 1996 Gary Houston <ghouston@actrix.gen.nz>
3545
3546 * error.c (scm_error): new procedure.
3547
3548 * error.h: prototype for scm_error.
3549
3550 * Makefile.in (install): install scmconfig.h from the current
3551 directory, not $(srcdir).
3552
3553 Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
3554
3555 * alist.h, append.h, arbiters.h, async.h, boolean.h, chars.h,
3556 continuations.h, debug.h, dynwind.h, error.h, eval.h, fdsocket.h,
3557 feature.h, filesys.h, fports.h, gc.h, gdbint.h, genio.h, gsubr.h,
3558 hash.h, init.h, ioext.h, kw.h, list.h, markers.h, marksweep.h,
3559 mbstrings.h, numbers.h, objprop.h, options.h, pairs.h, ports.h,
3560 posix.h, print.h, procprop.h, procs.h, ramap.h, read.h, root.h,
3561 sequences.h, smob.h, socket.h, srcprop.h, stackchk.h, stime.h,
3562 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
3563 tag.h, throw.h, unif.h, variable.h, vectors.h, version.h,
3564 vports.h, weaks.h: #include "libguile/__scm.h", not
3565 <libguile/__scm.h>. This allows 'gcc -MM' to determine which
3566 dependencies are within libguile properly.
3567
3568 Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
3569
3570 * Makefile.in (.c.x): Simplify; there's no need to run this rule
3571 when scmconfig.h doesn't exist.
3572
3573 * load.c (scm_sys_try_load): Correct spelling.
3574
3575 * feature.c (scm_loc_features): Make this static.
3576
3577 * Makefile.in (libpath.h): Omit trailing slash from path. We
3578 shouldn't require it of users, so why put it here?
3579
3580 Move code to initialize and search %load-path from ice-9 to C
3581 code, so we can use the load-path to find the ice-9 boot code;
3582 this makes it easier to run Guile without installing it. See
3583 corresponding changes in guile/Makefile.in.
3584 * feature.c: Move stuff concerned with the load path to load.c.
3585 (scm_compiled_library_path): Deleted.
3586 Don't #include libpath.h here.
3587 * feature.h: Don't mention scm_compiled_library_path.
3588 * load.c: #include "libpath.h" here, as well as <sys/types.h>,
3589 <sys/stat.h>, and <unistd.h> (if present).
3590 (R_OK): #define if the system hasn't deigned to.
3591 (scm_loc_load_path): New variable.
3592 (scm_init_load_path, scm_sys_search_load_path,
3593 scm_sys_try_load_path): New functions.
3594 (scm_init_load): Initialize scm_loc_load_path to point to the
3595 value cell of the Scheme %load-path variable.
3596 * load.h: Add declarations for scm_sys_search_load_path,
3597 scm_sys_try_load_path.
3598 * init.c: Call scm_init_load_path.
3599 * Makefile.in (feature.o, load.o): Dependencies updated.
3600
3601 * load.c, load.h: Rewrite using PROTO macro.
3602
3603 Thu Sep 5 01:54:33 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3604
3605 * gc.c (scm_cellp): New function: C predicate to determine if an
3606 SCM value can be regarded as a pointer to a cell on the heap.
3607
3608 * gc.h: Added declaration of scm_cellp.
3609
3610 * gdb_interface.h: New file: The GDB interface header from the GDB
3611 distribution.
3612
3613 * gdbint.c: New file: GDB interface.
3614
3615 * gdbint.h: New file: GDB interface.
3616
3617 * libguile.h: Added #include <libguile/gdbint.h>.
3618
3619 * init.c (scm_boot_guile): Added scm_init_gdbint.
3620
3621 * Makefile.in: Added gdb_interface.h, gdbint.[hc].
3622 Added -I.. to INCLUDE_CFLAGS (otherwise the include files won't be
3623 found if object files and source are kept separate).
3624
3625 Wed Sep 4 14:35:02 1996 Jim Blandy <jimb@floss.cyclic.com>
3626
3627 * feature.h, feature.c: Use PROTO macro, instead of #if __STDC__.
3628
3629 Wed Sep 4 01:30:47 1996 Jim Blandy <jimb@totoro.cyclic.com>
3630
3631 * configure.in: Don't substitute the values of TCL_SRC_DIR and
3632 TK_SRC_DIR; they're not relevant any more.
3633
3634 * Makefile.in (CC): Don't list -Wall here; it's a GCC-specific flag.
3635 * configure.in: Instead, put it in CFLAGS here, iff we're using GCC.
3636
3637 Wed Sep 4 00:55:49 1996 Jim Blandy <jimb@floss.cyclic.com>
3638
3639 * PLUGIN/guile.config (xtra_cflags): Include .. in the header
3640 search path, so we can find the <libguile/MUMBLE.h> headers.
3641
3642 * Makefile.in (ancillary): List aclocal.m4, for 'make dist'.
3643
3644 * Makefile.in (ALL_CFLAGS): Don't mention CFLAGS here; it's
3645 implicit in the .c.o rule.
3646 (.c.x): Don't mention ALL_CFLAGS here; its value is included in
3647 $(CC) already.
3648
3649 Put the library path in a header file, instead of passing it on
3650 the command line in every compilation.
3651 * Makefile.in (libpath.h): New target.
3652 (feature.o): Depend on libpath.h.
3653 (clean): Delete libpath.h.
3654 (ALL_CFLAGS): Don't use -DLIBRARY_PATH here. Instead ...
3655 * feature.c: ... #include "libpath.h" here.
3656 * .cvsignore: Ignore libpath.h.
3657
3658 Don't install the unwashed masses of Guile header files in the
3659 main #include path; put most of them in a subdirectory called
3660 'libguile'. This avoids naming conflicts between Guile header
3661 files and system header files (of which there were a few).
3662 * Makefile.in (pkgincludedir): Deleted.
3663 (innerincludedir): New variable; this and $(includedir) are enough.
3664 (INCLUDE_CFLAGS): Search for headers in "-I$(srcdir)/..".
3665 (installed_h_files): Divide this up. Now this variable lists
3666 those header files which should go into $(includedir) (i.e. appear
3667 directly in the #include path), and ...
3668 (inner_h_files): ... this new variable says which files appear in
3669 a subdirectory, and are referred to as <libguile/mumble.h>.
3670 (h_files): List them both.
3671 (install): Create innerincludedir, not pkgincludedir. Put
3672 the installed_h_files and inner_h_files in their proper places.
3673 (uninstall): Corresponding changes.
3674 * alist.h, append.h, arbiters.h, async.h, boolean.h, chars.h,
3675 continuations.h, debug.h, dynwind.h, error.h, eval.h, fdsocket.h,
3676 feature.h, fports.h, gc.h, genio.h, gsubr.h, hash.h, init.h,
3677 ioext.h, kw.h, libguile.h, list.h, markers.h, marksweep.h,
3678 mbstrings.h, numbers.h, options.h, pairs.h, ports.h, posix.h,
3679 print.h, procprop.h, procs.h, ramap.h, read.h, root.h,
3680 sequences.h, smob.h, socket.h, srcprop.h, stackchk.h, stime.h,
3681 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
3682 tag.h, throw.h, unif.h, variable.h, vectors.h, version.h,
3683 vports.h, weaks.h: Find __scm.h in its new location.
3684 * __scm.h: Find scmconfig.h and tags.h in their new locations
3685 (they're both "inner" files).
3686
3687 Tue Sep 3 20:27:35 1996 Jim Blandy <jimb@floss.cyclic.com>
3688
3689 * Makefile.in (.c.x): Remove duplicate use of $(ALL_CFLAGS).
3690
3691 Tue Sep 3 19:53:00 1996 Jim Blandy <jimb@totoro.cyclic.com>
3692
3693 * posix.c: Doc fixes.
3694
3695 Mon Sep 2 15:22:40 1996 Jim Blandy <jimb@totoro.cyclic.com>
3696
3697 * socket.c: Don't include a prototype for inet_aton; just use a
3698 K&R style declaration, to avoid warnings but minimize the chance
3699 of conflicts with the system.
3700
3701 On NextStep, <utime.h> doesn't define struct utime, unless we
3702 #define _POSIX_SOURCE before #including it.
3703 * aclocal.m4 (GUILE_STRUCT_UTIMBUF): New test.
3704 * acconfig.h: New comment text for above CPP symbol.
3705 * configure.in: Call it.
3706 * posix.c: #define _POSIX_SOURCE if it seems necessary.
3707
3708 * configure.in (AC_CHECK_HEADERS): Include sys/utime.h and utime.h
3709 in the list.
3710 * posix.c: Check HAVE_SYS_UTIME_H and HAVE_UTIME_H, instead of
3711 testing for __EMX__.
3712
3713 * posix.c: #include <libc.h>, if it exists.
3714
3715 * posix.c: Cast the return result to GETGROUPS_T, not gid_t; we
3716 don't even know if the latter exists.
3717
3718 * posix.c (s_sys_setpgid, s_sys_setsid, s_sys_ctermid,
3719 s_sys_tcgetpgrp, s_sys_tcsetpgrp): Renamed from s_setpgid,
3720 s_setsid, s_ctermid, s_tcgetpgrp, s_tcsetpgrp, for consistency.
3721
3722 * posix.c (R_OK, W_OK, X_OK, F_OK): #define these if the system's
3723 header files don't.
3724 (scm_init_posix): Use them when initializing the Scheme constants
3725 of the same name.
3726
3727 Fri Aug 30 16:01:30 1996 Jim Blandy <jimb@floss.cyclic.com>
3728
3729 * Makefile.in (libdir, includedir, bindir): Use the
3730 autoconf-supplied values, instead of deriving them ourselves.
3731 (pkgincludedir, datadir, pkgdatadir): New variables.
3732 (install, uninstall): Put the header files in a special
3733 subdirectory, not in the main search path.
3734
3735 * Makefile.in (ALL_CFLAGS): Provide the proper value for
3736 LIBRARY_PATH --- use $(pkgdatadir) instead of $(libdir).
3737
3738 * Makefile.in (IMPLPATH): Deleted; never used.
3739
3740 * Makefile.in (TCL_SRC_DIR, TK_SRC_DIR): Deleted; we don't depend
3741 on the Tcl/Tk source any more.
3742 (INCLUDE_CFLAGS): Remove references to the above.
3743
3744 * Makefile.in (version.o): Corrected dependencies.
3745
3746 Thu Aug 29 23:06:19 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
3747
3748 * libguile.h: #include "version.h"
3749
3750 * init.c (scm_boot_guile): Call scm_init_version.
3751 * gscm.c (gscm_run_scm): Call scm_init_version.
3752
3753 * configure.in (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION,
3754 GUILE_VERSION): AC_DEFINE these.
3755 (acconfig.h): #undef the above symbols.
3756
3757 * Makefile.in (libobjs): Add version.o.
3758 (installed_h_files): Add version.h.
3759 (c_files): Add version.c.
3760 (gen_c_files): Add version.x.
3761 (version.o): New rule.
3762 (alist.o, append.o, appinit.o, arbiters.o, async.o, boolean.o,
3763 chars.o, continuations.o, dynwind.o, eq.o, error.o, eval.o,
3764 fdsocket.o, feature.o, files.o, filesys.o, fports.o, gc.o,
3765 genio.o, gsubr.o, hash.o, hashtab.o, init.o, kw.o, list.o, load.o,
3766 mallocs.o, markers.o, marksweep.o, mbstrings.o, numbers.o,
3767 objprop.o, pairs.o, ports.o, posix.o, print.o, procprop.o,
3768 procs.o, ramap.o, read.o, root.o, scmsigs.o, sequences.o,
3769 simpos.o, smob.o, socket.o, stackchk.o, stime.o, strings.o,
3770 strop.o, strorder.o, strports.o, struct.o, symbols.o, tag.o,
3771 throw.o, unif.o, variable.o, vectors.o, version.o, vports.o,
3772 weaks.o): Add version.h to dependency lists.
3773 (markers.o): Remove duplicate rule.
3774
3775 * version.h: New file.
3776
3777 * version.c: New file.
3778
3779 Thu Aug 29 15:21:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
3780
3781 * symbols.c (scm_strhash): scm_downcase is now a function, not an
3782 array; use it appropriately. Since GCC is quite happy to
3783 subscript functions, it never warned us about this; we should use
3784 -Wpointer-arith in the future. I guess we never tested
3785 case-insensitivity.
3786
3787 Wed Aug 28 18:52:22 1996 Jim Blandy <jimb@totoro.cyclic.com>
3788
3789 * socket.c: Doc and copyright fixes.
3790
3791 Sat Aug 24 05:29:19 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3792
3793 * debug.c: Fixed and improved gdb support.
3794
3795 Fri Aug 23 18:00:16 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3796
3797 * socket.c: Added declaration of inet_aton to avoid compiler
3798 warning. (Hope this solution is correct.)
3799
3800 * stime.c: Added declaration of ftime. (This is missing in
3801 Solaris 2 headers.)
3802
3803 Fri Aug 23 02:03:32 1996 Gary Houston <ghouston@actrix.gen.nz>
3804
3805 * configure, scmconfig.h.in: Updated, using autoconf and autoheader.
3806
3807 * Makefile.in (c_files): add strerror.c.
3808
3809 * strerror.c: new file from Emacs' sysdep.c.
3810 maybe configure should also check for sys_errlist.
3811
3812 * configure.in (AC_REPLACE_FUNCS): add strerror.
3813
3814 Fri Aug 23 03:02:46 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3815
3816 * debug.c (scm_init_debug): Added initialization for
3817 scm_evaluator_traps.
3818
3819 * debug.h, debug.c: Various name changes.
3820 (Mostly prefixing with SCM_.) Renamed "debug-options" -->
3821 "debug-options-interface". See commentary in options.c.
3822
3823 * options.h, options.c: Options now have documentation strings.
3824 Also added a long explanatory commentary.
3825
3826 * eval.c, print.h, print.c, read.h, read.c: Modifications to
3827 run-time options.
3828
3829 * gscm.c, init.c, root.c, throw.c: Bug fixes:
3830 last_debug_info_frame is now updated in all cases.
3831
3832 * __scm.h, stackchk.h, stackchk.c: Guile now performs stack
3833 checking.
3834
3835 Thu Aug 22 17:34:17 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3836
3837 * __scm.h: SCM_STACK_LIMIT removed (now a run-time option).
3838 Added option STACK_CHECKING.
3839
3840 Tue Aug 20 18:48:40 1996 Mikael Djurfeldt <djurfeldt@nada.kth.se>
3841
3842 * Makefile.in: Added {debug,options,srcprop}.{h,c}
3843
3844 * __scm.h: Removed symbols for debugging support.
3845
3846 * acconfig.h: Added symbols for debugging support.
3847
3848 * configure.in: Added user option for debugging support.
3849 --enable-debug will include the debugging code into libguile.a.
3850
3851 * continuations.c (scm_make_cont): Enlarged the #if 0 around
3852 scm_relocate_chunk_to_heap.
3853
3854 * debug.c: New file: low-level debugging support. It also
3855 includes support for debugging with gdb. (The extensions to gdb
3856 are written by Per Bothner at Cygnus.)
3857
3858 * debug.h: New file: low-level debugging support.
3859
3860 * eval.c: scm_m_set and SCM_IM_SET no longer supports multiple
3861 argument pairs. Extensive modifications to the debugging
3862 evaluator. Added "SECTION:" commentaries to clarify what happens
3863 when, during double compilation. Renamed EVALIMP --> EVALIM.
3864 Renamed EVAL --> XEVAL. Removed function evalcar. Defined
3865 evalcar to scm_eval_car. Added explanation of "EVAL" symbols to
3866 the beginning of the file. New procedure: scm_unmemocopy.
3867 Added some global state variables needed by the debugging
3868 evaluator: scm_ceval_ptr, last_debug_info_frame, debug_mode,
3869 check_entry, check_apply, check_exit, debug_options and
3870 evaluator_traps. New acro: undefine.
3871
3872 * eval.h: Renamed EVAL --> XEVAL.
3873
3874 * gc.c (scm_init_storage): Renamed scm_make_weak_hash_table
3875 --> scm_make_weak_key_hash_table.
3876
3877 * init.c (scm_restart_stack, scm_boot_guile): Added initialization
3878 of SCM_DFRAME. Added calls to scm_init_{debug,options,srcprop}.
3879
3880 * libguile.h: Conditionally include debug.h
3881
3882 * objprop.c (scm_object_properties, scm_set_object_properties_x):
3883 scm_object_properties shouldn't return handle. `handle' now gets
3884 initialized in scm_set_object_properties_x. scm_object_properties
3885 doesn't any longer create an entry in scm_object_whash.
3886
3887 * options.c: New file: handling of run time options.
3888
3889 * options.h: New file: handling of run time options.
3890
3891 * posix.c (scm_getpgrp): Cast pointer to getpgrp.
3892
3893 * print.c: New procedure: scm_print_options
3894
3895 * print.h: Defines for print options.
3896
3897 * read.c: New procedure: scm_read_options
3898
3899 * read.h: Defines for reader options.
3900
3901 * root.h: Added scm_source_whash among scm_sys_protects.
3902
3903 * srcprop.c: New file: source properties.
3904
3905 * srcprop.h: New file: source properties.
3906
3907 * throw.c (jbsmob): Jump buffers are now correctly allocated.
3908 (Bug found by A. Green.)
3909
3910 * weak.c: Renamed scm_weak_hash_table --> scm_weak_key_hash_table.
3911
3912 * weak.h: Renamed scm_weak_hash_table --> scm_weak_key_hash_table.
3913
3914 Thu Aug 15 02:05:14 1996 Jim Blandy <jimb@totoro.cyclic.com>
3915
3916 * libguile.h: #include "objprop.h"; I guess this was forgotten.
3917
3918 * init.c (scm_boot_guile): Don't call scm_init_rgx; it's a plugin,
3919 and should be called by the final client.
3920
3921 Wed Aug 14 21:41:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
3922
3923 * gc.h: Use the PROTO macro when declaring functions.
3924 * gc.c: Use the PROTO macro when declaring static functions.
3925 Remove the CPP hair around function definitions.
3926
3927 * gc.c (scm_init_storage): Initialize scm_asyncs.
3928
3929 * libguile.h: #include "__scm.h" before testing the STDC_HEADERS
3930 preprocessor symbol; "__scm.h" is where it might get #defined.
3931 * __scm.h: Similar: #include <scmconfig.h> before testing
3932 HAVE_LIMITS_H.
3933
3934 * __scm.h: It's HAVE_LIMITS_H, not HAVE_LIMITSH.
3935
3936 Fri Aug 9 11:09:28 1996 Jim Blandy <jimb@totoro.cyclic.com>
3937
3938 * init.c (scm_boot_guile): Add init_func argument; call
3939 (*init_func) instead of calling scm_appinit; it's ucky to
3940 hard-code names for the user's procedures.
3941 * init.h (scm_boot_guile): Adjust declaration.
3942
3943 * __scm.h (PROTO): New macro, for declaring functions with
3944 prototypes.
3945
3946 * init.h (scm_start_stack, scm_restart_stack): Use PROTO;
3947 eliminate all the __STDC__ conditionals.
3948 (scm_boot_guile): Add declaration.
3949 * init.c (scm_start_stack, scm_restart_stack, scm_boot_guile):
3950 Remove __STDC__ conditionals around function definitions; the
3951 declarations in init.h will provide the same information, more
3952 usefully.
3953
3954 * __scm.h (SCM_SYSMISSING): When we don't have ENOSYS, don't
3955 complain about it in the error message; the error message is
3956 adequate without that note, and there's nothing the user can do
3957 about it.
3958
3959 Wed Aug 7 14:14:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
3960
3961 * Makefile.in (ancillary): Drop def.sed.
3962
3963 * posix.c (scm_init_posix): Use numeric values, rather than
3964 CPP symbols, when defining the scheme values R_OK, W_OK, X_OK, and
3965 F_OK. The symbols aren't available on some systems, and I'm
3966 pretty sure their values are fixed by common widespread practice.
3967 * ioext.c (scm_init_ioext): Code here defined them too; remove it.
3968
3969 More functions unavailable on some systems.
3970 * configure.in (AC_CHECK_FUNCS): Add ctermid, setpgid, setsid,
3971 tcgetpgrp, tcsetpgrp, and waitpid to the list of functions to
3972 check for.
3973 * configure, scmconfig.h.in: Updated, using autoconf and autoheader.
3974 * posix.c (scm_sys_ctermid, scm_sys_setpgid, scm_sys_setsid,
3975 scm_sys_tcgetpgrp, scm_sys_tcsetpgrp, scm_sys_waitpid): Put the
3976 bodies of these functions in "#ifdef HAVE_MUMBLE" clauses, with a
3977 stub that signals an error as the #else.
3978
3979 * Makefile.in (ancillary): Drop acconfig-1.5.h; add acconfig.h.
3980
3981 Wed Aug 7 06:28:42 1996 Gary Houston <ghouston@actrix.gen.nz>
3982
3983 * Fixes motivated by Petr Adamek <adamek@mit.edu>:
3984
3985 * unif.c: include ramap.h.
3986
3987 * read.c (endif): case_insensative_p renamed case_insensitive_p.
3988
3989 * ramap.h: rename scm_array_copy prototypes to scm_array_copy_x.
3990
3991 * ports.c: include sys/ioctl.h.
3992
3993 * scmconfig.h.in: add HAVE_SYS_IOCTL_H.
3994
3995 * configure.in: check for sys/ioctl.h.
3996
3997 * ports.c: include <malloc.h> not "malloc.h".
3998
3999 * mallocs.c: include <malloc.h> not "malloc.h", likewise for unistd.h.
4000
4001 * fports.c: remove ttyname and tmpnam declarations.
4002
4003 * posix.c: fewer ttyname declarations.
4004
4005 * fports.c: include <string.h> not "string.h".
4006
4007 * init.c, ioext.c: include string.h and unistd.h.
4008
4009 * gc.c: include <malloc.h> not "malloc.h", likewise for unistd.h.
4010
4011 * async.c, strings.h, strports.c, struct.c, symbols.c, feature.c,
4012 genio.c, simpos.c, vports.c: include string.h.
4013
4014 * socket.c, fdsocket.c: include string.h only if HAVE_STRING_H.
4015
4016 * fdsocket.c (getsockopt, setsockopt): change type of optlen from
4017 scm_sizet to int.
4018 (scm_addr_buffer_size): change type from scm_sizet to int.
4019 (accept, getsockname, getpeername, recvfrom): change type of tmp_size
4020 from scm_sizet to int.
4021
4022 * error.c: include unistd.h.
4023
4024 * __scm.h: (SCM_SYSMISSING): another version in case ENOSYS isn't
4025 defined.
4026
4027 * Makefile.in: remove references to .hd, .cd suffix and __scm.hd.
4028
4029 * __scm.hd, def.sed: deleted.
4030
4031 Tue Aug 6 14:49:08 1996 Jim Blandy <jimb@totoro.cyclic.com>
4032
4033 Changes for NeXT, suggested by Robert Brown.
4034 * configure.in: Call AC_TYPE_MODE_T.
4035 (AC_CHECK_HEADERS): Add libc.h, to get more prototypes on the
4036 NeXT. Put header file list in alphabetical order.
4037 * configure, scmconfig.h.in: Regenerated.
4038 * filesys.c [HAVE_LIBC_H]: #include <libc.h>.
4039
4040 * filesys.c [HAVE_STRING_H]: #include <string.h>, to get prototype
4041 for strerror.
4042
4043 * acconfig.h: New file, providing documentation for the CPP
4044 symbols defined in configure.in
4045 * acconfig-1.5.h: Removed; superceded by the above.
4046
4047 Sat Aug 3 01:27:14 1996 Gary Houston <ghouston@actrix.gen.nz>
4048
4049 * ioext.c (scm_sys_fdopen): fix the port-table assignment.
4050
4051 * fports.c (scm_open_file): don't return #f, throw error.
4052
4053 * ioext.c (fileno): renamed from %fileno.
4054 (soft-fileno): deleted.
4055
4056 * ports.c (scm_port_revealed): don't need to check for -1 from
4057 scm_revealed_count.
4058 (scm_set_port_revealed_x): return unspecified, not #f.
4059
4060 * ioext.c (primitive-move->fdes): return #t or #f, not 1 or 0.
4061
4062 * fdsocket.c: getsockopt, setsockopt: use HAVE_STRUCT_LINGER.
4063
4064 * scmconfig.h.in: add HAVE_STRUCT_LINGER.
4065
4066 * configure.in: check for struct linger, set HAVE_STRUCT_LINGER.
4067
4068 Thu Aug 1 02:58:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
4069
4070 * filesys.c, posix.c: #include <sys/types.h> before <sys/stat.h>.
4071 This is necessary on Ultrix, and doesn't hurt portability.
4072
4073 * Makefile.in (dist-dir): New target, implementing a new dist system.
4074 (installed_h_files): Put in alphabetical order.
4075 Remove duplicate entries for markers.h and unif.h.
4076 (c_files): Remove duplicate entries for markers.c.
4077 (ancillary): Renamed from anillery; all uses changed. Remove
4078 PLUGIN; it's a directory, and needs special treatment in dist-dir.
4079 Remove all the ../doc/* files; doc/Makefile.in handles that.
4080
4081 * Makefile.in (libobjs): Remove duplicate entry for markers.o.
4082
4083 * Makefile.in (.c.x): Compensate for Ultrix's broken Bourne shell:
4084 every if must have an else, or else the whole command has a
4085 non-zero exit code whenever the if's condition is false.
4086
4087 Thu Aug 1 08:22:24 1996 Gary Houston <ghouston@actrix.gen.nz>
4088
4089 * posix.c: include string.h.
4090
4091 Wed Jul 31 23:43:05 1996 Gary Houston <ghouston@actrix.gen.nz>
4092
4093 * numbers.c: rename %expt -> $expt, %atan2 -> $atan2, as it must
4094 have been once.
4095
4096 * posix.c, ioext.c, socket.c, fdsocket.c, files.c, filesys.c, simpos.c:
4097 Remove leading % from scheme names.
4098 Do not return error values, call SCM_SYSERROR or similar.
4099
4100 * __scm.h (SCM_SYSERROR, SCM_SYSMISSING): new macros.
4101
4102 Wed Jun 12 00:28:31 1996 Tom Lord <lord@beehive>
4103
4104 * struct.c (scm_init_struct): new file.
4105
4106 Fri Jun 7 14:02:00 1996 Tom Lord <lord@beehive>
4107
4108 * list.c (scm_list_tail): list-cdr-ref is the same as list-tail.
4109 (scm_list_head): added list-head for rapidly chopping argument
4110 lists off of longer lists (and similar).
4111
4112 Tue Jun 4 09:40:33 1996 Tom Lord <lord@beehive>
4113
4114 * objprop.c (scm_object_property): assq the cdr of the whash
4115 handle for obj, not the handle itself.
4116
4117 Mon Jun 3 17:19:30 1996 Tom Lord <lord@beehive>
4118
4119 * gc.c (scm_mark_weak_vector_spines): Mark the spines (alists) of
4120 weak hash tables last of all marking to avoid an obscure gc bug.
4121 WARNING: circular lists stored in a weak hash table will hose us.
4122
4123 Fri May 24 09:53:39 1996 Tom Lord <lord@beehive>
4124
4125 * vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):
4126 new functions similar to scm_substring_move_left_x and
4127 scm_substring_move_right_x.
4128
4129 Wed May 22 20:07:01 1996 Tom Lord <lord@beehive>
4130
4131 * init.c (scm_boot_guile): prevent gc with scm_block_gc not
4132 scm_gc_heap_lock!
4133
4134 Wed May 15 16:13:29 1996 Tom Lord <lord@beehive>
4135
4136 * ports.c (scm_unread_char): scm_gen_ungetc as a scheme procedure.
4137
4138 Thu May 9 09:33:17 1996 Tom Lord <lord@beehive>
4139
4140 * strports.c (scm_strprint_obj): convenience function. C for
4141 (lambda (obj) (call-with-output-string (lambda (p) (write obj p))))
4142
4143 * guile-{tcl,tk}.[ch], events.[ch], keysyms.[ch], tcl-channels.[ch]
4144 removed to a separate library
4145
4146 * init.c (scm_boot_guile): copied from guile-tcl.c.
4147 Initialization specific to tcl interpreters removed.
4148
4149 Wed May 8 15:07:37 1996 Tom Lord <lord@beehive>
4150
4151 * ports.c (scm_ports_prehistory): size malloced here doesn't
4152 matter so long as it is non-0 (got rid of "* 4").
4153
4154 Tue May 7 11:43:37 1996 Tom Lord <lord@beehive>
4155
4156 * gscm.h: gscm_mkarray eliminated (presumably was not being used
4157 since its definition was bogus).
4158
4159 Mon May 6 13:02:56 1996 Tom Lord <lord@beehive>
4160
4161 * mallocs.[ch]: back again (for rx at least).
4162
4163 Wed Apr 17 08:54:20 1996 Tom Lord <lord@beehive>
4164
4165 * ports.c: removed functions relating to the mapping between ports
4166 and descriptors. (That stuff is unix-specific and should be collected
4167 in a separate library).
4168
4169 * ramap.c (scm_array_copy): return #<unspecified> not #<undefined>.
4170 (Tom Mckay@avanticorp.com)
4171
4172 Mon Apr 15 14:16:55 1996 Tom Lord <lord@beehive>
4173
4174 * gc.c (scm_gc_sweep): Immediates in weak vectors were not
4175 handled correctly (SCM_FREEP was applied to them) -- test for
4176 NIMP. Keys in weak hash tables were spuriously (though harmlessly)
4177 being overwritten with #f. (brown@grettir.bibliotech.com)
4178
4179 Tue Apr 2 22:25:00 1996 Tom Lord <lord@beehive>
4180
4181 * gc.c (scm_unhash_name): new procedure, unhash-name, flushes glocs
4182 for a specific symbol or for all symbols.
4183
4184 Mon Apr 1 10:34:55 1996 Tom Lord <lord@beehive>
4185
4186 * gc.c (scm_gc_mark): mark weak hash tables correctly (was getting weak
4187 keys and weak values confused).
4188
4189 Thu Mar 14 22:20:20 1996 Tom Lord <lord@beehive>
4190
4191 * list.c (scm_last_pair): map '()=>'()
4192
4193 Wed Mar 13 16:43:34 1996 Tom Lord <lord@beehive>
4194
4195 * pairs.c, hashtab.c, list.c, alist.c append.c, sequences.c:
4196 Generalized assoc and hash-table functions.
4197 Factored pairs.c into multiple files.
4198
4199 Fri Mar 8 14:44:39 1996 Tom Lord <lord@beehive>
4200
4201 * gscm.c (gscm_run_scm): got rid of objprop.
4202
4203 Fri Mar 1 10:39:52 1996 Tom Lord <lord@beehive>
4204
4205 * genio.c (scm_getc):
4206 NOTE: fgetc may not be interruptable.
4207
4208 * procprop.c (scm_stand_in_scm_proc):
4209 NOTE: don't use a alist here.
4210 (scm_set_procedure_properties_x): fix type checking throughout this file.
4211
4212 * gc.c (scm_gc_sweep): free heap segments with free, not must_free.
4213
4214 * ports.c (scm_remove_from_port_table): adjust scm_mallocated
4215 after freeing part of the port table.
4216
4217 Thu Feb 29 16:21:17 1996 Tom Lord <lord@beehive>
4218
4219 * strports.c (scm_mkstrport):
4220 * vports.c (scm_make_soft_port): allocate a port table entry
4221 (possibly triggering gc) before setting the tag of the corresponding
4222 ports handle.
4223
4224 * pairs.c (scm_delq_x): never throw an error.
4225
4226 * vectors.c (scm_make_vector): made the default vector fill argument
4227 into '() (much more useful than the previous value, "#unspecified")
4228
4229 Mon Feb 26 17:19:09 1996 Tom Lord <lord@beehive>
4230
4231 * ports.c (scm_add_to_port_table): Added fields
4232 to port table entries: file_name, line_num, col.
4233 Update these in open_file, gen_getc and gen_ungetc.
4234 Added procedures to access those fields.
4235
4236 Sun Feb 25 00:10:36 1996 Tom Lord <lord@beehive>
4237
4238 * procs.c (scm_make_subr_opt): new entry point for making
4239 anonymous subrs.
4240
4241 Sat Feb 24 17:11:31 1996 Tom Lord <lord@beehive>
4242
4243 * gc.h: SCM_STACK_GROWS_UP is now set by autoconf.
4244
4245 Fri Feb 23 10:26:29 1996 Tom Lord <lord@beehive>
4246
4247 * numbers.c (scm_exact_p): This function no longer
4248 implements "integer?".
4249
4250 Thu Feb 22 20:56:16 1996 Tom Lord <lord@beehive>
4251
4252 * gc.c (scm_gc_end): simulate a signal at the end of each GC.
4253 (scm_gc_stats): return an assoc of useful data. Replaces "room"
4254 and the stats reporting formerlly built into repl.
4255
4256 * repl.[ch]: removed.
4257 GC statistics keeping moved to gc.c.
4258 Other statistics keeping can be done from Scheme.
4259 REPLS are now written in Scheme.
4260
4261 Wed Feb 21 10:28:53 1996 Tom Lord <lord@beehive>
4262
4263 * cnsvobj.c (gscm_is_gscm_obj): new file for old functions (icky
4264 conservatively marked objects).
4265
4266 * throw.c (scm_ithrow): Unwind up to the right catch during a throw!
4267
4268 * error.c (scm_init_error): init system_error_sym here, not in repl.c.
4269
4270 * feature.c (scm_compiled_library_path): moved here from repl.c.
4271 This file is for stuff relating specifically to Scheme libraries
4272 like slib.
4273
4274 * eval.c (scm_m_define): don't give warning about redefinition, don't
4275 check verbosity.
4276
4277 NOTE: this should throw a resumable exception with parameters --
4278 the name, the top-level env, the variable, the definition, #t/#f: redefining builtin?
4279
4280 * repl.c (scm_gc_begin/end): don't print a message, don't check verbosity.
4281
4282 * error.c: scm_warn eliminated.
4283
4284 * read.c (scm_lreadr): extra right paren gets an error, not a warning.
4285
4286 * repl.c, marksweep.c, gc.c (various):
4287 lose exit_report, growth_mon.
4288
4289 * gscm.c: got rid of verbosity functions.
4290
4291 Tue Feb 20 00:19:10 1996 Tom Lord <lord@beehive>
4292
4293 * throw.c (scm_ithrow): guard against the bad-throw hook changing
4294 between the call to procedurep and use.
4295
4296 * error.c (scm_everr):
4297 * gc.c (fixconfig):
4298 * gsubr.c (scm_make_gsubr): use exit, not scm_quit. still wrong,
4299 but less so.
4300
4301 * strports.c: don't reveal the port's string to the caller
4302 because it changes size.
4303
4304 (stputc stwrite): check/change the strings length with interrupts
4305 blocked.
4306
4307 * objprop.c (scm_set_object_property_x &c): use the generic
4308 hashing functions and be threadsafe.
4309
4310 * eval.c (scm_unmemocar): do this operation in a thread-safe way.
4311 (per suggestion jaffer@gnu.ai.mit.edu).
4312
4313 * mbstrings.c (scm_multi_byte_string): guard against argument list
4314 changing length.
4315
4316 * strings.c (scm_make_string): loop cleanup
4317
4318 * unif.c (scm_vector_set_length_x): scm_vector_set_length_x no longer
4319 a scheme function.
4320
4321 * weaks.c (scm_weak_vector): guard against argument list
4322 changing length.
4323
4324 * variable.c (scm_builtin_variable): check for/make a built-in
4325 variable automicly.
4326
4327 * vectors.c (scm_vector): while filling the new array,
4328 guard against a list of fill elements that grows after
4329 the vector is allocated.
4330
4331 * hashtab.c -- new file: general hash table
4332 functions. hash, hashq, hashv, hashx.
4333
4334 * tags.h: made wvect an option bit of vector.
4335
4336 Mon Feb 19 09:38:05 1996 Tom Lord <lord@beehive>
4337
4338 * symbols.c: made the basic symbol table operations atomic.
4339
4340 * root.c &c.: collected stack-specific global state.
4341 linum/colnum etc *should* be port-specific state.
4342
4343 * struct.c (scm_init_struct): init the first struct type during
4344 initialization to fix a race condition.
4345
4346 * continuations.c (scm_dynthrow): pass throwval in the 'regs'
4347 object, not in a global.
4348 (suggested by green@cygnus, jaffer@gnu.ai.mit.edu)
4349
4350 * throw.c (_scm_throw): Pass throwval on the stack, not in a global
4351 (suggested by green@cygnus, jaffer@gnu.ai.mit.edu)
4352
4353 * *.[ch]: namespace cleanup. Changed all (nearly) exported CPP
4354 and C symbols to begin with SCM_ or scm_.
4355
4356 Sun Feb 18 15:55:38 1996 Tom Lord <lord@beehive>
4357
4358 * gsubr.c (scm_gsubr_apply): statically allocate the
4359 array of arguments (bothner@cygnus.com).
4360
4361 Sat Feb 17 20:20:40 1996 Tom Lord <lord@beehive>
4362
4363 * scmsigs.c: Simplified to use async rountines.
4364
4365 * async.c: New support for interrupt handlers.
4366
4367 Thu Feb 15 11:39:09 1996 Tom Lord <lord@beehive>
4368
4369 * symbols.c (scm_string_to_symbol et al.): number of tweaky changes to
4370 set the multi_byte flag correctly in symbols. This is wrong.
4371 intern_obbary_soft and msymbolize should take an extra parameter.
4372 Also, weird multibyte symbols don't print correctly.
4373 The weird symbol syntax is also a bit bogus (emacs doesn't quite
4374 cope).
4375
4376 Tue Feb 13 11:39:37 1996 Tom Lord <lord@beehive>
4377
4378 * symbols.c (scm_string_to_obarray_symbol): obarray == #f means
4379 use the system symhash. == #t means create an uninterned symbol.
4380
4381 Wed Feb 7 09:28:02 1996 Tom Lord <lord@beehive>
4382
4383 * strings.c (scm_make_shared_substring): build'em.
4384 It might better to keep a table of these and use one
4385 less cons-pair per shared-substring.
4386
4387 Tue Feb 6 17:45:21 1996 Tom Lord <lord@beehive>
4388
4389 * strings.c (scm_string_shared_substring): create shared
4390 substrings. (Doesn't handle mb strings yet).
4391
4392 * mbstrings.c (scm_print_mb_string): handle RO strings.
4393
4394 * print.c (scm_iprin1): print substrings as their non-substring
4395 counterparts (dubious).
4396
4397 * marksweep.c (scm_gc_mark scm_gc_sweep): handle RO and MB
4398 strings.
4399
4400 * hash.c (scm_hasher): hash RO and MB strings as bytestrings.
4401
4402 * eval.c (SCM_CEVAL): self-evaluate RO and MB strings.
4403
4404 * eq.c (scm_equal_p): handle RO and MB strings.
4405
4406 * symbols.c (scm_string_to_symbol):
4407 (scm_string_to_obarray_symbol):
4408 * strop.c (scm_i_index):
4409 (scm_i_rindex):
4410 (scm_string_null_p):
4411 (scm_string_to_list):
4412 * strings.c (scm_string_length):
4413 (scm_string_ref):
4414 (scm_substring):
4415 (scm_string_append):
4416 * simpos.c (scm_system):
4417 (scm_getenv):
4418 * fports.c (scm_open_file):
4419 * strorder.c (scm_string_equal_p):
4420 (scm_string_ci_equal_p):
4421 (scm_string_less_p):
4422 (scm_string_ci_less_p):
4423 * pairs.c (scm_obj_length):
4424 * mbstrings.c (scm_multi_byte_string_length):
4425
4426 Use RO string macros for RO strings.
4427
4428 Tue Jan 30 09:19:08 1996 Tom Lord <lord@beehive>
4429
4430 * Makefile.in (CFLAGS ALL_CFLAGS): be more standard.
4431
4432 * strop.c (scm_i_rindex, scm_i_index): Don't use the BSD functions
4433 index/rindex. Do handle embedded \000 characters.
4434
4435 Sun Jan 28 13:16:18 1996 Tom Lord <lord@beehive>
4436
4437 * error.c (def_err_response): (int)scm_err_pos => (long)scm_err_pos
4438 Eliminate a (presumed) warning on some systems.
4439
4440 * gscm.c (gscm_run_scm): SCM_INIT_PATH => GUILE_INIT_PATH
4441 (Mikael Djurfeldt <mdj@nada.kth.se>)
4442
4443 Sat Jan 27 12:36:55 1996 Tom Lord <lord@beehive>
4444
4445 * eval.c (scm_map): added argument type checking.
4446 (kawai@sail.t.u-tokyo.ac.jp)
4447
4448 * gscm.c (gscm_set_procedure_properties_x): parameter "new" => "new_val"
4449 for C++. (Seth Alves <alves@gryphon.com>)
4450
4451 (gscm_cstr): uses an uninitialized local variable causing
4452 segv. (kawai@sail.t.u-tokyo.ac.jp)
4453
4454
4455 * lvectors.c (scm_get_lvector_hook):
4456 In guile-ii, the lvector code was broken. It was fixed in guile-iii.
4457 It seems to me like if it is broken again in guile-iv...Here is a patch.
4458 "! || (LENGTH (keyvec) == 0))"
4459 (From: Mikael Djurfeldt <mdj@nada.kth.se>)
4460
4461
4462 * gscm.c (gscm_sys_default_verbosity):
4463 incorrectly declared for non-__STDC__
4464 (Tom_Mckay@avanticorp.com)
4465
4466 * ports.c (scm_setfileno): Tweak the macro a bit
4467 to make it easier to port to systems that use
4468 more than a single structure field to hold a descriptor.
4469
4470 * debug.c (change_mode): Avoid GNUCism "int foo[n];"
4471 Give a warning, not an error, for unrecognized modes.
4472
4473 * eval.c (SCM_CEVAL):
4474 static char scm_s_for_each[];
4475 static char scm_s_map[];
4476 not needed.
4477
4478 * strings.c (scm_string_p):
4479 static char s_string[];
4480 (see next entry)
4481
4482 * struct.c (scm_sys_struct_set_x):
4483 static char s_sys_make_struct[];
4484 static char s_sys_struct_ref[];
4485 static char s_sys_struct_set_x[];
4486 Rearrange code to eliminate those forward decls for the sake of
4487 broken compilers.
4488
4489 * variable.c (make_vcell_variable): static char s_make_variable[];
4490 isn't needed.
4491
4492 * fports.c (scm_port_mode):
4493 chars modes[3] = "";
4494 to
4495 chars modes[3];
4496 modes[0] = '\0';
4497 (Tom_Mckay@avanticorp.com)
4498
4499
4500 * pairs.c (scm_set_cdr_x): non-__STDC__ declaration of
4501 scm_cons2(), scm_acons(), and scm_set_cdr_x() missing semicolon
4502 (Tom_Mckay@avanticorp.com)
4503
4504 * numbers.c (scm_num_eq_p): Non-__STDC__ declaration of
4505 scm_num_eq_p() was scm_equal_p().
4506 (Tom_Mckay@avanticorp.com)
4507
4508 * symbols.c (msymbolize): "CHARS(X) = " => "SETCHARS..."
4509 (Tom_Mckay@avanticorp.com)
4510
4511 Fri Jan 26 14:03:01 1996 Tom Lord <lord@beehive>
4512
4513 * weaks.c (scm_make_weak_vector): "VELTS(X) =" => "SETVELTS..."
4514 (Tom_Mckay@avanticorp.com)
4515
4516 * strop.c (scm_substring_fill_x):
4517 Non-__STDC__ declaration of scm_substring_fill_x() missing semicolon
4518 (Tom_Mckay@avanticorp.com)
4519
4520 * eval.c (SCM_APPLY): variables "debug_info" -> dbg_info.
4521 Works around a compiler bug on some machines. (Tom_Mckay@avanticorp.com)
4522
4523 * _scm.h (CxR functions): #define CxR SCM_CxR => #define CxR(X) SCM_CxR(X)
4524 Works around a compiler bug on some machines. (Tom_Mckay@avanticorp.com)
4525
4526 * lvectors.c (scm_lvector_set_x): avoid VELTS (VELTS (...)[..]) which
4527 can turn into an obscure gc bug.
4528
4529 * chars.c (scm_char_p): fixed PROC call.
4530
4531 * gscm.h (gscm_vset): use scm_vector_set_x not (the missing)
4532 scm_vector_set.
4533
4534 Tue Jan 23 13:29:40 1996 Tom Lord <lord@beehive>
4535
4536 * elisp.c (new file): dynamic scoping and other bits for
4537 elisp. Don't use this yet unless you specificly want to
4538 hack on elisp emulation.
4539
4540 * dynwind.c (scm_dowinds): When entering or leaving a dynamic
4541 scope created by scm_with_dynamic_bindings_operation_x, swap
4542 the bindings of that scope with the corresponding globals.
4543
4544 * continuations.c (scm_make_cont): when a continuation is captured,
4545 relocate the continuation stack chunks registered on the wind chain
4546 to the heap.
4547
4548 Sun Jan 21 19:31:17 1996 Tom Lord <lord@beehive>
4549
4550 * eval.c (SCM_CEVAL): if the function position evaluates
4551 to a macro, process it accordingly. (Previously, macros were
4552 handled only if the function position was a symbol naming a
4553 variable bound to a macro).
4554
4555 Sat Jan 20 23:21:37 1996 Tom Lord <lord@beehive>
4556
4557 * eval.c (scm_m_set): allow multi-variable set! like
4558 (set! x 1 y 2 z 3).
4559
4560 Wed Dec 6 02:40:49 1995 Tom Lord <lord@beehive>
4561
4562 * ports.h fports.c vports.c marksweep.c gc.c strports.c: moved the
4563 STREAM of ports into the port table and replaced it with a
4564 port-table index.
4565
4566 * repl.c (iprin1): added tc7_mb_string -- same as tc7_string.
4567
4568 * marksweep.c (scm_gc_mark): added tc7_mb_string -- same as tc7_string.
4569
4570 * mbstrings.c (new file): functions on multi-byte strings.
4571
4572 * tags.h (scm_typ7_string, scm_typ7_mb_string): added a tag
4573 for multi-byte strings. Moved the string tag.
4574
4575 * chars.h chars.c repl.c (many functions): made scm_upcase and
4576 scm_downcase functions that are safe for extended character sets.
4577
4578 Changed the range of integer->char.
4579
4580 Changed the type of SCM_ICHR.
4581
4582 Tue May 16 17:49:58 1995 Mikael Djurfeldt <mdj@sanscalc.nada.kth.se>
4583
4584 * guile.c: Changed init file name from "SCM_INIT_PATH" to
4585 "GUILE_INIT_PATH"
4586
4587 Sun Aug 6 15:14:46 1995 Andrew McCallum <mccallum@vein.cs.rochester.edu>
4588
4589 * guile.c (gscm_is_gscm_type): New function. (Without this how will we
4590 know that it's safe to pass an object to gscm_get_type?)
4591 (gscm_get_type): Fix tyop in error message.
4592
4593 * variable.c (scm_variable_ref): fixed assertion test.
4594 (Robert STRANDH <strandh@labri.u-bordeaux.fr>)
4595
4596 * gscm.h: fixed several prototypes, notably gscm_vref.
4597 Add gscm_is_eq and temporarily commented out gscm_eq (see
4598 the note in gscm.h near gscm_eq if this change effects your
4599 code).
4600 (Reported by Mark Galassi <rosalia@sstcx1.lanl.gov>)
4601
4602 * pairs.c (scm_obj_length): see next entry.
4603
4604 * gscm.h (gscm_obj_length): A way to get an integer
4605 length for lists, strings, symbols (treated as strings),
4606 and vectors. Returns -1 on error.
4607
4608 * eq.c (scm_equal_p): fixed smob case.
4609 (William Gribble <grib@arlut.utexas.edu>)
4610
4611 * Makefile.in (X_CFLAGS): defined.
4612 (William Gribble <grib@arlut.utexas.edu>)
4613
4614 * gscm.h (gscm_2_double): provided now
4615 (reported by Mark Galassi <rosalia@sstcx1.lanl.gov>)
4616
4617 Tue Jun 13 01:04:09 1995 gnu
4618 * Vrooom!
4619
4620