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