*** empty log message ***
[bpt/guile.git] / libguile / ChangeLog
1 1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
2
3 * simpos.c (scm_software_type): Procedure deleted. This isn't the
4 right way to handle system variation. Autoconf's approach is the
5 way and the light.
6 * simpos.h (scm_software_type): Declaration deleted.
7
8 * script.c (scm_find_executable): Don't test if unix is #defined
9 here; first, NetBSD doesn't #define it, and second, it's the wrong
10 way to go about these things. (Thanks to Perry Metzger.)
11 (dld_find_executable): Delete this MSDOS support code. This isn't
12 the way we want to support this; it needs to be rethunk at a
13 larger scale.
14
15 * genio.c (scm_do_read_line): Don't just politely check that the
16 line was either non-empty or EOF. Abort if it's empty and not
17 EOF.
18
19 1998-10-11 Jim Blandy <jimb@zwingli.cygnus.com>
20
21 * scmconfig.h.in: Regenerated.
22
23 * libguile.h: Don't omit the dynamic linking functions. (Thanks
24 to Greg Badros.)
25
26 * genio.c (scm_do_read_line): Count lines correctly when the file
27 doesn't end in a newline.
28
29 1998-10-10 Jim Blandy <jimb@zwingli.cygnus.com>
30
31 * genio.c (scm_do_read_line): Maintain the line count correctly.
32 (Thanks to Harvey J. Stein and Greg Harvey.)
33
34 * gc.c (scm_return_first): Remove #ifdef __STDC__ garbage; Guile
35 requires ANSI now.
36
37 * numbers.c (big2str): Protect t from garbage collection until
38 we're done. (Thanks to Gary Houston.)
39
40 1998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
41
42 * Makefile.am (libguile_la_LDFLAGS): Increment shared library
43 version number.
44 * Makefile.in: Regenerated.
45
46 * fports.h (scm_setbuf0, scm_setvbuf, scm_setfileno,
47 scm_evict_ports, scm_open_file, scm_stdio_to_port): Get rid of
48 SCM_P macro.
49
50 Do magic to mix reads and writes on stdio FILE-based ports.
51 (Thanks to Christian Lynbech.)
52 * fports.c (FPORT_READ_SAFE, FPORT_WRITE_SAFE, FPORT_ALL_OKAY):
53 New macros.
54 (pre_read, pre_write): New functions.
55 (local_fgetc, local_fgets, local_ffwrite, local_fputc,
56 local_fputs): Call them.
57 (local_fflush): Mark the port as ready for reading and writing.
58 (scm_stdio_to_port): Set the FPORT_READ_SAFE, FPORT_WRITE_SAFE
59 flags on new port objects. This might not be accurate --- who
60 knows what state the FILE * is in when we get it --- but it won't
61 do extraneous calls to fflush or fseek, so it's no worse than the
62 behavior before this change.
63 * ports.h: Add comment.
64
65 Centralize the creation of port objects based on stdio FILE * in
66 fports.c; don't just throw them together anywhere.
67 * fports.c (scm_stdio_to_port): Make NAME a SCM value, which is
68 what the rest of Guile wants. Don't set the revealed count;
69 that's only appropriate for stdin, stdout, stderr.
70 (scm_standard_stream_to_port): This function does set the revealed
71 count.
72 * init.c (scm_init_standard_ports): Use scm_standard_stream_to_port,
73 not scm_stdio_to_port.
74 * filesys.c (scm_open): Call scm_stdio_to_port; don't write it out.
75 * fports.c (scm_open_file): Same.
76 * posix.c (scm_pipe): Same.
77 * socket.c (scm_sock_fd_to_port): Same.
78 * ioext.c (scm_fdopen): Same.
79 (scm_freopen): Moved from here to...
80 * fports.c (scm_freopen): ... here. This is really something that
81 munges the internals of an fport, so it should go here.
82 * fports.h (scm_stdio_to_port): Adjust prototype.
83 (scm_standard_stream_to_port, scm_freopen): New protoypes.
84 * ioext.h (scm_freopen): Prototype removed.
85
86 * filesys.c (set_element, get_element): This can work on both pipe
87 and file ports, so use SCM_FPORTP to typecheck, instead of testing
88 for scm_tc16_fport.
89
90 * scmconfig.h.in: Regenerated.
91
92 Change the definition of the functions in scm_ptobfuns so that
93 they get passed the port object, not the port's stream.
94 * ports.h (scm_ptobfuns): Rename all `stream' arguments to `port'.
95 * gc.c (scm_gc_sweep): Pass the port itself to the free function.
96 * genio.c (scm_putc, scm_puts, scm_lfwrite, scm_fflush, scm_getc):
97 Pass the port itself to the scm_ptobs function.
98 * ports.c (scm_close_port, scm_force_output, scm_flush_all_ports,
99 scm_generic_fgets): Same.
100 (putc_void_port, puts_void_port, write_void_port, flush_void_port,
101 getc_void_port, fgets_void_port, close_void_port): Just change the
102 argument names; these functions don't really do anything.
103 * fports.c (local_fgetc, local_fgets, local_fclose, local_fflush,
104 local_fputc, local_fputs, local_ffwrite, local_pclose): Take the
105 port as an argument, and use SCM_STREAM to get the stdio FILE *.
106 Also, use prototyped definitions, and get rid of the extra
107 declarations.
108 (scm_fptob, scm_pipob): We don't need casts here any more.
109 * strports.c (prinstpt): Use prototype declarations.
110 (stputc, stwrite, stputs, stgetc): Take the port as an argument,
111 and use SCM_STREAM to get the string info. Also, use prototyped
112 definitions, and get rid of the extra declarations.
113 * vports.c (sfputc, sfwrite, sfputs, sfflush, sfgetc, sfclose,
114 noop0): Same.
115
116 * ports.h (scm_ptobfuns): Replace uses of SCM_P with a straight
117 prototype; it's okay (preferred, even!) to use ANSI C in Guile.
118
119 * fports.c (local_fgetc, local_fgets): Renamed from scm_fgetc and
120 scm_fgets, for consistency.
121 (scm_fptop, scm_pipob): References updated.
122
123 1998-10-08 Jim Blandy <jimb@zwingli.cygnus.com>
124
125 Include the source location in error messages for scripts.
126 * init.c (scm_boot_guile_1): Use scm_internal_lazy_catch, so the
127 stack is still there when we catch the error.
128 * throw.c (handler_message): If we are handling an error with a
129 message, then put together the proper arguments and call
130 scm_display_error, instead of scm_display_error_message. That
131 displays source location, if it can find it.
132
133 1998-10-07 Jim Blandy <jimb@zwingli.cygnus.com>
134
135 * gc.c (scm_unprotect_object): Change this so that calls to
136 scm_protect_object and scm_unprotect_object nest properly.
137 (scm_protect_object): Doc fixes.
138
139 * strings.c (scm_string_set_x): Require the argument to be a
140 writable string, not a substring or a symbol.
141 * strings.h (SCM_RWSTRINGP, SCM_NRWSTRINGP): New predicates.
142 (Thanks to John Redford and Charbel Jacquin.)
143
144 * scmconfig.h.in: Regenerated; ../acconfig.h has changed.
145
146 1998-10-07 Jim Blandy <jimb@totoro.red-bean.com>
147
148 * eval.c (safe_setjmp): Remove this misunderstanding.
149 (ENTER_APPLY, SCM_CEVAL, SCM_APPLY): Replace with references to
150 ordinary setjmp.
151
152 1998-10-06 Jim Blandy <jimb@zwingli.cygnus.com>
153
154 * libguile.h: Mark these as C declarations, for compilation by C++
155 compilers.
156
157 * snarf.h (SCM_PROC, SCM_PROC1): Remove very odd code in #ifdef
158 __cplusplus clause. I seriously doubt this ever worked the way
159 the author seems to have intended.
160
161 1998-10-05 Jim Blandy <jimb@zwingli.cygnus.com>
162
163 Utterly needless cleanups to hopelessly messy code.
164 * ports.c: Doc fixes.
165 (scm_fflush): Moved to ...
166 * genio.c (scm_fflush): ... here, amongst all the other port
167 method invocation functions.
168 * genio.h, ports.h: The prototype moves too.
169
170 1998-10-04 Jim Blandy <jimb@zwingli.cygnus.com>
171
172 * backtrace.c (display_error_body): The current frame does not
173 always have a parent frame; consider a function called directly
174 from the MAIN_FUNC passed to scm_boot_guile. (Thanks to Maciej
175 Stachowiak.)
176
177 * alloca.c (alloca): Undo yesterday's changes, and simply call
178 malloc directly for storage, and abort if we don't get what we
179 want. The situation is much simpler --- just call malloc. Emacs
180 has bizarre/evil requirements (signal handlers might malloc unless
181 you set this global flag, so you have to set the flag around all
182 calls to malloc) which we are certainly not going to conform to,
183 so we can do the simple and obvious thing.
184
185 * coop.c (coop_condition_variable_wait): Make this function
186 static. It's only useful internally --- you should never just
187 wait on a condition variable.
188 * coop-defs.h (coop_condition_variable_wait): Delete prototype.
189
190 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
191
192 * unif.c (scm_array_set_x): Accept any kind of number as an
193 element for a uniform vector of doubles. This is more consistent
194 with Scheme's view of numbers. (Thanks to Miroslav Silovic.)
195
196 * alloca.c: Use scm_must_malloc to obtain storage. Hopefully this
197 works; I can't conveniently test it myself. (Thanks to Dvid
198 Tillman for the bug report.)
199
200 * init.c: Doc fixes.
201
202 * init.c (invoke_main_func): Load the startup files (boot-9.scm)
203 from here, not from scm_compile_shell_switches (which is a pretty
204 dumb place to do it).
205 (scm_load_startup_files): New function.
206 (scm_ice_9_already_loaded): Variable moved to here from script.c.
207 * script.c (scm_compile_shell_switches): Don't load the startup
208 files here.
209 (scm_ice_9_already_loaded): Variable moved.
210 * init.c (scm_load_startup_files): Prototype for new function.
211 * gh_init.c (gh_enter): Doc fix.
212
213 1998-10-03 <jimb@savonarola.red-bean.com>
214
215 Some anti-warning changes from Greg Harvey.
216 * gh_data.c (gh_scm2doubles): Initialize m, to avoid compiler
217 warnings when it doesn't understand our NORETURN declarations in
218 error.h.
219 * posix.c (scm_mknod): Similar.
220
221 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
222
223 * posix.c (scm_getpwuid): If we can't find an entry, return our
224 own message, instead of using scm_syserror --- the getpwMUMBLE
225 functions don't set `errno' to anything interesting.
226
227 1998-10-03 <jimb@savonarola.red-bean.com>
228
229 Get rid of warnings from the cooperative threading system.
230 * threads.h (scm_single_thread_p, scm_yield,
231 scm_call_with_new_thread, scm_join_thread, scm_make_mutex,
232 scm_lock_mutex, scm_unlock_mutex, scm_make_condition_variable,
233 scm_wait_condition_variable, scm_signal_condition_variable): Add
234 prototypes for these Scheme-visible functions.
235 * coop-defs.h (coop_next_runnable_thread,
236 coop_wait_for_runnable_thread_now, coop_wait_for_runnable_thread):
237 Prototypes for these here, even though they're from iselect.c.
238 (coop_condition_variable_wait, coop_join): Add prototypes.
239 * coop-threads.c (scm_threads_free_thread, scm_threads_free_mutex,
240 scm_threads_free_condvar): Make these smob functions static.
241 * coop-threads.h (coop_init): Give this a real prototype.
242 * coop.c: #include <unistd.h>, if we have it, for `usleep' and `sleep'.
243 (coop_next_runnable_thread): No need to provide prototype; it's in
244 coop-defs.h.
245
246 * scmconfig.h.in: .detarenegeR
247
248 * iselect.c, threads.c: Doc fixes.
249
250 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
251
252 * Makefile.in: Regenerated with a patched automake, to get
253 dependency generation right when using EGCS.
254
255 * inet_aton.c (inet_aton): Add prototype, to remove compiler
256 warning. (Thanks to Robert Pluim.)
257
258 * inet_aton.c (inet_aton): Reassure the compiler that the
259 arguments to the <ctype.h> macros are all unsigned characters, not
260 signed characters.
261
262 1998-10-03 <jimb@savonarola.red-bean.com>
263
264 Getting rid of more warnings...
265 * iselect.c: Test for MISSING_BZERO_DECL, not DECLARE_BZERO; see
266 today's change to ../configure.in.
267 * scmsigs.c: Test for MISSING_USLEEP_DECL, not DECLARE_USLEEP.
268 * scmconfig.h.in: Regenertaded.de.,.__
269 * stime.c (strptime): Declare this, #ifdef MISSING_STRPTIME_DECL.
270 (scm_localtime, scm_mktime): Use a const char * to manipulate the
271 time zone name.
272
273 * readline.c: Doc fix.
274 (rl_cleanup_after_signal, rl_free_line_state): Make these static.
275 * readline.h (scm_filename_completion_function): Add prototype.
276 (scm_init_readline): Make this into a prototype.
277
278 * readline.c (scm_filename_completion_function): Use SCM_PROC to
279 declare this, instead of calling scm_make_subr manually.
280
281 1998-10-02 <jimb@savonarola.red-bean.com>
282
283 * readline.h (scm_init_readline): Add prototype for this.
284 (scm_init_readline): Make this a real prototype.
285
286 1998-09-30 Jim Blandy <jimb@zwingli.cygnus.com>
287
288 Warning fixes from Maciej Stachowiak:
289 * backtrace.h (scm_display_application, scm_backtrace): Add
290 prototypes.
291 * debug.c (scm_m_start_stack): Make this function static.
292 * fluids.h (scm_fluid_p): Add prototype.
293 * procprop.c (scm_i_procedure_arity): Make this function static.
294 * regex-posix.c (scm_regexp_error_msg): Make this function static.
295 * regex-posix.h (scm_init_regex_posix): Use prototype, not K&R decl.
296 * root.h (scm_dynamic_root): Add external prototype.
297 * scmsigs.h (scm_usleep): Add external prototype.
298 * script.h (scm_init_script): Use prototype, not K&R decl.
299 * stacks.h (scm_stack_id): Add external prototype.
300 * symbols.h (scm_sysintern0_no_module_lookup): Add external prototype.
301
302 1998-09-30 Mark Galassi <rosalia@cygnus.com>
303
304 * gh.h: took out the definitions of vset and vref, since they are
305 replaced by the proper vector routines that correspond to the R4RS
306 procedures.
307
308 1998-09-29 Jim Blandy <jimb@totoro.red-bean.com>
309
310 * snarf.h (SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT): New macros;
311 these are analogous to SCM_VCELL and SCM_GLOBAL_VCELL but take a
312 third argument, a C expression that should result in a SCM value,
313 which is used to initialize the variable. Reimplemented
314 SCM_CONST_LONG in terms of SCM_VCELL_INIT. (Thanks to Maciej
315 Stachowiak.)
316
317 * version.h (scm_libguile_config_stamp): Add prototype.
318 (From Maciej Stachowiak.)
319
320 1998-09-26 Jim Blandy <jimb@zwingli.cygnus.com>
321
322 * eval.c (scm_force): Assert that x is SCM_NIMP to fix segv when
323 (force 9) is tried. (Thanks to Karl M. Hegbloom.)
324
325 1998-09-06 Jim Blandy <jimb@zwingli.cygnus.com>
326
327 * print.c (scm_iprin1): Rather than having one i, and using it in
328 several places, declare a fresh i local to each block where it is
329 used, and give it a signedness appropriate to its use in each case.
330 (scm_iprlist): Same.
331
332 * print.c (scm_iprin1): Add cast to avoid unsigned/signed
333 comparison warnings.
334
335 * print.c (ENTER_NESTED_DATA): Make i an unsigned long, to avoid
336 signed/unsigned clashes.
337
338 * posix.h (scm_tmpnam): Added prototype.
339
340 * objects.h (scm_set_object_procedure_x, scm_make_class_object,
341 scm_make_subclass_object): Add external prototypes.
342
343 * numbers.c (scm_mkbig): Add cast, and note that signed/unsigned
344 comparison is okay here.
345
346 * numbers.c (scm_istr2int): Add cast; len is known to be positive.
347
348 * numbers.c (scm_bigcomp): Clarify logic, and avoid relying on the
349 (true, but confusing) fact that -1 == ((unsigned) 0 - 1).
350
351 * numbers.c (scm_adjbig): Make nsiz an scm_sizet, to avoid mixing
352 signed/unsigned.
353
354 * load.c (swap_port): Make this function static.
355
356 * load.c (scm_search_path): Make max_path_len and max_ext_len
357 unsigned, since they're compared against string sizes.
358
359 * load.c (init_build_info): Make i unsigned.
360
361 * ioext.h (scm_read_line): Add prototype.
362
363 * hashtab.c (scm_hash_fn_get_handle, scm_hash_fn_create_handle_x,
364 scm_hash_fn_remove_x): Make hash bucket index local variable k
365 unsigned. Use scm_ulong2num to pass it to SCM_ASSERT as
366 accurately as possible.
367
368 * gh_data.c (gh_set_substr): Add casts to avoid signed/unsigned
369 comparisons, and range checking to make sure those casts are
370 harmless.
371
372 * stackchk.h (SCM_STACK_OVERFLOW_P): Change definition to avoid
373 signed/unsigned comparisons.
374
375 * smob.c (scm_numsmob): Make this an int, not an scm_sizet, to
376 avoid signed/unsigned comparisons.
377 * smob.h (scm_numsmob): Change extern declaration to match.
378
379 * ports.c (scm_numptob): Make this an int, not an scm_sizet, to
380 avoid signed/unsigned comparisons.
381 * ports.h (scm_numptob): Change extern declaration to match.
382 (scm_current_load_port, scm_set_port_line_x,
383 scm_set_port_column_x): New prototypes.
384
385 * gsubr.c (GSUBR_TEST): Don't #define this. Nobody's using the
386 test code, and it causes warnings.
387
388 * gh.h (gh_int2scmb, gh_uniform_vector_length,
389 gh_uniform_vector_ref): Added prototypes.
390
391 * Makefile.am (libguile_la_SOURCES): Include Scheme-level
392 debugging support unconditionally. That's backtrace.c, stack.c,
393 debug.c, and srcprop.c.
394 (EXTRA_libguile_la_SOURCES): Omit those from here.
395 * Makefile.in: Regenerated.
396
397 1998-08-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
398
399 * options.c (scm_options): Bugfix: Allow empty list of options!
400
401 * debug.c, debug.h (scm_single_step): Removed.
402 (scm_with_traps): New procedure. This procedure could easily be
403 written in Scheme but needs to be highly optimized.
404
405 * eval.h, eval.c: New evaluator trap flag: SCM_TRAPS_P.
406
407 * eval.c (SCM_CEVAL, SCM_APPLY): Removed resetting of trap flags.
408 Check SCM_TRAPS_P before trapping.
409
410 1998-07-30 Jim Blandy <jimb@zwingli.cygnus.com>
411
412 Changes to avoid signed/unsigned comparison warnings.
413 * gc.c (scm_mtrigger, scm_heap_size): Make these unsigned longs.
414 (scm_gc_sweep): Make n and j local to the blocks they're used in,
415 so they can have appropriate types for each application. Make i
416 signed. Use initializers in some spots. I'll probably pay for
417 all this tweaking.
418 (scm_must_malloc, scm_must_realloc): Use scm_sizet for size args.
419 (scm_must_realloc): Make nm unsigned.
420 (init_heap_seg): Make new_seg_index and n_new_objects signed.
421 (scm_init_storage): Use prototype-style definition, and make the
422 argument unsigned.
423 * gc.h (scm_heap_size, scm_mtrigger, scm_must_malloc,
424 scm_must_realloc, scm_init_storage): Adjust prototype accordingly.
425
426 * filesys.c (scm_readlink): Make local vars rv and size ints, to
427 avoid signed/unsigned comparison warnings, and because the return
428 value of readlink may be -1. Don't bother casting the third
429 argument to readlink.
430
431 * filesys.c (scm_dirname, scm_basename): Move these to their own
432 page, at the end of the file.
433 * filesys.h (scm_dirname, scm_basename): Add prototypes for these.
434
435 * eval.h (scm_eval_options_interface): Add external prototype for this.
436 * eval.c (scm_eval_options_interface): Use prototype-style def'n.
437
438 * eval.c (scm_lookupcar1): Make this static.
439
440 * dynl.h (scm_registered_modules, scm_clear_registered_modules):
441 Make these prototype declarations, not K&R-style.
442
443 * chars.c (scm_tables_prehistory): Add cast, to remove signed/
444 unsigned comparison warning.
445
446 * appinit.c: File removed. It had a single function in it, empty,
447 whose reason for existence is explained in no documentation or
448 comment. I think it's there as a default for some Tcl-style
449 initialization, but Tcl abandoned that approach a while ago.
450 * Makefile.am (libguile_la_SOURCES): Remove appinit.c.
451 (BUILT_SOURCES): Remove appinit.x.
452 * Makefile.in: Regenerated.
453
454 1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
455
456 * Makefile.in: Regenerated using the last public version of
457 automake, not the hacked Cygnus version.
458
459 1998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
460
461 Remove Totoro kludge.
462 * Makefile.in, scmconfig.h.in: Regenerated.
463 * init.c, readline.c: Don't check if TOTORO is #defined.
464
465 1998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
466
467 * Makefile.am: Adjust for new thread configuration system.
468 (INCLUDES): Include the value of THREAD_CPPFLAGS.
469 (guile_LDADD, check_ldadd): THREAD_LIBS_LOCAL has been renamed from
470 THREAD_LIBS.
471 (THREAD_LIBS): Definition deleted; automake will generate such
472 things automatically.
473 * Makefile.in: Regenerated.
474
475 1998-07-23 Jim Blandy <jimb@zwingli.cygnus.com>
476
477 Simplify smob and port marking; set the mark bit in the generic
478 marking code, and make marker routines only responsible for
479 turning up outgoing pointers.
480 * gc.c (scm_gc_mark): Set the mark bit on ports and smobs here,
481 before calling the marking function. Don't call the marking
482 function if it's zero.
483 * markers.c (scm_mark0): Just return #f. This function isn't
484 necessary at all now, but it's harmless to call it. We'll leave
485 it in so other folks' code doesn't croak at link time.
486 (scm_markcdr): Don't call SCM_SETGC8MARK.
487 * async.c (mark_async): Don't call SCM_SETGC8MARK.
488 * dynl.c (mark_dynl_obj): Same.
489 * root.c (mark_root): Same.
490 * srcprop.c (marksrcprops): Same.
491 * unif.c (markra): Same.
492 * variable.c (scm_markvar): Same.
493 * ports.c (scm_markstream): Same.
494 (void_port_ptob): Specify zero for our marking function.
495 * debug.c (debugobjsmob): Same.
496 * dynwind.c (guardsmob): Same.
497 * filesys.c (dir_smob): Same.
498 * fluids.c (fluid_smob): Same.
499 * fports.c (scm_fptob, scm_pipob): Same.
500 * mallocs.c (mallocsmob): Same.
501 * regex-posix.c (regex_t_smob): Same.
502 * smob.c (freecell, flob, bigob): Same.
503 * threads.c (thread_smob, mutex_smob, condvar_smob): Same.
504 * throw.c (jbsmob, lazy_catch_funs): Same.
505
506 1998-07-17 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
507
508 * eval.c (scm_copy_tree): Reverted last change: `eval' uses
509 scm_copy_tree on code in order not to let memoized code to leak
510 out. Thus, scm_copy_tree needs to copy vectors as well since
511 quasiquote can introduce evaluated code also inside vector
512 constants.
513
514 1998-07-17 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
515
516 * eval.c (scm_copy_tree): Removed ability to copy vectors.
517
518 * gh_data.c, gh.h (gh_ints2scm, gh_longs2ivect,
519 gh_ulongs2uvect): New procedures. (Complements gh_doubles2scm and
520 gh_doubles2dvect.)
521
522 * unif.c: Say that ivect and uvect are of type signed and unsigned
523 long instead of int in commentary so that it correctly describes
524 the implementation.
525
526 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
527
528 * stime.c: Removed declaration of strptime. (It should be
529 declared by the system headers. If it turns out that some systems
530 don't, we'll handle that then.) (Thanks to Greg Troxel.)
531
532 * stime.h: Renamed TIMEH --> STIMEH
533
534 * backtrace.c (scm_display_error, scm_display_backtrace): In order
535 to increase portability, don't use structure assignment.
536 (Thanks to Nicolas Neuss.)
537
538 * iselect.c: Use LONG_MAX instead of ULONG_MAX for increased
539 portability.
540 (finalize_fd_sets): Added empty statement after last case label.
541 (Thanks to Nicolas Neuss.)
542
543 * gc.c (scm_igc): Changed //-comment into /*-comment. (Thanks to
544 Nicolas Neuss.)
545
546 Sat Jul 11 22:08:21 1998 Mikael Djurfeldt <mdj@totoro.red-bean.com>
547
548 * init.c, readline.c: OK, I won't have these readline.x bug
549 reports anymore. We've had them since April. The current reason
550 is a completely unintelligible failure of totoro.red-bean.com to
551 do the test for rl_getc_function in libreadline correctly. This
552 kludge overrides the test if we're on totoro so that the snapshot
553 generation process can work.
554
555 * readline.c: Define a strdup replacement if not existent on system.
556
557 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
558
559 * vectors.c, vectors.h (scm_make_vector): Removed third argument.
560 This change makes scm_make_vector R5RS compatible. We cannot keep
561 the third argument since people want to be able to deduce the form
562 of the C function call only by looking at R5RS. (At the same time
563 we have removed some unnecessary complexity!)
564
565 * eval.c, filesys.c, fluids.c, gc.c, gh_data.c, init.c, kw.c,
566 net_db.c, posix.c, print.c, regex-posix.c, scmsigs.c, socket.c,
567 stime.c, symbols.c, unif.c, vectors.c, weaks.c: Removed third
568 argument in call to scm_make_vector.
569
570 1998-07-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
571
572 * numbers.h (SCM_NUM2DBL): New macro. Complements SCM_NUMBERP.
573 This macro is useful in applications.
574
575 1998-06-21 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
576
577 * load.c (scm_internal_parse_path): Renamed from scm_parse_path.
578 (scm_parse_path, scm_search_path): New Scheme level procedures.
579
580 * load.h (scm_internal_parse_path, scm_parse_path,
581 scm_search_path): Declared.
582
583 1998-06-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
584
585 * filesys.c (dirname, basename): New procedures.
586
587 * init.c (scm_boot_guile_1): Removed condition around
588 scm_init_options.
589
590 * dynwind.c: #include "genio.h"; #include "smob.h"; Implemented a
591 new data type (guards) for representation of C level guards and
592 data on the wind chain.
593 (scm_internal_dynamic_wind): New function.
594
595 * dynwind.h: Declare scm_internal_dynamic_wind.
596
597 * root.h (scm_root_state): Added scm_cur_loadp.
598
599 * root.c (mark_root): Added comment about cur_loadp.
600
601 * load.c: #include "dynwind.h";
602 (scm_primitive_load): Use scm_inner_dynamic_wind to update
603 scm_cur_loadp.
604
605 * init.c (scm_init_standard_ports): Initialize scm_def_loadp.
606
607 * ports.c (current-load-port): New procedure.
608
609 1998-06-09 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
610
611 * ioext.c (scm_isatty_p): Accept any kind of data as argument. If
612 not a tty, return #f.
613
614 * regex-posix.c (scm_regexp_exec): Free malloced memory. (Thanks
615 to Julian Satchell and Roland Kaufmann.)
616
617 * gh.h (gh_memv, gh_member): Fixed typos in macro definitions.
618 (gh_write): Added declaration. (Thanks to Eiichi Takamori.)
619
620 1998-06-07 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
621
622 * debug.h, debug.c (scm_start_stack): New function. Implements
623 the guts of old scm_m_start_stack.
624
625 * debug.c (scm_m_start_stack): Use scm_start_stack.
626
627 * init.c (scm_start_stack, scm_restart_stack): Renamed to
628 start_stack and restart_stack. (These have static scope.)
629
630 1998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
631
632 * readline.c (rl_cleanup_after_signals, rl_free_line_state): New
633 readline functions to come in release 2.3. (Thanks to Chet
634 Ramey.)
635 (handle_errors): Use the above functions.
636
637 1998-05-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
638
639 * readline.c: Improvements for readline support: Handle errors
640 better; Implement before-read-hook.
641
642 1998-05-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
643
644 * init.c (scm_boot_guile_1), readline.c: Test for
645 HAVE_RL_GETC_FUNCTION instead of HAVE_LIBREADLINE. (Need to
646 assure that we have version >= 2.1.)
647
648 1998-05-11 Mikael Djurfeldt <mdj@kenneth>
649
650 * readline.c (scm_readline): Defer interrupts while we're calling
651 readline.
652
653 * readline.c (scm_add_history): Bugfix: Do strdup before giving
654 away the string to add_history.
655 (completion_function): Do completion for readline. (Thanks to
656 Andrew Archibald.)
657 (scm_filename_completion_function): New procedure: Filename
658 completer.
659 (current_input_getc): New function. Use this one instead of
660 standard getc from readline.
661
662 * throw.c, throw.h (scm_handle_by_throw): New function: This
663 handler throws errors to next handler on the dynwind chain.
664
665 1998-05-09 Mikael Djurfeldt <mdj@kenneth>
666
667 * scmsigs.c (scm_usleep): Bugfix: Don't define j if it isn't
668 used.
669
670 1998-05-03 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
671
672 * procprop.c (scm_i_procedure_arity): New function. Returns arity
673 of procedure.
674 (scm_procedure_properties): Modified to return arity together with
675 other properties.
676 (scm_procedure_property): Added the read-only property `arity'.
677 (scm_set_procedure_property_x): It is an error to set the `arity'
678 property.
679
680 * gsubr.h, gsubr.c: Moved macros from gsubr.c to gsubr.h and added
681 prefix SCM_; Made f_gsubr_apply global and added prefix scm_.
682
683 * procprop.h (scm_sym_arity): New symbol.
684
685 * objects.c (scm_set_object_procedure_x): New procedure: Use this
686 to set the dispatch procedure of an operator or entity object.
687
688 * objects.h (SCM_METACLASS_OPERATOR_LAYOUT, SCM_ENTITY_LAYOUT):
689 Made procedure slots read-only.
690
691 * eval.c (SCM_CEVAL): Moved scm_tc7_contin case above
692 scm_tcs_cons_gloc case in zero args switch; Fixed args
693 construction for operators in scm_tcs_cons_gloc case in two args
694 switch.
695
696 1998-05-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
697
698 * fluids.c: Removed use of assert.h (in order to avoid
699 __eprintf).
700
701 * Makefile.am (libguile_la_LDFLAGS): Added -export-dynamic.
702
703 * dynl.c (maybe_drag_in_eprintf): Disabled through #ifdef 0.
704
705 * eval.c (SCM_CEVAL): Do more thorough argument checking. This
706 change makes the evaluator safer at the cost of evaluation speed.
707 It handles the case when the user has added a non-immediate
708 improper end of the application form, e.g., `(+ 0 . x)'.
709 (Earlier only cases like `(+ 0 . 0)' were handled.) I've tried to
710 minimize the extra cost as much as possible. The new code is
711 enclosed in #ifdef CAUTIOUS regions. NOTE: This also fixes the
712 problem with structs planted directly in the code (e.g. by a
713 macro). This no longer causes segmentation fault. (Thanks to
714 Eric Hanchrow.)
715
716 * eval.c, eval.h (scm_eval_args, scm_deval_args): Take one extra
717 arg `proc' in order to be able to throw errors; New argument
718 checking code.
719
720 * Removed extra #include "debug.h"
721
722 1998-04-25 Mikael Djurfeldt <mdj@kenneth>
723
724 * scmsigs.c: Declare usleep as returning void on some systems.
725 (scm_usleep): Return SCM_INUM0 on those systems. (Thanks to Julian
726 Satchell.)
727
728 * coop.c (usleep): Return void on some systems.
729
730 1998-04-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
731
732 * Makefile.am (libguile_la_LDFLAGS): Removed redundant -rpath.
733
734 * coop.c: Changed return type of usleep to int.
735
736 * scmsigs.c (scm_usleep): New procedure; Declare usleep if it
737 isn't found in the OS.
738
739 * iselect.h: #define scm_internal_select select if GUILE_ISELECT
740 isn't enabled. (Thought that I had made this change ages ago...)
741
742 * iselect.c: Declare bzero if not defined by OS.
743
744 1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
745
746 * dynl.c (scm_must_free_argv): Fixed memory leak due to negated
747 condition. (Thanks to John Tobey.)
748
749 * continuations.c (scm_make_cont), debug.c (scm_make_memoized,
750 scm_make_debugobj), eval.c (scm_makprom): SCM_DEFER/ALLOW_INTS -->
751 A section.
752
753 * __scm.h: Start the long-term project of moving to POSIX threads.
754 Phase 1: Classification of all critical sections.
755 (SCM_ENTER_A_SECTION, SCM_EXIT_A_SECTION): New macros: Delimiters
756 for A sections. (See comments in __scm.h for details.)
757
758 * dynl.c: Only check that HAVE_DLOPEN is defined before loading
759 dynl-dl.c; Test on HAVE_LIBDLD instead of HAVE_DLD.
760
761 1998-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
762
763 * Makefile.am (BUILT_SOURCES): Added cpp_err_symbols.c,
764 cpp_sig_symbols.c, libpath.h and versiondat.h to BUILT_SOURCES
765 (libpath.h, versiondat.h): Replaced dependency on Makefile with
766 dependencies on $(srcdir)/Makefile.in
767 $(top_builddir)/config.status in order to avoid circularity.
768
769 * script.c (scm_compile_shell_switches): Bugfix: Don't discount i
770 from argc if argc was 0 initially.
771
772 * Makefile.am (Makefile.am): Replaced THREAD_LIBS --> GUILE_LIBS
773 in generation of libpath.h.
774
775 1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
776
777 * Makefile.am (libguile_la_LDFLAGS): Bumped version number of
778 libguile from 2 to 3.
779
780 1998-04-14 Mikael Djurfeldt <mdj@nada.kth.se>
781
782 * Makefile.am: Added .x-dependencies to variable BUILT_SOURCES.
783
784 1998-04-13 Mikael Djurfeldt <mdj@kenneth>
785
786 * ports.c (scm_port_line, scm_set_port_line_x, scm_port_column,
787 scm_set_port_column_x, scm_port_filename,
788 scm_set_port_filename_x): Removed optional arguments. Added
789 proper argument checking.
790
791 * eval.c, eval.h, coop.c (scm_eval_stack, SCM_EVAL_STACK): Measure
792 stack size in machine words.
793
794 * unif.c (scm_uniform_vector_ref, scm_cvref, scm_array_set_x,
795 rapr1): Use SCM_UCHARS instead of SCM_CHARS for strings. (Thanks
796 to Ole Myren Röhne.)
797
798 1998-04-12 Mikael Djurfeldt <mdj@kenneth>
799
800 * socket.c: Check for HAVE_UNIX_DOMAIN_SOCKETS instead of
801 UNIX_DOMAIN_SOCKETS. (Thanks to Lauri Alanko.)
802
803 * gc.c (scm_gc_sweep): Count cells correctly. (Thanks to Ben
804 Caradoc-Davies.)
805
806 * eval.c (SCM_CEVAL, SCM_APPLY): In SCM_IM_APPLY and in the
807 procedure apply: Copy argument lists before pushing them unto the
808 environment so that the environment won't get mutated due to
809 manipulation of procedure arguments. This should perhaps be
810 regarded as a temporary solution until someone finds a more
811 efficient one. (Thanks to Maciej Stachowiak.)
812
813 1998-04-10 Mikael Djurfeldt <mdj@kenneth>
814
815 * script.c (scm_compile_shell_switches): Use "guile" as default
816 zero arg if argc is NULL.
817
818 1998-04-02 Mikael Djurfeldt <mdj@nada.kth.se>
819
820 * script.c (scm_compile_shell_switches): Allow NULL argv if argc
821 is zero. (Thanks to Dirk Herrmann.)
822
823 1998-03-30 Mikael Djurfeldt <mdj@nada.kth.se>
824
825 * ports.c (scm_add_to_port_table): First line is now line 0
826 (was 1). (Interface changed according to suggestion by Per
827 Bothner.)
828
829 * backtrace.c (display_header): Add 1 to line and column numbers
830 when presenting them to the user.
831
832 * eval.h, eval.c, debug.h, debug.c (scm_evaluator_traps): Moved
833 from debug.c --> eval.c
834
835 * eval.h, eval.c (scm_eval_options_interface): New options
836 interface.
837 (SCM_EVAL_STACK): New option: Size of newly created stacks,
838 i.e. stacks for new threads.
839
840 * coop.c (COOP_STKSIZE): Use SCM_EVAL_STACK.
841
842 * eval.c (unsafe_setjmp): Removed with #if 0.
843
844 * gsubr.c (scm_gsubr_apply): Added dummy return to avoid compiler
845 warning.
846
847 * eval.c, numbers.c, unif.c, srcprop.c: Added a few curly braces
848 to avoid compiler warnings.
849
850 * dynl-dl.c (sysdep_dynl_func): Only define usymb if needed.
851
852 1998-03-28 Mikael Djurfeldt <mdj@nada.kth.se>
853
854 * throw.c (handler_message): Print message on current error port
855 instead of default error port. (Thanks to Maciej Stachowiak.)
856
857 Mon Mar 2 21:35:02 1998 Gary Houston <ghouston@actrix.gen.nz>
858
859 * ports.c (scm_add_to_port_table): allocate in units of
860 struct scm_port_table *, not struct scm_port_table.
861 * posix.c (scm_close_pipe): remove the port from the port table
862 and mark as closed.
863 Thanks to Rob Engle for both fixes.
864
865 1998-02-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
866
867 * iselect.h, iselect.c, coop.c, coop-threads.c, coop-threads.h,
868 coop-defs.h, throw.c, backtrace.c: Added new copyright year 1998.
869
870 1998-02-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
871
872 * throw.h: Removed jmpbuf arg in scm_catch_body_t.
873
874 * backtrace.c (display_error_body, display_backtrace_body),
875 coop-threads.c (scheme_body_bootstrip, c_body_bootstrip),
876 gh_eval.c (eval_str_wrapper, eval_file_wrapper), init.c
877 (invoke_main_func), root.c (cwdr_body), throw.c (cwss_body,
878 scm_body_thunk, hbpca_body): Removed the second jmpbuf arg on body
879 functions.
880
881 * throw.c (scm_internal_catch, scm_internal_lazy_catch): Bodies
882 don't receive the jmpbuf arg anylonger.
883 (scm_catch): Don't accept a #f tag.
884 (scm_throw): Check that key is a symbol.
885 (scm_ithrow): Don't take a jmpbuf as key. Don't check key arg.
886
887 Fri Jan 30 22:28:07 1998 Mikael Djurfeldt <mdj@kenneth>
888
889 * async.c (async_pending): Removed declaration.
890
891 1998-01-30 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
892
893 * dynwind.c (scm_wind_chain): New debug function.
894
895 * coop-threads.c (scheme_launch_data, scheme_body_bootstrip,
896 scheme_handler_bootstrip, scheme_launch_thread, c_launch_data,
897 c_body_bootstrip, c_handler_bootstrip, c_launch_thread): Add an
898 extra layer of functions around the body and handler of a thread.
899 This extra layer makes sure that the handler is called in the
900 dynamic context of the surround (= empty dynwind list), but under
901 the *dynamic root* of the body. We can not use the dynamic root
902 of the surround since that root belongs to another thread => stack
903 is not handled correctly. It may seem ugly to use this extra
904 layer, but the extra cost in terms of execution time is really
905 negligible compared to the total amount of time required to create
906 a thread, and it would reduce maintainability to duplicate the
907 crucial and complicated steps performed by cwdr.
908
909 * __scm.h (SCM_ASYNC_TICK): Removed thread switching code.
910 (SCM_ALLOW_INTS): Added thread switching code before interrupts
911 get re-enabled. The important effect of this is that interrupts
912 are blocked during thread switching so that thread data structures
913 don't risk getting messed up by an unfortunate signal.
914 (SCM_REDEFER_INTS, SCM_REALLOW_INTS): It turned out that gcc-2.8.0
915 seems to do more aggressive optimization which actually move
916 instructions around in these macros in a fatal way. Therefore:
917 Introduce Anthony's SCM_FENCE macro! (And I who thought he was
918 just superstitious...)
919 (SCM_TICK): Maybe do a context switch and take care of asyncs.
920 This macro should be used instead of SCM_ASYNC_TICK since the
921 latter doesn't do context switches any more.
922
923 * eval.c (scm_eval, scm_deval), eq.c (scm_equal_p): Use SCM_TICK
924 instead of SCM_ASYNC_TICK.
925
926 * coop.c, iselect.c: Since thread switches are now performed with
927 interrupts masked, we can't use the old mechanism of delivering
928 signals immediately when they arrive. Signals must instead be
929 delivered when the asyncs run *after* the end of the critical
930 section in scm_internal_select. But this also means after context
931 switch so that the signal will be delivered to a different thread.
932 To avoid this, I have changed the protocol of
933 coop_wait_for_runnable_thread and friends so that they are allowed
934 to return the original thread. So, if a signal arrives during
935 scm_internal_select, we won't any longer be forced do a context
936 switch, but can remain in the same thread and deliver the signal
937 to it.
938
939 * async.c, async.h (asyncs_pending): Renamed asyncs_pending -->
940 scm_asyncs_pending and made it global.
941
942 * iselect.c: Small fixes.
943
944 * coop.c (coop_mutex_init, coop_mutex_lock, coop_mutex_unlock,
945 coop_condition_variable_init, coop_condition_variable_wait,
946 coop_condition_variable_signal): Changed return type from `void'
947 to `int'. This is to adhere closer to the pthreads interface.
948 This, in turn, is part of an attempt to provide C versions of the
949 mutex and condition variable primitives which can be part of a
950 frontend to COOP or pthreads.
951
952 * coop.c (coop_mutex_destroy, coop_condition_variable_wait_mutex,
953 coop_condition_variable_destroy): New functions.
954
955 * coop-threads.c (scm_wait_condition_variable): Use
956 coop_condition_variable_wait_mutex.
957
958 * coop-threads.h, coop-defs.h (coop_q_t, coop_m, coop_c):
959 Definitions moved to coop-defs.h.
960
961 * coop-defs.h (scm_mutex_init, scm_mutex_lock, scm_mutex_unlock,
962 scm_mutex_destroy, scm_cond_init, scm_cond_wait, scm_cond_signal,
963 scm_cond_destroy): New C interface to mutecis and cond vars.
964
965 1998-01-24 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
966
967 * error.c (scm_wta): Added support for SCM_ARG6 and SCM_ARG7.
968
969 * iselect.c: Now several threads can wait on the same file
970 descriptor. The behaviour is compatible with OS select: All
971 threads waiting for the fd return with the same status.
972
973 1998-01-23 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
974
975 * coop-threads.c, threads.h (scm_spawn_thread): New function.
976 Can spawn a thread from application C code.
977
978 1998-01-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
979
980 * gh.h, gh_data.c (gh_doubles2scm, gh_doubles2dvect,
981 gh_doubles2scm): New functions.
982
983 1998-01-15 Mark Galassi <rosalia@nis.lanl.gov>
984
985 * gh_eval.c (gh_eval_str): cleanup -- threw out the old
986 commented-out version of gh_eval_str()
987
988 Sun Jan 4 02:23:36 1998 Gary Houston <ghouston@actrix.gen.nz>
989
990 * socket.c (scm_bind): free soka after use.
991
992 Sat Jan 3 20:55:07 1998 Gary Houston <ghouston@actrix.gen.nz>
993
994 * stime.c (tzvar): new variable.
995 (setzone, restorezone, scm_localtime, scm_mktime, scm_strftime):
996 avoid memory leaks when allocating.
997
998 1998-01-03 Jim Blandy <jimb@totoro.red-bean.com>
999
1000 * iselect.h: Some systems require <sys/types.h> to get the FD_SET
1001 macro definitions.
1002
1003 * gc.c, tags.h: Doc fixes.
1004
1005 1998-01-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1006
1007 * eval.c (macro-eval!): Removed. This function was a design bug.
1008 It allowed memoized code to leak out to the scheme level. Most
1009 things that you could do with `macro-eval!' can be done with
1010 `local-eval'.
1011
1012 1997-12-20 Tim Pierce <twp@skepsis.com>
1013
1014 * fports.c (scm_pipob): Use scm_generic_fgets for line i/o, since
1015 scm_fgets now depends on ftell(3) to know how many bytes were
1016 read. Sigh.
1017
1018 1997-12-15 Tim Pierce <twp@skepsis.com>
1019
1020 * gh_data.c (gh_scm2newstr, gh_get_substr): Use RO macros for
1021 dealing with strings.
1022
1023 1997-12-13 Tim Pierce <twp@skepsis.com>
1024
1025 Make %read-line more suitable for implementing read-line efficiently.
1026 * ioext.c (scm_read_line): Strip the terminating newline from a
1027 string, and return a cons of the string and its terminator.
1028
1029 * fports.c, fports.h (scm_fgets): Add `len' argument. The length
1030 of the string that is read is stored in this memory location.
1031 * ports.c, ports.h (scm_generic_fgets, fgets_void_port): Same.
1032 * genio.c, genio.h (scm_do_read_line): Update caller.
1033 * ports.h (scm_ptobfuns): Update typedef.
1034 * fports.c (scm_fptob, scm_pipob): Update struct.
1035
1036 1997-12-08 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1037
1038 * filesys.c (set_element): Return file descriptor.
1039 (fill_select_type): Return the highest file descriptor.
1040 (scm_select): Tell select about the highest file descriptor. On
1041 some systems the SELECT_SET_SIZE can be as much as 128 bytes.
1042 Therefore the extra overhead for calculating the maximum fd seems
1043 to be more than compensated. Is this correct? In any case,
1044 scm_internal_select will be much faster with this info.
1045 (scm_select, fill_select_type, set_element): Don't accept any kind
1046 of object in the file descriptor list or vector.
1047
1048 1997-12-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1049
1050 * iselect.c (finalize_fd_sets): Bugfix.
1051
1052 1997-12-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1053
1054 * filesys.c (scm_select): Don't use SCM_DEFER_INTS/SCM_ALLOW_INTS
1055 when using scm_internal_select (since we might switch to another
1056 thread).
1057
1058 Sun Dec 7 01:43:56 1997 Gary Houston <ghouston@actrix.gen.nz>
1059
1060 * simpos.c (scm_system): always define: use sysmissing if not
1061 available. Check for HAVE_SYSTEM instead of _Windows (does
1062 Windows lack system or does it have an unusable one?).
1063 Check for error conditions -1 and 127. Use SCM_DEFER_INTS.
1064 Let the argument be optional: if not supplied, call system(NULL).
1065
1066 * ports.c (scm_close_port): relax the type check from OPPORTP to
1067 PORTP; closing a closed port is allowed.
1068
1069 1997-12-04 Tim Pierce <twp@ppp39.Nantucket.net>
1070
1071 * fports.c (scm_fgets): Return if the last char in a chunk is
1072 newline. When fgets returns a string whose length is `size-1', it
1073 is ambiguous whether a whole line was retrieved, so we must check
1074 explicitly whether a line terminator is present.
1075
1076 1997-12-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1077
1078 * print.h (SCM_COERCE_OUTPORT): Check that the object is a pair
1079 before taking the CDR. (Thanks to Harald Meland.)
1080
1081 * filesys.c (scm_stat): Slightly optimized.
1082
1083 Wed Dec 3 12:23:06 1997 Jim Blandy <jimb@totoro.red-bean.com>
1084
1085 * ports.c (scm_close_port): Make sure the port is open before
1086 trying to close it.
1087
1088 * guile-snarf.in: Pass args through to gcc in a way that preserves
1089 whitespace boundaries. (Thanks to Greg Badros.)
1090
1091 1997-12-02 Tim Pierce <twp@skepsis.com>
1092
1093 * stacks.c (scm_frame_procedure): Reverse the logic in the return
1094 statement. (Thanks to Doug Evans for pointing this out.)
1095
1096 1997-12-01 Tim Pierce <twp@skepsis.com>
1097
1098 * scmconfig.h.in: Regenerated for USCORE change in ../acconfig.h.
1099
1100 Sun Nov 30 11:29:18 1997 Mikael Djurfeldt <mdj@kenneth>
1101
1102 * coop-defs.h (struct coop_t): Renamed errno --> _errno to prevent
1103 errno macro expansion of this field name. (errno is a C
1104 preprocessor macro on some systems.)
1105
1106 1997-11-29 Tim Pierce <twp@skepsis.com>
1107
1108 * iselect.c: Doc fix.
1109
1110 Sat Nov 29 01:16:53 1997 Mikael Djurfeldt <mdj@kenneth>
1111
1112 * init.c (scm_start_stack): Removed initialization of
1113 scm_the_last_stack_var.
1114
1115 * backtrace.h: Declare scm_the_last_stack_var.
1116
1117 * backtrace.c: Define scm_the_last_stack_var.
1118
1119 * root.c (mark_root): Don't mark the_last_stack_var.
1120
1121 * root.h (scm_root_state): Removed the_last_stack_var.
1122
1123 * throw.c: Added #include "fluids.h"
1124 (ss_handler): `the-last-stack' is now a fluid.
1125
1126 * (backtrace.h, backtrace.c, throw.c): Renamed the_last_stack_var
1127 --> the_last_stack_fluid.
1128
1129 * backtrace.c: Added #include "fluids.h"
1130 (scm_init_backtrace): Initialize `the-last-stack' to a fluid.
1131 (scm_backtrace): `the-last-stack' is now a fluid.
1132
1133 * init.c (scm_boot_guile_1): Moved call to scm_init_backtrace
1134 after scm_init_fluids.
1135
1136 1997-11-28 Tim Pierce <twp@skepsis.com>
1137
1138 * iselect.c: #ifdef USE_THREADS around thread-related includes.
1139
1140 * dynl-dl.c (sysdep_dynl_func): Check both USCORE and
1141 DLSYM_ADDS_USCORE to decide whether to add an underscore.
1142
1143 1997-11-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1144
1145 * iselect.c (coop_next_runnable_thread,
1146 coop_wait_for_runnable_thread): Disable interrupts so that no
1147 async is executed before a potential error_revive.
1148 (scm_internal_select): Disable interrupts during the parts of the
1149 code which manipulate the sleep queue and the file descriptors.
1150
1151 1997-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1152
1153 * Makefile.am: Added iselect.c and iselect.h.
1154
1155 * coop.c (coop_qinit): Initialize fields used by
1156 scm_internal_select.
1157 (coop_qget, coop_qget, coop_tmp_queue): Made global.
1158 (coop_next_runnable_thread): If GUILE_ISELECT enabled, use
1159 replacement in iselect.c.
1160 (coop_mutex_lock, coop_condition_variable_wait, coop_abort,
1161 coop_join): If GUILE_ISELECT enabled, use
1162 coop_wait_for_runnable_thread instead of
1163 coop_next_runnable_thread.
1164 (usleep, sleep): New replacements for system functions if
1165 GUILE_ISELECT is enabled.
1166
1167 * coop-threads.h: Declare coop_wait_for_runnable_thread.
1168
1169 * coop-defs.h (coop_t): Added fields used by scm_internal_select.
1170
1171 * filesys.c: Added #include "iselect.h". Moved FD-macros to
1172 iselect.h. Implement Scheme level `select' using
1173 scm_internal_select. (See NEWS.)
1174
1175 * genio.c (scm_getc): Block with scm_internal_select. (See NEWS.)
1176
1177 * init.c: Call scm_init_iselect.
1178
1179 * iselect.h, iselect.c: New files. Implements
1180 scm_internal_select. (See NEWS.)
1181
1182 1997-11-27 Tim Pierce <twp@skepsis.com>
1183
1184 Fix a memory leak in scm_read_line and a type cast bug in the ptob.
1185 * fports.c (scm_fgets): Use malloc/free rather than scm_must_malloc
1186 and scm_must_free, since ultimately the string returned will be copied
1187 by scm_makfrom0str anyway. Also, read any characters that may have
1188 been pushed onto the port with scm_ungetc.
1189 * ports.c (scm_generic_fgets): Same as for scm_fgets.
1190 * ioext.c (scm_read_line): Free string after Guilifying it.
1191 * ports.h (scm_ptobfuns): fgets method returns a char *, not a char.
1192
1193 1997-11-26 Anthony Green <green@hoser.cygnus.com>
1194
1195 * gh_data.c (gh_set_substr): Strings can be longer than 256 bytes.
1196
1197 * gh.h: Safely wrap prototypes for c++ usage.
1198
1199 1997-11-25 Mark Galassi <rosalia@cygnus.com>
1200
1201 * gh_test_repl.c (main_prog): changed invocation of gh_repl() to
1202 gh_repl (argc, argv).
1203
1204 1997-11-24 Mark Galassi <rosalia@nis.lanl.gov>
1205
1206 * gh_init.c (gh_repl): modified gh_repl() to accept argc and argv
1207 and to invoke scm_shell().
1208 (gh_launch_pad): took out the loading of boot-9.scm from here,
1209 since it is probably best to let the user control that. In fact,
1210 gh_repl() now invokes scm_shell() which does that.
1211
1212 1997-11-23 Mark Galassi <rosalia@cygnus.com>
1213
1214 * gh_test_repl.c (main_prog): added argc and argv to the gh_repl()
1215 invocation.
1216
1217 1997-11-22 Tim Pierce <twp@twp.tezcat.com>
1218
1219 * dynl-dl.c (sysdep_dynl_func): Fix memory leak created by
1220 yesterday's underscore patch. (Thanks to Marius Vollmer for
1221 spotting this.)
1222
1223 1997-11-21 Tim Pierce <twp@twp.tezcat.com>
1224
1225 * dynl-dl.c (sysdep_dynl_func): Prepend symb with underscore if
1226 DLSYM_ADDS_USCORE is not defined.
1227
1228 1997-11-17 Mark Galassi <rosalia@nis.lanl.gov>
1229
1230 * gh_data.c (gh_uniform_vector_length):
1231 (gh_uniform_vector_ref): started implementing the uniform types in
1232 the gh_ interface.
1233
1234 1997-11-06 Mikael Djurfeldt <mdj@nada.kth.se>
1235
1236 * regex-posix.c (scm_free_regex_t): Return size of regex_t instead
1237 of 0; size_t --> scm_size_t. Thanks to Bernard Urban.
1238
1239 1997-10-26 Mikael Djurfeldt <mdj@nada.kth.se>
1240
1241 * scmconfig.h.in: Updated (HAVE_LIBTERMCAP was added when
1242 configure.in was changed).
1243
1244 Sun Oct 26 02:20:11 1997 Jim Blandy <jimb@totoro.red-bean.com>
1245
1246 * Makefile.am (modinclude_HEADERS): Include readline.h here.
1247 * Makefile.in: Regenerated.
1248
1249 1997-10-25 Marius Vollmer <mvo@zagadka.ping.de>
1250
1251 * print.h (SCM_COERCE_OPORT): Renamed to SCM_COERCE_OUTPORT. An
1252 OPORT is an `open' port, not an output port.
1253
1254 * filesys.c (scm_close, set_element, get_element, scm_chown,
1255 scm_chmod, scm_stat, scm_truncate_file, scm_fcntl, scm_fsync): Use
1256 SCM_COERCE_OUTPORT to cope with the printstate/port magic.
1257 * ports.c (scm_port_revealed, scm_set_port_revealed_x,
1258 scm_close_port, scm_port_line, scm_set_port_line_x,
1259 scm_port_column, scm_set_port_column_x, scm_port_filename,
1260 scm_set_port_filename_x, scm_port_mode,
1261 scm_close_all_ports_except, scm_set_current_output_port,
1262 scm_set_current_error_port): Likewise
1263 * ioext.c (scm_redirect_port, scm_dup_to_fdes, scm_freopen,
1264 scm_ftell, scm_fileno, scm_isatty_p, scm_primitive_move_to_fdes):
1265 Likewise
1266 * posix.c (scm_ttyname, scm_tcgetpgrp, scm_tcsetpgrp): Likewise
1267 * backtrace.c (display_backtrace_body): Likewise
1268 * fports (scm_setvbuf): Likewise
1269 * socket.c (scm_getsockopt, scm_setsockopt, scm_shutdown,
1270 scm_connect, scm_bind, scm_listen, scm_accept, scm_getsockname,
1271 scm_getpeername, scm_send, scm_sendto): Likewise
1272 * unif.c (scm_uniform_array_write): Likewise
1273
1274 Sat Oct 25 02:52:58 1997 Jim Blandy <jimb@totoro.red-bean.com>
1275
1276 Minor problems with substring-related tag changes.
1277 * symbols.h (SCM_SUBSTRP): Don't mask off the S bit; that's
1278 exactly what we want to leave in to detect substrings.
1279 (SCM_ROSTRINGP, ROUCHARS): Formatting tweaks.
1280 * tags.h: Fix diagrams and comments describing the S tag bit;
1281 remove vestigial remarks about the D tag bit.
1282 (SCM_TYP7, SCM_TYP7S): Rephrased for readability.
1283 * strings.c: Formatting tweaks.
1284
1285 * load.c (scm_init_load_path): Check GUILE_LOAD_PATH environment
1286 variable first; then SCHEME_LOAD_PATH, with a warning message.
1287 (scm_parse_path): New function.
1288 * script.c: Doc fixes.
1289
1290 Thu Oct 23 01:02:03 1997 Jim Blandy <jimb@totoro.red-bean.com>
1291
1292 Readline support, from Daniel Risacher.
1293 * readline.c, readline.h: New files.
1294 * init.c: #include "readline.h".
1295 (scm_boot_guile_1): Call scm_init_readline, if we have it.
1296 * Makefile.am (libguile_la_SOURCES): Include readline.c.
1297 * Makefile.in: Regenerated.
1298 * scmconfig.h.in: Regenerated, after change to ../configure.
1299
1300 1997-10-20 Mark Galassi <rosalia@nis.lanl.gov>
1301
1302 * gh.h: gh_vector_set -> gh_vector_set_x
1303
1304 1997-10-20 Mark Galassi <rosalia@nis.lanl.gov>
1305
1306 * gh_data.c (gh_vector_set_x): changed name to make it consistent
1307 with the ! -> _x mapping when going from Scheme to C.
1308
1309 1997-10-19 Mark Galassi <rosalia@cygnus.com>
1310
1311 * gh.h (gh_reverse):
1312 (gh_list_tail):
1313 (gh_list_ref):
1314 (gh_memq):
1315 (gh_memv):
1316 (gh_member):
1317 (gh_assq):
1318 (gh_assv):
1319 (gh_assoc): added these gh_ functions implemented as macros.
1320
1321 * gh_predicates.c (gh_null_p):
1322 (gh_string_equal_p): added these two missing predicates.
1323
1324 * gh_list.c (gh_append):
1325 (gh_append2):
1326 (gh_append3):
1327 (gh_append4):
1328 (gh_set_car_x):
1329 (gh_set_cdr_x): added these routines as I go through and try to
1330 complete the picture R4RS functions that should be mirrored in the
1331 gh_ interface.
1332
1333 Sat Oct 18 01:52:51 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1334
1335 * tags.h (scm_tc7_substring): Changed the comment and code to
1336 conform with the changes below. Folks! We have suddenly two new
1337 free tc7 codes!!! Jummy, jummy!
1338
1339 Tue Oct 14 22:03:06 1997 Tom Tromey <tromey@cygnus.com>
1340
1341 * Makefile.in: Rebuilt.
1342 * Makefile.am (libguile_la_SOURCES): Removed extchrs.c,
1343 mbstrings.c.
1344 (modinclude_HEADERS): Removed extchrs.h, mbstrings.h.
1345 * unif.c (scm_vector_set_length_x): Don't handle multibyte
1346 strings.
1347 * tag.c (scm_utag_mb_string, scm_utag_mb_substring): Removed.
1348 (scm_tag): Don't handle multibyte strings.
1349 * read.c: Don't include mbstrings.h.
1350 (scm_lreadr): Don't handle multibyte ports.
1351 * kw.c: Don't include mbstrings.h.
1352 * init.c: Don't include mbstrings.h.
1353 (scm_boot_guile_1): Don't init mbstrings module.
1354 * hash.c (scm_hasher): Don't handle mbstrings.
1355 * gscm.c (gscm_run_scm): Don't init mbstrings module.
1356 * gc.c (scm_gc_mark): Don't handle mbstrings.
1357 (scm_gc_sweep): Likewise.
1358 * eval.c (SCM_CEVAL): Don't handle mbstrings.
1359 * eq.c (scm_equal_p): Use SCM_TYP7S, not SCM_TYP7SD.
1360 * tags.h (SCM_TYP7SD): Removed.
1361 (SCM_TYP7D): Removed.
1362 (scm_tc7_mb_string): Removed.
1363 (scm_tc7_mb_substring): Removed.
1364 * print.c (scm_iprin1): Handle char printing directly. Don't
1365 handle mbstrings.
1366 Don't include "mbstrings.h".
1367 * symbols.c (scm_intern_obarray_soft, scm_string_to_symbol,
1368 scm_string_to_obarray_symbol, msymbolize): Don't set symbol's
1369 multi-byte flag.
1370 Don't include "mbstrings.h".
1371 * symbols.h (SCM_SYMBOL_MULTI_BYTE_STRINGP): Removed.
1372 (SCM_SYMBOL_SLOTS): Define as 4.
1373 (SCM_ROSTRINGP): Use SCM_TYP7S, not SCM_TYP7SD.
1374 * arbiters.c, backtrace.c, debug.c, dynl.c, eval.c, fluids.c,
1375 gc.c, gsubr.c, ioext.c, kw.c, mallocs.c, numbers.c, ports.c,
1376 print.c, read.c, regex-posix.c, root.c, srcprop.c, stackchk.c,
1377 struct.c, threads.c, throw.c, unif.c, variable.c: Use new
1378 ("gen"-less) I/O function names.
1379 * ports.c (scm_add_to_port_table): Don't set port's
1380 representation.
1381 * ports.h (scm_port_representation_type): Removed.
1382 (scm_string_representation_type): Removed.
1383 (struct scm_port_table ): Removed representation field.
1384 (SCM_PORT_REPRESENTATION): Removed.
1385 (SCM_SET_PORT_REPRESENTATION): Removed.
1386 * genio.h: Use new function names.
1387 * genio.c: Don't include "extchrs.h".
1388 (scm_gen_putc, scm_gen_puts, scm_gen_write, scm_get_getc):
1389 Removed.
1390 (scm_putc, scm_puts, scm_lfwrite): No longer static.
1391 (scm_getc): No longer static; handle line and column changes.
1392 (scm_ungetc): Renamed from scm_gen_ungetc.
1393 (scm_do_read_line): Renamed from scm_gen_read_line.
1394 * libguile.h: Don't include "extchrs.h" or "mbstrings.h"
1395 * extchrs.h, extchrs.c, mbstrings.h, mbstrings.c: Removed.
1396
1397 1997-10-12 Mark Galassi <rosalia@cygnus.com>
1398
1399 * gh_test_repl.c (c_vector_test): same as gh_test_c.c
1400
1401 * gh_test_c.c (c_vector_test): some improvements on the vector
1402 routines test.
1403
1404 * gh.h (gh_vector): this used to exist but do the wrong thing.
1405 Now it (almost) does the right thing, though it takes a list
1406 instead of the individual arguments. I need to see how it could
1407 be done right.
1408 (gh_list_to_vector): added this function as a macro. Corresponds
1409 to Scheme's (list->vector ...).
1410 (gh_vector_to_list): added this function as a macro. Corresponds
1411 to Scheme's (vector->list ...).
1412
1413 * gh_data.c (gh_vector_ref): renamed from gh_vref to
1414 gh_vector_ref, so that it resembles the Scheme routines more.
1415 (gh_vector_set): renamed from gh_vset to gh_vector_set, so that it
1416 resembles the Scheme routines more.
1417 (gh_make_vector): this used to be (stupidly) called gh_vector().
1418 This is the right name, since it does the same thing as the Scheme
1419 (make-vector ...) procedure.
1420
1421 Sun Oct 12 14:41:39 1997 Mikael Djurfeldt <mdj@kenneth>
1422
1423 * ports.h: #include "libguile/print.h"
1424
1425 * eval.c (SCM_CEVAL, scm_apply): Completed GOOPS support code;
1426 Some indentation fixes.
1427
1428 * objects.h (SCM_METACLASS_STANDARD_LAYOUT): Printer field is no
1429 longer a user field; New field: class_flags.
1430
1431 * objets.c, objects.h: New metaclass: scm_metaclass_operator.
1432
1433 Tue Oct 7 09:37:24 1997 Mark Galassi <rosalia@cygnus.com>
1434
1435 * gh_data.c (gh_bool2scm): new function which replaces
1436 gh_int2scmb(), which is now tagged as obsolete.
1437
1438 1997-10-03 Mikael Djurfeldt <mdj@nada.kth.se>
1439
1440 * print.h (SCM_PRINT_STATE_P): Removed SCM_NIMP test. (NIMP
1441 macros should by convention not test for NIMPness.)
1442 (SCM_COERCE_OPORT): Adjust indentation.
1443
1444 * print.c (scm_valid_oport_value_p): Adjusted indentation; Added
1445 SCM_NIMP test before SCM_PRINT_STATE_P.
1446
1447 * struct.c, struct.h, gc.c: Renamed:
1448 scm_struct_i_layout --> scm_vtable_index_layout
1449 scm_struct_i_vcell --> scm_vtable_index_vcell
1450 scm_struct_i_vtable --> scm_vtable_index_vtable
1451 scm_struct_i_printer --> scm_vtable_index_printer
1452 scm_struct_i_vtable_offset --> scm_vtable_offset_user
1453
1454 * struct.c (scm_print_struct): Use new printer slot; Default
1455 printing: Also output hex code of vtable so that type identity
1456 will be indicated as well.
1457 (scm_init_struct): Updated required_vtable_fields to "pruosrpw";
1458 Removed struct_printer_var; Removed struct-vtable-offset;
1459 (vtable-index-layout, vtable-index-vtable, vtable-index-printer,
1460 vtable-offset-user): New constants.
1461
1462 * struct.h (scm_struct_i_vtable_offset): Bumped from 3 to 4.
1463 (scm_struct_i_printer, SCM_STRUCT_PRINTER): New slot in vtables.
1464 If this slot contains a procedure, use that to print structures of
1465 the type represented by this vtable.
1466
1467 * print.c (scm_iprin1): Don't print arguments of macro
1468 transformers. (They are always: exp env.); Bugfix: Unmemoize
1469 transformer source with correct environment.
1470
1471 1997-10-02 Marius Vollmer <mvo@zagadka.ping.de>
1472
1473 Streamlining of call-with-dynamic-root:
1474
1475 * root.c (cwdr_inner_body, cwdr_body): Remove "inner" from name,
1476 there is now only one catch.
1477 (cwdr_outer_body): Removed.
1478 (cwdr_handler): New function.
1479 (scm_internal_cwdr): New function to perform the function of cwdr
1480 but take args that are more useful to C code. Also, the handler
1481 is now invoked *outside* of the new dynamic root, like the docs
1482 say. We no longer have to catch absolutely all errors, the caller
1483 is responsible for using a handler that does not throw, if he
1484 wants that.
1485 (cwdr): Reimplemented in terms of scm_internal_cwdr.
1486 * root.h (scm_internal_cwdr): New prototype.
1487
1488 Even more but risky streamlining:
1489
1490 * root.c (USE_STACKJMPBUF): New define to activate a stack-based
1491 allocation of the jumpbuf of a root continuation. The changes
1492 below are controlled by it. They are now deactivated.
1493 (scm_internal_cwdr): Allocate the scm_contregs on the stack. Set
1494 the JMPBUF of the scm_rootcont to NULL before returning.
1495
1496 * gc.c (scm_gc_sweep): Free the SCM_VELTS of a scm_tc7_contin only
1497 when they are non-NULL.
1498 (scm_gc_mark): Likewise, mark only when non-NULL.
1499
1500 Make dynamic linking work on Dec Unix. (Thanks to Clark McGrew)
1501 * dynl.c: Include "dynl-dl.c" also when HAVE_DLOPEN is defined.
1502
1503 * gc.c (scm_done_malloc): New function.
1504 gc.h (scm_done_malloc): New prototype.
1505
1506 * print.h (SCM_PRINT_STATE_P, SCM_COERCE_OPORT): New macros.
1507 (struct scm_print_state) [revealed]: New field.
1508 (scm_print_state_vtable): Make visible to the outside world for
1509 type checking purposes.
1510 (scm_valid_oport_value_p): New prototype.
1511
1512 * print.c (scm_valid_oport_value_p): New function to check whether
1513 a certain value is acceptable as a port argument.
1514 (scm_print_state_vtable): New variable.
1515 (scm_free_print_state): Set `revealed' field to false.
1516 (scm_iprin1): Call user supplied closure printer with
1517 scm_printer_apply. Print in the traditional way when there isn't
1518 one or when it returns #f.
1519 (scm_prin1, scm_display, scm_write, scm_newline, scm_write_char):
1520 Accept a port/print-state pair in addition to just a port.
1521 (scm_prin1): Don't return the print_state to the pool when it has
1522 been `revealed'.
1523 (scm_printer_apply): Set `revealed' field of print_state to true.
1524 (scm_init_print): Set scm_print_state_vtable.
1525 (print_state_fluid, print_state_fluid_num): Removed.
1526
1527 * throw.h (scm_handle_by_proc_catching_all): New prototype
1528 throw.c (scm_handle_by_proc_catching_all): New function
1529
1530 Mon Sep 29 23:54:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
1531
1532 * Makefile.in: Regenerated with automake 1.2c.
1533
1534 Sun Sep 28 21:35:42 1997 Radey Shouman <shouman@zianet.com>
1535
1536 * ramap.c (scm_array_index_map_x): Fixed for zero-rank arguments,
1537 was looping endlessly.
1538
1539 Sun Sep 28 00:04:29 1997 Jim Blandy <jimb@totoro.red-bean.com>
1540
1541 * strports.c (scm_eval_string): Don't close the port.
1542
1543 * stime.c (bdtime2c): Use SCM_LENGTH, not scm_vector_length; the
1544 former returns a nice normal integer. (Thanks to Daniel
1545 Risacher.)
1546
1547 Sat Sep 27 20:19:34 1997 Jim Blandy <jimb@totoro.red-bean.com>
1548
1549 * Makefile.am (libpath.h): Include the value of the THREAD_LIBS
1550 makefile variable as a build parameter called LIBS. The
1551 build-guile program will use this, for the time being.
1552 * Makefile.in: Regenerated.
1553
1554 Thanks to Shiro Kawai:
1555 * gc.c (scm_gc_mark): Pass NULL to scm_wta as the subroutine name.
1556 * ports.h (scm_ptobfuns): The fgets method returns a char *, not
1557 an SCM.
1558
1559 * Makefile.in: Regenerated with automake 1.2a.
1560
1561 * script.c (scm_compile_shell_switches): If we hit the -c or --
1562 arguments, don't set the car of (command-line) to scm_usage_name,
1563 the prettified name of the guile executable; give it the full
1564 path, the way shells usually handle $0.
1565
1566 Wed Sep 24 22:09:52 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1567
1568 * ramap.c (scm_array_map): Renamed to scm_array_map_x. Removed
1569 Scheme-level name `array-map' and renamed `serial-array-map' to
1570 `serial-array-map!'.
1571
1572 * backtrace.c: Introduced exception handlers which now enclose
1573 `display-error' and `display-backtrace' so that error reporting
1574 won't get into infinite loops if an error occurs during displaying
1575 of the error. This can very easily happen with user supplied
1576 print call-back routines.
1577
1578 Tue Sep 23 12:43:17 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1579
1580 * ramap.c: Added alias `array-map!' for `array-map'. (Probably,
1581 the names `serial-array-map' and `array-map' should be removed.)
1582
1583 Mon Sep 22 01:21:54 1997 Mikael Djurfeldt <mdj@kenneth>
1584
1585 * init.c (scm_boot_guile_1): Added scm_init_objects ().
1586 Added #include "objects.h"
1587
1588 * eval.c (scm_makprom): Added SCM_DEFER_INTS and SCM_ALLOW_INTS.
1589 Add #include "feature.h".
1590
1591 * Makefile.am (libguile_la_SOURCES): Added objects.c.
1592 (modinclude_HEADERS): Added objects.h.
1593
1594 * ports.h (SCM_EOF_OBJECT_P): New macro predicate.
1595 This test is needed at many places in the code and should be
1596 abstracted. (Motivated by the need of this test in libguiletk.)
1597
1598 * ports.c (scm_eof_object_p), vports.c (sfgetc), strports.c
1599 (scm_eval_string), load.c (scm_primitive_load,
1600 scm_read_and_eval_x), gh_eval.c (gh_eval_str):
1601 Use SCM_EOF_OBJECT_P.
1602
1603 * eval.c (scm_init_eval): Add feature `delay'.
1604
1605 Tue Sep 16 02:12:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1606
1607 * scmhob.h: Removed.
1608
1609 Mon Sep 15 20:42:03 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1610
1611 * list.h (SCM_LISTn): New macros. Make list creation in C code
1612 prettier. The idea comes from STk.
1613
1614 * sequences.h, sequences.c, append.h, append.c: Removed. These
1615 files implemented non-R4RS operations which would encourage
1616 non-portable programming style and less easy-to-read code.
1617
1618 * Makefile.am (sequences.h, sequences.c, append.h, append.c):
1619 Removed.
1620
1621 * libguile.h, eval.c, init.c, stime.c, unif.c: Removed #include
1622 sequences.h, #include append.h.
1623
1624 * init.c (scm_boot_guile_1): Removed calls to scm_init_append and
1625 scm_init_sequences.
1626
1627 * gh.h, gh_list.c: Renamed gh_list_length --> gh_length.
1628
1629 * list.h, list.c: Renamed scm_list_length --> scm_length, scm
1630
1631 * stime.c (bdtime2c): Changed scm_obj_length --> scm_vector_length.
1632
1633 Sat Sep 13 00:21:41 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1634
1635 * eval.c: Added #include "objects.h"
1636
1637 * tags.h (scm_tc16_object, scm_tc16_entity): Smobtags for objects
1638 and entities.
1639
1640 * smob.c (scm_smob_prehistory): Create two objectsmobs with
1641 adjacent smob numbers.
1642
1643 Thu Sep 11 00:59:17 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1644
1645 * procprop.h: Added declaration of scm_i_inner_name.
1646
1647 * gsubr.c: New global symbol scm_i_inner_name.
1648
1649 * debug.c (scm_procedure_name): Try procedure property
1650 `inner-name' if `name' fails.
1651
1652 * print.c (scm_iprin1): Use scm_macro_name.
1653
1654 * eval.c (scm_m_define): Give names to macros as well; Only the
1655 first top-level definition gives a procedure/macro a name.
1656 Otherwise confusing names can turn up in backtraces.
1657 (SCM_CEVAL): SCM_IM_DEFINE: Set `inner-name' property instead of
1658 `name'; Give names to macros as well.
1659
1660 * procs.c (scm_closure_p), print.c (scm_iprin1), eval.c
1661 (scm_macro_transformer): Use SCM_CLOSUREP instead of
1662 scm_closure_p.
1663
1664 Wed Sep 10 20:52:18 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1665
1666 * * eval.c (macro?, macro-type, macro-name, macro-transfomer): New
1667 procedures;
1668 (prinmacro): Removed. The code has been moved/merged into print.c
1669 in order to decrease code redundancy. We want macros to print in
1670 a way equivalent to procedures, and it would be silly to duplicate
1671 the required code. (We don't want to maintain two places.)
1672 (macrosmob): Print field is now a NULL pointer.
1673
1674 * eval.h (scm_macro_p, scm_macro_type, scm_macro_name,
1675 scm_macro_transformer): New prototypes.
1676 (scm_tc16_macro): Declared.
1677
1678 * * print.c (scm_iprin1): Added code for printing of macros. Macros
1679 are now printed in a way equivalent to procedures.
1680
1681 Sat Sep 6 12:20:42 1997 Mikael Djurfeldt <mdj@kenneth>
1682
1683 * procs.h (scm_closure_p): Added declaration.
1684
1685 Fri Sep 5 13:36:14 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1686
1687 * gc.c (scm_gc_mark): Fixed "rogue pointer in heap" message:
1688 Shouldn't pass "heap" as the subr name.
1689
1690 Tue Sep 2 18:14:30 1997 Jim Blandy <jimb@totoro.red-bean.com>
1691
1692 * gh_predicates.c (gh_boolean_p, gh_symbol_p, gh_char_p,
1693 gh_vector_p, gh_pair_p, gh_number_p, gh_string_p, gh_procedure_p,
1694 gh_list_p, gh_inexact_p, gh_exact_p, gh_eq_p, gh_eqv_p,
1695 gh_equal_p): Use SCM_NFALSEP, instead of testing against
1696 SCM_BOOL_T. Any non-false value is true.
1697
1698 Tue Sep 2 00:27:07 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1699
1700 * symbols.h (scm_builtin_bindings, scm_builtin_weak_bindings,
1701 scm_gensym): Added prototypes.
1702
1703 * symbols.c (scm_gensym): New function. This will speed up
1704 certain types of applications (such as macro systems) which
1705 generate lots of symbols.
1706
1707 Mon Sep 1 22:30:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1708
1709 * numbers.c (logand, logior, logxor): Handle 0 or 1 arguments.
1710
1711 Sat Aug 30 18:56:19 1997 Gary Houston <ghouston@actrix.gen.nz>
1712
1713 * unif.c (scm_shap2ra): tighten the checking of the array dimension
1714 specifier, since (2) or (2 . 3) would cause SEGV.
1715 (scm_transpose_array): more argument checking fixes.
1716
1717 Thu Aug 28 23:48:53 1997 Jim Blandy <jimb@totoro.red-bean.com>
1718
1719 * Makefile.in: Regenerated.
1720
1721 Wed Aug 27 17:44:44 1997 Jim Blandy <jimb@totoro.red-bean.com>
1722
1723 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
1724
1725 Mon Aug 25 13:47:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1726
1727 * error.c, error.h (scm_error_callback): Removed (see NEWS).
1728
1729 Sun Aug 24 01:25:35 1997 Mikael Djurfeldt <mdj@kenneth>
1730
1731 * regex-posix.c: If <regex.h> can't be found, try <rxposix.h> or
1732 <rx/rxposix.h>. (This is in order to accomodate for the GNU Rx
1733 library.)
1734
1735 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp, ramap_1,
1736 ramap_2o, scm_array_index_map_x, raeql_1, scm_array_equal_p),
1737 unif.c (scm_vector_set_length_x, scm_uniform_vector_length,
1738 scm_array_p, scm_array_rank, scm_array_dimensions,
1739 scm_enclose_array, scm_array_in_bounds_p, scm_uniform_vector_ref,
1740 scm_cvref, scm_array_set_x, scm_array_contents, scm_array_to_list,
1741 scm_array_prototype): Added case scm_tc7_wvect.
1742
1743 Sat Aug 23 18:45:44 1997 Gary Houston <ghouston@actrix.gen.nz>
1744
1745 * errno.h: prototype for scm_strerror.
1746 * error.c (scm_strerror): new procedure.
1747
1748 Mon Aug 18 14:58:22 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1749
1750 * list.c (scm_list_append_x): Allow non-pair as last argument.
1751 This is consistent with the R4RS append and is probably the
1752 correct behaviour as specified by R2RS. (Thanks to Radey Shouman)
1753
1754 Sat Aug 16 18:42:15 1997 Gary Houston <ghouston@actrix.gen.nz>
1755
1756 * stime.h: prototype for scm_times.
1757 * stime.c (scm_times): new procedure.
1758 * ioext.c (scm_fseek): if the first argument is a file descriptor
1759 call lseek.
1760 (scm_ftell): if the first argument is a file descriptor call lseek
1761 (sic).
1762 * filesys.h: prototypes for scm_open_fdes, scm_fsync.
1763 * filesys.c (scm_chmod): if the first argument is a file descriptor,
1764 call fchmod.
1765 (scm_chown): if the first argument is a port or file descriptor,
1766 call fchown.
1767 (scm_truncate_file): new procedure.
1768 Add DEFER/ALLOW INTS to a few other procedures.
1769 (scm_fsync): new procedure.
1770 (scm_open_fdes): new procedure.
1771 (scm_open): use scm_open_fdes. If mode isn't specified, 666 will
1772 now be used.
1773 (scm_fcntl): the first argument can now be a file descriptor. The
1774 third argument is now optional.
1775
1776 * posix.c (scm_execl, scm_execlp): make the filename argument
1777 compulsory, since omitting it causes SEGV.
1778 (scm_sync): return unspecified instead of #f.
1779 (scm_execle): new procedure.
1780 (environ_list_to_c): new procedure.
1781 (scm_environ): use environ_list_to_c. disable interrupts.
1782 (scm_convert_exec_args): take pos and subr arguments and
1783 improve error checking.
1784
1785 1997-08-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1786
1787 * stacks.c (scm_make_stack), coop-threads.c, mit-pthreads.c
1788 (scm_call_with_new_thread): Bugfix: SCM_WNA should go as third
1789 argument to SCM_ASSERT. Furthermore, the name of the function
1790 should be passed as first argument when signalling
1791 SCM_WNA. (Thanks to Thomas Morgan)
1792
1793 * gsubr.c (scm_gsubr_apply): From Radey Shouman
1794 <shouman@zianet.com>: "The switch in scm_gsubr_apply that
1795 dispatches on the number of actual args has a default case
1796 reporting an internal error. This is a vestige from a version
1797 that mallocated a SCM vector to hold the arguments. In the
1798 current version this check is too late: if it ever happens we will
1799 have already overstepped the bounds of the array.
1800
1801 Also, the patch [...] adds a check for too many actual arguments."
1802
1803 mdj: Removed check for "internal programming error".
1804
1805 Wed Aug 13 15:38:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1806
1807 * gh_io.c (gh_write): New function.
1808
1809 * gh_eval.c (catch_with_saved_stack): Removed. Replaced by:
1810 throw.c (scm_internal_stack_catch): New sibling to the other catch
1811 functions. Code moved from gh_eval.c.
1812 throw.h: Added header.
1813 gh_eval.c (gh_eval_str_with_stack_saving_handler): Renamed call to
1814 scm_internal_stack_catch.
1815
1816 Tue Jul 29 01:03:08 1997 Gary Houston <ghouston@actrix.gen.nz>
1817
1818 * ioext.h: fix up prototypes.
1819 * ioext.c (scm_dup_to_fdes): renamed from scm_primitive_dup2.
1820 Scheme name is now dup->fdes.
1821 (scm_dup_to_fdes): make the second argument optional and
1822 fold in the functionality of scm_primitive_dup.
1823 (scm_primitive_dup): deleted.
1824
1825 Mon Jul 28 05:24:42 1997 Gary Houston <ghouston@actrix.gen.nz>
1826
1827 * fports.h (SCM_P): prototypes for scm_setvbuf, scm_setfileno.
1828 * fports.c (scm_setbuf0): don't disable the setbuf if MSDOS or
1829 ultrix are defined. Use setvbuf instead of setbuf.
1830 (scm_setvbuf): new procedure.
1831 (scm_init_fports): intern _IOFBF, _IOLBF, _IONBF.
1832 (scm_setfileno): moved from ioext.c.
1833 (scm_fgets): cast SCM_STREAM to (FILE *), remove unused lp variable.
1834 (top of file): Delete 25 lines of probably obsolete CPP hair for MSDOS.
1835
1836 Sun Jul 27 10:54:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
1837
1838 * fluids.c (scm_fluid_p): New function.
1839 * fluids.h (scm_fluid_p): New prototype.
1840
1841 Sat Jul 26 21:33:37 1997 Marius Vollmer <mvo@zagadka.ping.de>
1842
1843 * print.c (scm_iprin1): Enter printed structures into the print
1844 state as nested data while they are printed.
1845 (print_state_fluid, print_state_fluid_num): New variables.
1846 (scm_init_print): Initialize them.
1847 (scm_iprin): If print_state_fluid carries a print_state, use that
1848 instead of creating a new one.
1849 (scm_printer_apply, apply_stub, struct apply_data): New
1850 definitions to help with calling printer functions written in
1851 Scheme.
1852 * print.h (scm_printer_apply): New prototype.
1853
1854 * struct.c (scm_print_struct): Use scm_printer_apply to call the
1855 user defined struct printer.
1856
1857 * dynwind.c (scm_dowinds): Handle fluids on the wind list.
1858 * fluids.h (scm_internal_with_fluids, scm_with_fluids,
1859 scm_swap_fluids, scm_swap_fluids_reverse): New prototypes.
1860 * fluids.c (scm_internal_with_fluids, scm_with_fluids,
1861 scm_swap_fluids, scm_swap_fluids_reverse): New functions.
1862
1863 Fri Jul 25 12:05:46 1997 Marius Vollmer <mvo@zagadka.ping.de>
1864
1865 * fluids.c (scm_fluid_ref, scm_fluid_set_x): Fixed use of
1866 SCM_ASSERT: arg comes before pos.
1867
1868 Fri Jul 25 17:00:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1869
1870 * eval.c (scm_apply): Handle the case when a tc7_sybr_2 is applied
1871 to a list of length zero correctly.
1872
1873 Wed Jul 23 16:17:46 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
1874
1875 Supply an `fgets' method for port objects to do fast line i/o.
1876 * ioext.c (scm_read_line): New function.
1877 * genio.c (scm_gen_read_line): New function.
1878 * fports.c (scm_fgets): New function.
1879 (scm_fptob, scm_pipob): Add scm_fgets method.
1880 * ports.c (fgets_void_port, scm_generic_fgets): New functions.
1881 (void_port_ptob): Add void fgets method.
1882 (scm_newptob): Initialize fgets method from ptob struct.
1883 * ports.h (scm_ptobfuns): Add fgets method.
1884 * vports.c (scm_sfptob): Supply generic fgets method.
1885 * strports.c (scm_stptob): Supply generic fgets method.
1886
1887 Mon Jul 21 04:03:42 1997 Gary Houston <ghouston@actrix.gen.nz>
1888
1889 * ioext.h: removed scm_duplicate_port prototype.
1890
1891 * ioext.c (scm_primitive_dup2): return the new file descriptor
1892 instead of SCM_UNSPECIFIED, since similarity to scm_primitive_dup
1893 is convenient.
1894 (scm_fdopen): bug fix: don't try to make port unbuffered until its
1895 stream has been set.
1896 (scm_duplicate_port): deleted, there's now an implementation in
1897 boot-9.scm.
1898 (scm_primitive_dup2): do nothing if newfd == oldfd.
1899
1900 Sun Jul 20 03:55:49 1997 Gary Houston <ghouston@actrix.gen.nz>
1901
1902 * filesys.c (scm_close): oops, don't call SCM_INUM twice on the
1903 argument.
1904
1905 * ioext.h: new prototypes.
1906 * ioext.c (scm_primitive_dup, scm_primitive_dup2): new procedures.
1907
1908 * fluids.c (next_fluid_num): don't do
1909 SCM_THREAD_CRITICAL_SECTION_START/END unless USE_THREADS is defined.
1910
1911 * ports.h: prototypes too.
1912 * ports.c (scm_mode_bits, scm_port_mode): moved from fports.c.
1913
1914 * fports.h: prototype too.
1915 * fports.c (scm_evict_ports): moved from ioext.c.
1916
1917 Sat Jul 19 04:56:52 1997 Gary Houston <ghouston@actrix.gen.nz>
1918
1919 * ports.c (scm_close_port): return a boolean instead of unspecified.
1920 throw an error if an error other than EBADF occurs.
1921
1922 * filesys.h: scm_close prototype.
1923 * filesys.c (scm_close): new procedure, can close file descriptors
1924 and ports (scsh compatible).
1925
1926 * ports.c (scm_flush_all_ports): SCM_PROC incorrectly allowed an
1927 optional argument.
1928
1929 Fri Jul 18 11:19:53 1997 Marius Vollmer <mvo@zagadka.ping.de>
1930
1931 * fluids.c, fluid.h: New files.
1932 * Makefile.am (libguile_la_SOURCES): Added "fluids.c".
1933 (modinclude_HEADERS): Added "fluids.h"
1934
1935 * init.c: Include "fluids.h". (scm_boot_guile_1): Added call to
1936 scm_init_fluids to initialize the fluid machine.
1937 (scm_start_stack): Initialize the fluids of the first root with
1938 scm_make_initial_fluids.
1939
1940 * root.h: Added "fluids" member to scm_root_state.
1941 * root.c: Include "fluids.h". (scm_mark_root): Mark "fluids".
1942 (scm_make_root): Call scm_copy_fluids to make fluid bindings
1943 unique for the new root when it has a parent.
1944
1945 * smob.h: Include "libguile/print.h" to make scm_print_state
1946 visible.
1947
1948 * dynl.c (free_dynl_obj): New function to free the dynamic object
1949 data. (dynl_smob): Use it.
1950 * dynl.c (scm_dynamic_link): Moved allocating of the memory for
1951 the dynamic object data below the linking of the object to avoid
1952 memory leak when the linking code throws an error. Now the code
1953 leaks a whole dynamically linked library when must_malloc throws,
1954 but that should be much less likely.
1955
1956 Fri Jul 11 00:19:47 1997 Jim Blandy <jimb@floss.red-bean.com>
1957
1958 Changes to compile under gnu-win32, from Marcus Daniels:
1959 * stime.c (tzset): If tzset isn't provided, make it a NOP.
1960 (scm_localtime): Change SCM_EOF to SCM_EOL.
1961 (scm_mktime): Likewise.
1962 * socket.c: Don't include sys/un.h unless autoconf tells
1963 us Unix domain sockets are available.
1964 (scm_fill_sockaddr): Ignore Unix domain code.
1965 (scm_addr_vector): Likewise.
1966 (scm_init_addr_buffer): Likewise.
1967 (scm_socketpair): Don't include unless socketpair was
1968 found during autoconf.
1969 * simpos.c (SYSTNAME): Treat cygwin like Unix.
1970 * scmsigs.c (scm_pause): Don't include unless pause was found
1971 during autoconf.
1972 * posix.c (scm_getgroups): Don't include unless support function
1973 was found during autoconf (in this case, getgroups).
1974 (scm_setpwent): For setpwent.
1975 (scm_setegid): For setegid.
1976 * net_db.c (scm_inet_netof): Don't include unless support
1977 function was found during autoconf (in this case, inet_netof).
1978 (scm_lnaof): For inet_lnaof.
1979 (scm_inet_makeaddr): For inet_makeaddr.
1980 (scm_getnet): For getnetent, getnetbyname, getnetbyaddr.
1981 (scm_getproto): For getprotoent.
1982 (scm_getserv): For getservent.
1983 (scm_sethost): For sethostent, endhostent.
1984 (scm_setnet): For setnetent, endnetent.
1985 (scm_setproto): For setprotoent, endprotoent.
1986 (scm_setserv): For setservent, endservent.
1987 * scmconfig.h.in: Regenerated.
1988
1989 Thu Jul 10 00:22:24 1997 Jim Blandy <jimb@floss.red-bean.com>
1990
1991 * stime.c (scm_localtime, scm_mktime): Pass SCM_EOL to
1992 scm_misc_error, not SCM_EOF.
1993
1994 * error.c (scm_wta): Pass SCM_EOL to scm_misc_error as the list of
1995 arguments for formatting the error message, not SCM_BOOL_F. I
1996 think this is left over from the (eq? '() #f) days.
1997
1998 * read.c (recsexpr): Give this a dummy definition if
1999 DEBUG_EXTENSIONS isn't #defined.
2000
2001 Fri Jul 4 23:42:17 1997 Marius Vollmer <mvo@zagadka.ping.de>
2002
2003 * coop-threads.c (scm_wait_condition_variable): Lock mutex again
2004 after waiting.
2005
2006 Thu Jul 3 16:31:24 1997 Marius Vollmer <mvo@zagadka.ping.de>
2007
2008 * root.c (cwdr_outer_body): Bugfix: Pass `c' instead of `&c' to
2009 scm_internal_catch.
2010
2011 Sat Jun 28 16:14:09 1997 Tim Pierce <twp@twp.tezcat.com>
2012
2013 * Makefile.am (libguile_la_LIBADD): Remove @ALLOCA@, since
2014 alloca.lo will be included in @LIBLOBJS@. Something better than
2015 this should be possible.
2016 * Makefile.in: Regenerated.
2017
2018 Sat Jun 28 03:40:15 1997 Gary Houston <ghouston@actrix.gen.nz>
2019
2020 * simpos.h: prototype for scm_primitive_exit.
2021 * simpos.c (scm_primitive_exit): new procedure, terminates the
2022 process without unwinding the stack.
2023
2024 Sat Jun 28 03:45:25 1997 Tim Pierce <twp@twp.tezcat.com>
2025
2026 * regex-posix.c (scm_make_regexp): Make `flags' a variable-length
2027 argument and logior its components together, so the user doesn't
2028 have to do this explicitly. Also, if regexp/basic is supplied, then
2029 turn off REG_EXTENDED.
2030 (scm_init_regex_posix): New regexp/basic symbol.
2031 (REG_BASIC): #define this if it is not already present.
2032
2033 Fri Jun 27 20:36:35 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
2034
2035 * Makefile.am (libguile_la_LIBADD): Include @ALLOCA@.
2036 (MOSTLYCLEANFILES): New target, changed from CLEANFILES.
2037 (CLEANFILES): New target, clean versiondat.h, libpath.h.
2038 (DISTCLEANFILES): New target, clean *.x.
2039 * Makefile.in: Regenerated.
2040
2041 Tue Jun 24 00:29:07 1997 Jim Blandy <jimb@floss.red-bean.com>
2042
2043 * script.c (scm_compile_shell_switches): Add 1997 to copyright
2044 years in usage message.
2045
2046 * Makefile.am (libguile_la_LDFLAGS): Bump library version.
2047 * Makefile.in: Regenerated.
2048
2049 * regex-posix.c (scm_init_regex_posix): Delete the regexp/nosub
2050 flag; I don't think we support it.
2051 (scm_make_regexp): Make sure the user doesn't pass the
2052 regexp/nosub flag.
2053
2054 * regex-posix.c (scm_make_regexp, scm_regexp_exec): Add optional
2055 FLAGS arguments.
2056 (scm_init_regex_posix): Define constants for the REG_mumble flags;
2057 name them according to the SCSH convention: regexp/mumble.
2058
2059 * regex-posix.h (scm_make_regexp, scm_regexp_exec): Update prototypes.
2060
2061 Mon Jun 23 18:44:49 1997 Jim Blandy <jimb@floss.red-bean.com>
2062
2063 * Makefile.am (libpath.h): Include the values of all the standard
2064 Makefile directory variables. Print a message, but don't print
2065 all the commands.
2066 (versiondat.h): Print a message, but don't print all the commands.
2067 * load.c: #include "alist.h".
2068 (init_build_info): New function.
2069 (scm_init_load): Call it.
2070 * Makefile.in: Regenerated.
2071
2072 Sun Jun 22 19:12:58 1997 Jim Blandy <jimb@floss.red-bean.com>
2073
2074 * root.c: Establish a reliable catch-all handler for the new root.
2075 After all the Scheme handler function might signal an error too,
2076 and we don't want to lose that.
2077 (cwdr_inner_body): Renamed from cwdr_body.
2078 (cwdr_outer_body): New function, to establish the user's handler,
2079 and pass control to cwdr_inner_body.
2080 (cwdr): Establish the reliable catch-all handler here, and pass
2081 control to cwdr_outer_body.
2082 (struct cwdr_body_data): New field, handler, to allow cwdr to pass
2083 the user's handler through to cwdr_outer_body.
2084 * throw.c (scm_handle_by_message): Move guts into....
2085 (handler_message): New static function.
2086 (scm_handle_by_message_noexit): New function.
2087 * throw.h (scm_handle_by_message_noexit): New prototype.
2088
2089 * __scm.h: (SCM_FENCE): New macro: optimizer will not move code
2090 across this. Only works on GCC. Otherwise, we hope for the best.
2091 (SCM_DEFER_INTS, SCM_ALLOW_INTS): Use FENCE appropriately. I have
2092 the feeling that real thread systems will not need this...
2093
2094 Sun Jun 22 15:46:35 1997 Jim Blandy <jimb@floss.red-bean.com>
2095
2096 Try to detect when people are using one version of libguile and a
2097 different version of ice-9. People have been skewing things and
2098 sending in bug reports.
2099 * Makefile.am (versiondat.h): New file to generate.
2100 * version.c: #include "versiondat.h", to get version info.
2101 (scm_libguile_config_stamp): New function.
2102 * script.c: #include "version.h".
2103 (scm_compile_switches): Call scm_version to get version number.
2104 * scmconfig.h.in, Makefile.in: Regenerated.
2105 * Makefile.in: Regenerated.
2106
2107 * Makefile.am (ETAGS_ARGS): Catch SCM_PROC, etc. so we can find
2108 primitive definitions under their Scheme names.
2109
2110 * Makefile.am (libguile_la_LDFLAGS): Update library version to
2111 1:2. Helps avoid confusion between installed and uninstalled libs.
2112
2113 * scmconfig.h.in: Regenerated. (Needed after June 3 change to
2114 ../configure.in.)
2115
2116 * gdb_interface.h (GDB_INTERFACE): Remove semicolon and trailing
2117 backslash from definition; this should be used like: GDB_INTERFACE;
2118
2119 Sun Jun 22 04:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
2120
2121 * ioext.c (scm_duplicate_port): bug fix: don't try to make the
2122 new port unbuffered until its stream has been set.
2123
2124 Sat Jun 21 18:44:03 1997 Gary Houston <ghouston@actrix.gen.nz>
2125
2126 * ports.h: new prototype.
2127 * ports.c (scm_flush_all_ports): new procedure, scsh compatible.
2128
2129 Sat Jun 21 00:25:03 1997 Jim Blandy <jimb@floss.red-bean.com>
2130
2131 Make things compile neatly under Sun's C compiler.
2132 * dynl.c (scm_dynamic_func): Cast return value from sysdep_dynl_func.
2133 * extchrs.c (xmbtowc): Make the second arg a normal char, not
2134 unsigned, because that's what the ANSI function takes.
2135 * extchrs.h (xmbtowc): Corresponding change to prototype.
2136 * genio.c (scm_gen_getc): Make buf plain chars. Nobody wants
2137 uchars here.
2138 * mbstrings.c (scm_mb_ilength): Use ANSI arg syntax. Make DATA
2139 argument plain char *.
2140 * strings.c (scm_string): Use SCM_ROCHARS, since c is a plain
2141 char.
2142 * tag.c (scm_tag): Remove unreachable statement.
2143 * unif.c (scm_array_to_list): If we want to shift a 1 bit to the
2144 top of the word, it should be unsigned.
2145
2146 * eval.c (scm_lookupcar1): Don't declare var2 unless USE_THREADS
2147 is defined, to avoid warnings; it's only used in the
2148 conflict-checking code. Which might go away anyway.
2149 (SCM_CEVAL): All goto's targeting the `dispatch' label are in
2150 conditionals; put the label definition in an #if too, to stifle
2151 warnings.
2152
2153 * Makefile.am (EXTRA_DIST): Include ChangeLog-gh and
2154 ChangeLog-threads in the distribution.
2155 * Makefile.in: Regenerated.
2156
2157 Fri Jun 20 10:03:41 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
2158
2159 * guile-snarf.in: Changed regexp to support CPPs that insert
2160 whitespace between lexical tokens (which munges the `%%%' snarf
2161 cookie).
2162
2163 Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
2164
2165 * load.c (scm_init_load_path): Append $(datadir)/guile to
2166 %load-path, so modules do not have to be installed in Guile's
2167 current version directory.
2168
2169 Mon Jun 16 17:20:55 1997 Marius Vollmer <mvo@zagadka.ping.de>
2170
2171 * dynl.c (scm_dynamic_call, scm_dynamic_args_call): Wrap dynamic
2172 function call in SCM_DEFER_INTS/SCM_ALLOW_INTS.
2173 (scm_dynamic_link, scm_dynamic_unlink, scm_dynamic_func): Always
2174 call the sysdep functions with deferred ints.
2175 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c (sysdep_dynl_link,
2176 sysdep_dynl_unlink, sysdep_dynl_func): Expect to be called with
2177 deferred interrupts and insert SCM_ALLOW_INTS before throwing an
2178 error.
2179
2180 * dynl.c (scm_dynamic_unlink, scm_dynamic_call): Return
2181 SCM_UNSPECIFIED.
2182
2183 Sat Jun 14 19:00:58 1997 Gary Houston <ghouston@actrix.gen.nz>
2184
2185 * scmsigs.c (sys_deliver_signals): add a comment about a probable bug.
2186
2187 Wed Jun 11 00:33:00 1997 Jim Blandy <jimb@floss.red-bean.com>
2188
2189 * Makefile.in: Regenerated after xtra_PLUGIN_guile_libs change in
2190 ../configure.in.
2191
2192 Sun Jun 8 14:37:26 1997 Marius Vollmer <mvo@zagadka.ping.de>
2193
2194 * eval.c (scm_lookupcar1): New procedure to cope with a race
2195 condition during lookup (when using threads).
2196 (scm_lookupcar): Implement in terms of scm_lookupcar1.
2197 (SCM_CEVAL): Use scm_lookupcar1 instead of scm_lookupcar in one
2198 place.
2199
2200 Fri Jun 6 19:05:07 1997 Jim Blandy <jimb@totoro.cyclic.com>
2201
2202 * regex-posix.c (scm_regexp_exec): Use the `start' argument if
2203 supplied. (Change from Tim Pierce.)
2204
2205 Thu Jun 5 16:38:19 1997 Marius Vollmer <mvo@zagadka.ping.de>
2206
2207 * struct.c (init_struct): Forget to mention this in the "Wed Jun 4
2208 23:47:01 1997" changelog: Slots are now initialized with `#f' by
2209 default and not `()'. `#f' is the canonical non-value in Scheme,
2210 right?
2211
2212 Wed Jun 4 23:47:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
2213
2214 * struct.c (struct_printer): New variable that holds a handle on
2215 the Scheme variable *struct-printer*. This variable can be set by
2216 Scheme code to override the printing of structures.
2217 (scm_print_struct): If struct_printer is set, call it. If it is
2218 not set, or returns #f, print the structure in the old fashion.
2219 Include "eval.h" for scm_apply.
2220
2221 Tue Jun 3 23:01:39 1997 Marius Vollmer <mvo@zagadka.ping.de>
2222
2223 * struct.c (scm_struct_ref, scm_struct_set_x): Use
2224 scm_struct_i_n_words to get the number of fields, not
2225 -scm_struct_n_extra_words.
2226
2227 On the route to fancier struct printing:
2228 * struct.c (scm_print_struct): New function to print a structure.
2229 Include "genio.h" to support it. This function doesn't do
2230 anything interesting right now, but I think it should be here
2231 anyway.
2232 * struct.h: Include "print.h" and add prototype for
2233 scm_print_struct.
2234 * print.c (scm_iprin1): Call scm_print_struct instead of trying to
2235 print structures ourself.
2236
2237 Sun Jun 1 07:58:41 1997 Gary Houston <ghouston@actrix.gen.nz>
2238
2239 * scmsigs.c (sys_deliver_signals): bug fix: reset got_signal[i]
2240 before applying the handler in case it doesn't return.
2241
2242 Sat May 31 18:57:51 1997 Gary Houston <ghouston@actrix.gen.nz>
2243
2244 * scmsigs.h, async.h: updated.
2245
2246 * _scm.h: if HAVE_RESTARTS is defined then don't use a SYSCALL
2247 loop.
2248
2249 * posix.c (scm_uname): interpret only negative values as an error.
2250 Solaris normally returns a positive value.
2251
2252 * script.c (scm_compile_shell_switches): if we are not going into
2253 an interactive repl, set scm_mask_ints to zero so that asyncs can
2254 run.
2255
2256 * simpos.c (scm_system): don't ignore/unignore signals around
2257 the "system" call.
2258
2259 * posix.c (scm_open_pipe): don't ignore/unignore signals around
2260 the "popen" call.
2261
2262 * init.c (scm_boot_guile_1): don't call scm_init_signals, it's
2263 done in boot-9.scm instead.
2264
2265 * scmsigs.c, async.c: Major rewriting of signal handling code.
2266 (scm_sigaction): new procedure.
2267 (scm_sleep): don't wrap sleep in SCM_SYSCALL, it would mess up the
2268 timing.
2269 (scm_raise): return unspecified, throw error on failure.
2270
2271 Thu May 29 02:47:36 1997 Jim Blandy <jimb@floss.cyclic.com>
2272
2273 * regex-posix.c (scm_init_regex_posix): Register the "regex"
2274 feature, to help boot-9.scm decide whether to import the regex
2275 module.
2276
2277 Thu May 29 02:19:40 1997 Jim Blandy <jimb@floss.cyclic.com>
2278
2279 * eval.c: Include scmconfig.h at the beginning of the file so that
2280 HAVE_ALLOCA_H may properly be defined. Thanks to Bill Janssen for
2281 pointing this out.
2282
2283 * regex-posix.c: #include "_scm.h" before conditionally #including
2284 <regex.h>; the former defines HAVE_REGCOMP.
2285
2286 * regex-posix.c: #include <regex.h> conditionally, so the file is
2287 CPP'able (for dependency scanning) even on systems that don't have
2288 a <regex.h> header.
2289
2290 Tue May 27 23:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
2291
2292 Add new R4RS-compliant syntax for keywords.
2293 * read.c (scm_lreadr): Recognize `#:' as a prefix for keywords,
2294 regardless of the setting of the `keywords' read option.
2295 * kw.c (prin_kw): Print keywords using the `#:' syntax, so they
2296 can be re-read no matter what the setting of the `keywords' read
2297 option.
2298
2299 Tue May 27 22:47:31 1997 Tim Pierce <twp@twp.tezcat.com>
2300
2301 Add support for POSIX regular expressions.
2302
2303 * regex-posix.c, regex-posix.h: New files. (Some code
2304 is taken liberally from rx/rgx.c in the old Guile dist.)
2305
2306 * init.c: Include regex-posix.h.
2307 (scm_boot_guile_1): Call scm_init_regex_posix.
2308
2309 * Makefile.am (EXTRA_libguile_la_SOURCES, modinclude_HEADERS):
2310 Add regex-posix.[ch] sources.
2311 * Makefile.in: Regenerated.
2312
2313 * scmconfig.h.in: Add HAVE_REGCOMP macro. (automake is supposed
2314 to do this automatically? It didn't for me, bleh.)
2315
2316 Mon May 26 18:51:29 1997 Jim Blandy <jimb@floss.cyclic.com>
2317
2318 * fports.c (print_pipe_port): New function.
2319 (scm_fptob): Use print_pipe_port instead of scm_prinport; the
2320 latter doesn't even take the right arguments.
2321
2322 * Makefile.am: Increment shared lib revision number. I think
2323 sometimes the uninstalled Guile finds the installed shared lib;
2324 Gord says doing this might help. As things turned out, I can't
2325 say whether it does.
2326 * Makefile.in: Regenerated.
2327
2328 * gh_init.c (gh_enter): Cast c_main_prog to a void * before
2329 passing it as the closure argument to scm_boot_guile. (Bill
2330 Janssen)
2331
2332 * ports.c (print_void_port, putc_void_port, puts_void_port,
2333 write_void_port, flush_void_port, getc_void_port, close_void_port,
2334 noop0): Use ANSI prototypes instead of K&R declarations, so the
2335 initialization of void_port_ptob gets aggressively type-checked.
2336 Fix arguments of print_void_port and write_void_port. (Bill
2337 Janssen)
2338
2339 * COPYING, __scm.h, _scm.h, alist.c, alist.h, append.c, append.h,
2340 appinit.c, arbiters.c, arbiters.h, async.c, async.h, backtrace.c,
2341 backtrace.h, boolean.c, boolean.h, chars.c, chars.h,
2342 continuations.c, continuations.h, coop-defs.h, coop-threads.c,
2343 coop-threads.c.cygnus, coop-threads.h, coop-threads.h.cygnus,
2344 coop.c, debug.c, debug.h, dynl-dl.c, dynl-dld.c, dynl-shl.c,
2345 dynl-vms.c, dynl.c, dynl.h, dynwind.c, dynwind.h, eq.c, eq.h,
2346 error.c, error.h, eval.c, eval.h, extchrs.h, feature.c, feature.h,
2347 filesys.c, filesys.h, fports.c, fports.h, fsu-pthreads.h, gc.c,
2348 gc.h, gdbint.c, gdbint.h, genio.c, genio.h, gh.h, gh_data.c,
2349 gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c, gh_list.c,
2350 gh_predicates.c, gh_test_c.c, gh_test_repl.c, gscm.c, gscm.h,
2351 gsubr.c, gsubr.h, guile.c, hash.c, hash.h, hashtab.c, hashtab.h,
2352 init.c, init.h, ioext.c, ioext.h, kw.c, kw.h, libguile.h, list.c,
2353 list.h, load.c, load.h, mallocs.c, mallocs.h, markers.c,
2354 markers.h, mbstrings.c, mbstrings.h, mit-pthreads.c,
2355 mit-pthreads.h, net_db.c, net_db.h, numbers.c, numbers.h,
2356 objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
2357 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
2358 procprop.h, procs.c, procs.h, putenv.c, ramap.c, ramap.h, read.c,
2359 read.h, root.c, root.h, scmhob.h, scmsigs.c, scmsigs.h, script.c,
2360 script.h, sequences.c, sequences.h, simpos.c, simpos.h, smob.c,
2361 smob.h, snarf.h, socket.c, socket.h, srcprop.c, srcprop.h,
2362 stackchk.c, stackchk.h, stacks.c, stacks.h, stime.c, stime.h,
2363 strings.c, strings.h, strop.c, strop.h, strorder.c, strorder.h,
2364 strports.c, strports.h, struct.c, struct.h, symbols.c, symbols.h,
2365 tag.c, tag.h, tags.h, threads.c, threads.h, throw.c, throw.h,
2366 unif.c, unif.h, variable.c, variable.h, vectors.c, vectors.h,
2367 version.c, version.h, vports.c, vports.h, weaks.c, weaks.h: New
2368 address for FSF.
2369
2370 Mon May 26 12:37:30 1997 Jim Blandy <jimb@floss.cyclic.com>
2371
2372 * script.c (scm_find_executable): Use prototype-style definition
2373 here; apparently it's not quite right to have const in a prototype
2374 and then use a K&R declaration. I wonder if stuff like this will
2375 go away if we compile with -Wrequire-prototypes, or whatever that
2376 is... (Bernard URBAN)
2377
2378 * scmhob.h: New text from Bernard URBAN.
2379
2380 Sat May 17 17:14:36 1997 Jim Blandy <jimb@floss.cyclic.com>
2381
2382 * script.c: Don't #define const on hpux. Configure takes care of
2383 this. (Thanks to Larry Schwimmer.)
2384
2385 * script.c: Use the HAVE_UNISTD_H symbol provided by autoconf to
2386 decide whether to #include <unistd.h>, instead of listing a bunch
2387 of systems. Don't #include stdio twice. Removed dyked-out
2388 definition of scm_find_impl_file.
2389
2390 Fri May 16 03:06:08 1997 Jim Blandy <jimb@floss.cyclic.com>
2391
2392 * Makefile.am (libguile_la_LDFLAGS): Update libguile's shared
2393 library version info to 1:0.
2394 * Makefile.in: Regenerated.
2395
2396 * backtrace.c, backtrace.h, debug.c, debug.h, eq.c,
2397 gdb_interface.h, gdbint.c, gdbint.h, gh_data.c, gh_init.c,
2398 gh_io.c, gh_list.c, gh_predicates.c, gh_test_c.c, gh_test_repl.c,
2399 init.c, net_db.c, options.c, options.h, ports.c, print.c, read.c,
2400 script.h, snarf.h, srcprop.c, srcprop.h, stacks.c, stacks.h,
2401 throw.c: Update copyright years; these files have been worked on
2402 significantly in 1997, but only had copyright years for 1996.
2403 Also, change name of copyright holder on some from Mikael
2404 Djurfeldt to Free Software Foundation; he has signed papers
2405 assigning the changes to the FSF.
2406
2407 * script.c (scm_shell_usage): Pass FATAL to exit. There's no
2408 reason not to give the user the option.
2409
2410 * net_db.c (scm_gethost, scm_getnet, scm_getproto, scm_getserv):
2411 Return #f on end-of-file when scanning table (i.e. when called
2412 with no arguments). Try to catch errors, when we can.
2413 * posix.c (scm_getgrgid, scm_getpwuid): Same.
2414
2415 * script.h (scm_shell_usage, scm_compile_shell_switches): New
2416 external declarations. These are useful.
2417
2418 Thu May 15 05:21:36 1997 Gary Houston <ghouston@actrix.gen.nz>
2419
2420 * posix.c: don't include <sys/select.h> or define macros for
2421 select, since they were not used in this file.
2422
2423 * filesys.c (scm_select): make the fifth parameter microseconds,
2424 not milliseconds. let the fourth parameter be either a real value
2425 or an integer or #f. The first, second and third arguments can
2426 now be vectors: the type of the corresponding return set will be
2427 the same.
2428 (set_element, get_element): new static procedures.
2429
2430 Wed May 14 12:18:12 1997 Jim Blandy <jimb@floss.cyclic.com>
2431
2432 * strports.c (scm_eval_string): New function.
2433 (scm_eval_0str): Trivially re-implemented in terms of
2434 scm_eval_string.
2435 * strports.h (scm_eval_string): New extern decl.
2436
2437 * net_db.c (h_errno): Add extern decl for this.
2438
2439 * fports.c (local_pclose): New function.
2440 (scm_pipob): Use it in the initializer here.
2441
2442 From Tim Pierce:
2443 * net_db.c (scm_gethost, scm_getproto, scm_getnet, scm_getserv):
2444 Use a meaningful error message when signalling an error. For
2445 this, scm_gethost must check h_errno rather than errno.
2446
2447 Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
2448
2449 * Makefile.in: Regenerated, using automake-1.1p.
2450
2451 Tue May 13 04:34:52 1997 Gary Houston <ghouston@actrix.gen.nz>
2452
2453 * socket.c (scm_addr_vector): use SCM_UNDEFINED in scm_listify,
2454 not SCM_UNSPECIFIED.
2455
2456 * script.c (scm_compile_shell_switches): don't append (quit) if
2457 interactive.
2458 (scm_shell): call scm_exit_status and exit on the result of the
2459 evaluation.
2460
2461 Mon May 12 17:23:58 1997 Jim Blandy <jimb@floss.cyclic.com>
2462
2463 Ensure that shared substrings are handled properly when passed to
2464 a system call or other foreign function. Many thanks to Tim
2465 Pierce!
2466 * symbols.h (SCM_COERCE_SUBSTR): new macro.
2467 * filesys.c (scm_chmod, scm_rename, scm_delete_file, scm_mkdir,
2468 scm_rmdir, scm_opendir, scm_chdir, scm_symlink, scm_readlink,
2469 scm_lstat), ports.c (scm_sys_make_void_port), posix.c (scm_utime,
2470 scm_putenv, scm_setlocale, scm_mknod), stime.c (setzone,
2471 scm_strftime), vports.c (scm_make_soft_port), backtrace.c
2472 (scm_display_error_message): use RO macros when strings may be RO.
2473 * error.c (scm_error_scm), filesys.c (scm_chown, scm_chmod,
2474 scm_rename, scm_delete_file, scm_mkdir, scm_rmdir, scm_opendir,
2475 scm_chdir, scm_symlink, scm_readlink, scm_lstat), ioext.c
2476 (scm_freopen, scm_duplicate_port, scm_fdopen), net_db.c
2477 (scm_gethost, scm_getnet, scm_getproto, scm_getserv), ports.c
2478 (scm_sys_make_void_port), posix.c (scm_getgrgid, scm_utime,
2479 scm_setlocale, scm_mknod), stime.c (setzone, scm_strptime,
2480 scm_strftime), vports.c (scm_make_soft_port): use
2481 SCM_COERCE_SUBSTR to make sure shared substrings are
2482 null-terminated.
2483
2484 Mon May 12 15:33:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
2485
2486 * error.c (scm_error): Add newline to error message.
2487
2488 * init.c (scm_init_standard_ports): Doc fix.
2489
2490 Thu May 8 14:38:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
2491
2492 * dynl-shl.c: Completely replaced with new code from Bernard
2493 URBAN.
2494
2495 * script.c (scm_ice_9_already_loaded): New variable.
2496 (scm_compile_shell_switches): Use it.
2497
2498 Mon May 5 20:35:08 1997 Gary Houston <ghouston@actrix.gen.nz>
2499
2500 * filesys.c (scm_input_waiting_p): add missing third argument to
2501 scm_misc_error.
2502
2503 * stime.c (scm_localtime): copy the result of localtime before
2504 calling gmtime in case they share a buffer.
2505 (scm_localtime, scm_mktime): throw an error if neither HAVE_TM_ZONE
2506 nor HAVE_TZNAME.
2507
2508 Fri May 2 19:07:11 1997 Gary Houston <ghouston@actrix.gen.nz>
2509
2510 * eq.c (scm_equal_p): use SCM_TYP7SD (y) not SCM_TYP7SD (x).
2511
2512 Thu May 1 17:01:45 1997 Jim Blandy <jimb@floss.cyclic.com>
2513
2514 * Makefile.am (check-local): New target, which causes 'make check'
2515 to run gh_test_c and gh_test_repl, with some trivial input.
2516 * Makefile.in: Rgnrtd.
2517
2518 Tue Apr 29 19:00:40 1997 Marius Vollmer <mvo@zagadka.ping.de>
2519
2520 * dynl.c (print_dynl_obj): Indicate whether the dynamic object has
2521 been unlinked.
2522
2523 Mon Apr 28 06:10:14 1997 Gary Houston <ghouston@actrix.gen.nz>
2524
2525 * async.c (scm_sys_tick_async_thunk): commented out. I'm not
2526 sure how this was supposed to work.
2527 (scm_async_click): don't send SCM_TICK_SIGNAL.
2528 (scm_init_async): don't initialize %tick-thunk.
2529
2530 * the following change doesn't affect the Scheme interface:
2531 gc-thunk is called at the end of garbage collection. however it's
2532 no longer implemented by pretending it's a signal.
2533
2534 * gc.c (scm_gc_end): don't call scm_take_signal. instead mark the
2535 system async corresponding to scm_gc_thunk.
2536 * async.h: declare scm_gc_async.
2537 * async.c (scm_sys_gc_async_thunk): apply the thunk named by
2538 gc-thunk directly, instead of going through a signal handler.
2539 (scm_gc_async): new variable, points to the GC system-async.
2540 (scm_init_async): save the GC async as scm_gc_async instead
2541 of using system_signal_asyncs.
2542 (scm_gc_vcell): new variable, stores the gc-thunk vcell.
2543
2544 Mon Apr 28 19:14:44 1997 Jim Blandy <jimb@floss.cyclic.com>
2545
2546 * Makefile.am (libpath.h, cpp_err_symbols.c, cpp_sig_symbols.c):
2547 Don't screw up if we're interrupted.
2548 * Makefile.in: Regeneradet.
2549
2550 Sun Apr 27 17:57:15 1997 Jim Blandy <jimb@floss.cyclic.com>
2551
2552 * aclocal.m4: Removed; unnecessary, given changes of Apr 24.
2553
2554 * Makefile.am (modincludedir): Use "ice-9" instead of "@module@";
2555 we're not using AM_INIT_GUILE_MODULE any more.
2556 * Makefile.in: Reneregated.
2557
2558 Thu Apr 24 00:41:08 1997 Jim Blandy <jimb@floss.cyclic.com>
2559
2560 Functions for finding variable bindings, grace à Tim Pierce.
2561 * gh_data.c (gh_lookup, gh_module_lookup): New functions.
2562 * gh.h (gh_lookup, gh_module_lookup): New prototypes.
2563
2564 Get 'make dist' to work again.
2565 * Makefile.am (EXTRA_DIST): Remove PLUGIN files.
2566 * Makefile.in: Regenerated, like a surry without a fringe on top.
2567
2568 Changes for reduced Guile distribution: one configure script,
2569 no plugins.
2570 * configure.in, configure: Removed.
2571 * acconfig.h, acinclude.m4: Moved to parent directory, where the
2572 real configure script lives.
2573 * Makefile.in, scmconfig.h.in: Regenerated.
2574
2575 * init.c: #include "script.h", to get prototype for script.c's
2576 init function.
2577
2578 Wed Apr 23 21:25:39 1997 Jim Blandy <jimb@floss.cyclic.com>
2579
2580 * gh_data.c (gh_scm2newstr, gh_symbol2newstr): Use
2581 scm_must_malloc, not raw malloc.
2582
2583 * script.c (scm_compile_shell_switches): Dyke out debugging output
2584 code.
2585
2586 Mon Apr 21 05:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
2587
2588 * eq.c (scm_equal_p): use "SCM_TYP7SD", not "SCM (TYP7SD".
2589
2590 * stime.c: include both <sys/times.h> and <sys/timeb.h> if the
2591 system has them. Hope this is safe. Previously
2592 sys/timeb.h was included if HAVE_FTIME was defined or if
2593 HAVE_SYS_TIMEB_H was defined but HAVE_SYS_TIMES_H was not,
2594 but IRIX iris 5.3 apparently has ftime but not sys/timeb.h.
2595
2596 * ioext.c (scm_setfileno): add missing third argument to
2597 scm_misc_error call.
2598
2599 Sun Apr 20 15:09:31 1997 Jim Blandy <jimb@totoro.cyclic.com>
2600
2601 * eq.c (scm_equal_p): Correctly compare strings of different
2602 varieties. (Thanks to Tim Pierce.)
2603
2604 Sat Apr 19 03:59:02 1997 Jim Blandy <jimb@floss.cyclic.com>
2605
2606 * read.c (skip_scsh_block_comment): SCSH says the !# that ends a
2607 #! block comment must occur on a line all by itself.
2608
2609 Move most of the guts of shell command processing into libguile,
2610 so guile.c can be very small (and eventuallly auto-generated. (I
2611 mean, generated mechanically, not self-generated. Hmm.))
2612 * guile.c, script.c, script.h: New source files.
2613 * init.c (scm_boot_guile_1): Call scm_init_script.
2614 * libguile.h: #include "script.h".
2615 * Makefile.am (bin_PROGRAMS, guile_SOURCES, guile_LDADD): New
2616 targets, for new executable.
2617 (libguile_la_SOURCES): Mention script.c.
2618 (modinclude_HEADERS): Add script.h.
2619 * configure.in: Always check for -lm, -lsocket, -lnsl, whether or
2620 not dynamic linking is enabled. This is because we're generating
2621 executables now. Move CY_AC_WITH_THREADS call after those, so the
2622 values of cy_cv_threads_libs captures the libs chosen above.
2623 * Makefile.in, configure, aclocal.m4: Regenerated.
2624
2625 * Makefile.am (EXTRA_DIST): Don't distribute gscm.c or gscm.h.
2626 We don't maintain this interface any more, and it just confuses
2627 people.
2628
2629 * alloca.c: #include <scmconfig.h>, not <config.h>.
2630 * Makefile.am (EXTRA_libguile_la_SOURCES): Mention alloca.c, so
2631 it'll get included in disties.
2632
2633 Thu Apr 17 17:45:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
2634
2635 * gscm.c, gscm.h: These aren't supported any more, and shouldn't
2636 be distributed, because they confuse people.
2637 * Makefile.am (EXTRA_DIST): Remove gscm.c, gscm.h.
2638
2639 Sat Apr 19 11:56:18 1997 Tim Pierce <twp@twp.tezcat.com>
2640
2641 * configure.in: check for presence of gethostent (not present on
2642 OpenBSD by default).
2643 * net_db.c (scm_gethost): Check HAVE_GETHOSTENT.
2644 * configure, scmconfig.h.in: Regenerated.
2645
2646 Wed Apr 16 17:52:38 1997 Jim Blandy <jimb@floss.cyclic.com>
2647
2648 * backtrace.c (scm_backtrace): Split message string across
2649 newlines properly. GCC is more tolerant of this than other
2650 compilers.
2651
2652 Mon Apr 14 20:20:14 1997 Jim Blandy <jimb@floss.cyclic.com>
2653
2654 Merge threads directory into libguile.
2655 * coop-defs.h, coop-threads.c, coop-threads.h, coop.c, threads.c,
2656 threads.h: New source files.
2657 * Makefile.am (EXTRA_libguile_la_SOURCES): Add threads.c.
2658 (noinst_HEADERS): Add coop-threads.c, coop-threads.h, coop.c
2659 here; see comment.
2660 (modinclude_HEADERS): Add threads.h, coop-defs.h.
2661 (EXTRA_DIST): Add fsu-pthreads.h, mit-pthreads.c, mit-pthreads.h,
2662 coop-threads.c.cygnus, coop-threads.h.cygnus.
2663 * configure.in: If we're using threads, include threads.o in
2664 LIBOBJS.
2665 * _scm.h, libguile.h: threads.h lives in this directory now.
2666 * fsu-pthreads.h, mit-pthreads.c, mit-pthreads.h,
2667 coop-threads.c.cygnus, coop-threads.h.cygnus: New files, not
2668 currently used, but brought along for information's sake.
2669 * ChangeLog-threads: log from old 'threads' directory.
2670 * Makefile.in, configure: Rebuilt.
2671
2672 Mon Apr 14 20:15:29 1997 Jim Blandy <jimb@totoro.cyclic.com>
2673
2674 * stime.c (scm_mktime): #ifndef HAVE_TM_ZONE, Use lt.tm_zone, not
2675 lt->tm_zone.
2676
2677 Mon Apr 14 01:32:57 1997 Jim Blandy <jimb@floss.cyclic.com>
2678
2679 * gh_init.c (gh_standard_handler): Return SCM_BOOL_F, not garbage.
2680
2681 Merge GH interface library into libguile.
2682 * gh.h, gh_data.c, gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c,
2683 gh_list.c, gh_predicates.c, gh_test_c.c, gh_test_repl.c: New files.
2684 * Makefile.am (libguile_la_SOURCES): Add gh_data.c, gh_eval.c,
2685 gh_funcs.c, gh_init.c, gh_io.c, gh_list.c, gh_predicates.c. Move
2686 _scm.h to ...
2687 (EXTRA_libguile_la_SOURCES): ... here.
2688 (pkginclude_HEADERS): Add variable, to get gh.h installed.
2689 (THREAD_LIBS, check_ldadd, check_PROGRAMS, gh_test_c_SOURCES,
2690 gh_test_c_LDADD, gh_test_repl_SOURCES, gh_test_repl_LDADD):
2691 New variables, describing how to build the gh test programs.
2692 * configure.in: Check for -lm, -lsocket, -lnsl; we need this to
2693 build the test programs, and we probably should have been linking
2694 libguile.la against them all along, to support AIX shared libs.
2695 Add cflags for threads to CFLAGS; add libs for threads to new
2696 variable THREAD_LIBS, used in Makefile.am.
2697 * ChangeLog-gh: log from old `gh' subdirectory.
2698 * Makefile.in, configure, scmconfig.h.in: Rebuilt.
2699
2700 Sun Apr 13 23:03:55 1997 Jim Blandy <jimb@floss.cyclic.com>
2701
2702 * acconfig.h: Undo change of Apr 9; including the definition of
2703 PACKAGE in the guile headers conflicts with applications' own
2704 definitions.
2705 * scmconfig.h.in: Regenerated.
2706
2707 Fri Apr 11 14:12:13 1997 Jim Blandy <jimb@floss.cyclic.com>
2708
2709 * filesys.c (scm_fcntl): New function from Roland McGrath.
2710 (scm_init_filesys): New symbols for use with fcntl.
2711 * filesys.h: Added prototype.
2712
2713 * eval.c (SCM_APPLY): Set debug apply frame argument list correctly
2714 when PROC is receiving no arguments.
2715
2716 Fri Apr 11 19:39:32 1997 Jim Blandy <jimb@totoro.cyclic.com>
2717
2718 * filesys.c (S_ISSOCK): Define this if it's missing, but we do
2719 have S_IFSOCK. This is the case under Ultrix.
2720
2721 * posix.c (scm_status_exit_val, scm_status_exit_val,
2722 scm_status_term_sig, scm_status_stop_sig): Modified to work with
2723 Ultrix versions of WIFSTOPPED, etc., which assume that their
2724 arguments are lvalues (hmm).
2725
2726 Thu Apr 10 15:10:07 1997 Jim Blandy <jimb@floss.cyclic.com>
2727
2728 * eval.c: Doc fixes.
2729
2730 * throw.c: Doc fixes; rearranged.
2731
2732 * putenv.c: #include "libguile/scmconfig.h", not <config.h>.
2733
2734 Wed Apr 9 18:01:20 1997 Jim Blandy <jimb@floss.cyclic.com>
2735
2736 * acconfig.h: Added entry for PACKAGE.
2737 * scmconfig.h.in: Regenerated.
2738
2739 Changes to work with automake-1.1n, which has better libtool support.
2740 * Makefile.am: Use lib_LTLIBRARIES instead of lib_PROGRAMS.
2741 Use libguile_la_LIBADD instead of libguile_la_LDADD. (What's the
2742 difference here?)
2743 (libguile_la_SOURCES, modinclude_HEADERS, EXTRA_DIST): Format for
2744 readability.
2745 * Makefile.in: Rebuild.
2746
2747 Wed Apr 9 09:08:54 1997 Gary Houston <ghouston@actrix.gen.nz>
2748
2749 * stime.c (scm_mktime): take an optional zone argument.
2750 (scm_localtime): check putenv return value.
2751 (scm_strftime, scm_strptime): moved from posix.c. move #include
2752 sequences.h too.
2753 stime.h, posix.h: update prototypes.
2754 (bdtime2c, setzone, restorezone): new static procedures.
2755 (scm_mktime, scm_strftime): use them.
2756 (scm_strftime): don't call mktime before strftime. Use
2757 filltime for return value.
2758 (filltime): convert NULL zname to #f.
2759 (scm_strptime): return a count of characters consumed, not
2760 the remaining string.
2761
2762 Sun Apr 6 05:44:11 1997 Gary Houston <ghouston@actrix.gen.nz>
2763
2764 * stime.c (scm_localtime): check HAVE_TM_ZONE and HAVE_TZNAME.
2765 (scm_mktime): likewise.
2766 Declare *tzname[].
2767 Uncomment localtime and mktime.
2768
2769 * configure.in: add AC_STRUCT_TIMEZONE.
2770
2771 Sat Apr 5 23:56:40 1997 Gary Houston <ghouston@actrix.gen.nz>
2772
2773 * stime.c (scm_init_stime): don't define ticks/sec.
2774 (scm_gettimeofday): renamed from scm_time_plus_ticks (avoids multiple
2775 return value problem and is still portable.)
2776
2777 Sat Apr 5 17:59:24 1997 Jim Blandy <jimb@floss.cyclic.com>
2778
2779 * cpp_err_symbols.in: Renamed from cpp_err_symbols, to avoid
2780 make's implicit cpp_err_symbols: cpp_err_symbols.c rule.
2781 * cpp_sig_symbols.in: Renamed from cpp_sig_symbols.
2782 * Makefile.am (check_errnos, check_signals, cpp_sig_symbols.c,
2783 cpp_err_symbols.c): Corresponding changes.
2784 * Makefile.in: Regenerated.
2785
2786 Sat Apr 5 02:39:02 1997 Gary Houston <ghouston@actrix.gen.nz>
2787
2788 * posix.c (scm_putenv): don't check HAVE_PUTENV.
2789 * Makefile.am (EXTRA_libguile_la_SOURCES): add putenv.c.
2790 * configure.in: move putenv from AC_CHECK_FUNCS to AC_REPLACE_FUNCS.
2791 * putenv.c: new file, from sh-utils 1.12.
2792
2793 * posix.c (scm_environ): use malloc in place of scm_must_malloc
2794 since allocation isn't for Scheme objects.
2795 (scm_putenv): copy strings before placing in the environment.
2796
2797 * stime.c (scm_current_time): throw an error if time returns -1,
2798 instead of returning #f.
2799 (scm_get_internal_real_time, scm_get_internal_real_time): use
2800 scm_long2num for return value instead of SCM_MAKINUM.
2801
2802 * stime.h: prototypes updated.
2803
2804 * stime.c (scm_time_in_msec): apparently unused, deleted.
2805
2806 Fri Apr 4 08:53:41 1997 Gary Houston <ghouston@actrix.gen.nz>
2807
2808 * configure.in: check for gettimeofday.
2809
2810 * stime.c (scm_time_plus_ticks): new procedure, an scsh interface
2811 which may be more usefully portable than a gettimeofday interface.
2812
2813 Wed Apr 2 17:11:39 1997 Jim Blandy <jimb@totoro.cyclic.com>
2814
2815 * Makefile.am (EXTRA_DIST): It's cpp_err_symbols, not
2816 cpp_err_signals.
2817 * Makefile.in: Regenerated.
2818
2819 Mon Mar 31 03:22:37 1997 Gary Houston <ghouston@actrix.gen.nz>
2820
2821 * stime.c (filltime): recovered static procedure.
2822 (scm_localtime, scm_gmtime, scm_mktime, scm_tzset): recovered from
2823 an earlier Guile.
2824
2825 * posix.h: add prototype for scm_close_pipe, remove prototypes for
2826 scm_open_input_pipe, scm_open_output_pipe, change scm_mknod prototype.
2827
2828 * posix.c (scm_mknod): split the mode argument into type and perms
2829 arguments, like the extra fields returned by stat.
2830
2831 * fports.c (scm_pipob): set the close, free and print procedures.
2832 (scm_close_pipe): new procedure.
2833
2834 * posix.c (scm_open_input_pipe, scm_open_output_pipe): deleted,
2835 define them in boot-9.scm
2836
2837 Wed Mar 26 04:10:32 1997 Gary Houston <ghouston@actrix.gen.nz>
2838
2839 * ioext.c (scm_setfileno): throw a runtime error if SET_FILE_FD_FIELD
2840 wan't defined. Don't include fd.h.
2841
2842 * Previously fd.h was regenerated whenever configure was run,
2843 forcing a couple of files to be recompiled.
2844
2845 * fd.h.in: deleted, SET_FILE_FD_FIELD moved to ioext.c.
2846 * configure.in: AC_DEFINE FD_SETTER instead of HAVE_FD_SETTER.
2847 Check for _fileno as well as _file.
2848 Don't output fd.h.
2849 * ioext.c: don't fd.h.
2850 * acconfig.h: remove duplicate HAVE_FD_SETTER and change the
2851 other to FD_SETTER.
2852
2853 * Change the stratigy for getting information about errno
2854 (and now signal number) values, e.g., ENOSYS, SIGKILL. Instead of
2855 generating lists of symbols during the build process, which will
2856 not always work, include comprehensive lists in the distribution.
2857 To help keep the lists up to date, the "check_signals" and
2858 "check_errnos" make targets can be used.
2859
2860 * configure.in: don't check for a command to extract errno codes.
2861 * Makefile.am: update file lists, remove errnos.list and errnos.c
2862 targets, add cpp_err_symbols.c, cpp_sig_symbols.c, check_signals,
2863 check_errnos targets.
2864 (CLEANFILES): remove errnos.c and errnos.list, add
2865 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new
2866 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new
2867 * errnos.default: deleted.
2868 * cpp_signal.c: new file.
2869 * cpp_errno.c: renamed from errnos_get.c.
2870 * cpp_err_symbols, cpp_sig_symbols: new files.
2871 * cpp_cnvt.awk: renamed from errnos_cnvt_awk.
2872 * error.c (scm_init_error): #include cpp_err_symbols instead of
2873 errnos.c.
2874 * posix.c (scm_init_posix): don't intern signal symbols. #include
2875 cpp_sig_symbols.c.
2876
2877 Tue Mar 25 04:51:10 1997 Gary Houston <ghouston@actrix.gen.nz>
2878
2879 * strop.c (scm_i_index): allow the lower bound to be equal to the
2880 length of the string, so a null string doesn't always give an error.
2881
2882 * posix.h: new prototypes.
2883 * posix.c (scm_status_exit_val, scm_status_term_sig,
2884 scm_status_stop_sig): new functions, as in scsh. They break down
2885 process status values as returned by waitpid.
2886
2887 Sat Mar 22 18:16:29 1997 Gary Houston <ghouston@actrix.gen.nz>
2888
2889 * net_db.c (scm_gethost): don't check HAVE_GETHOSTENT, since
2890 configure doesn't know about it.
2891
2892 Fri Mar 21 23:49:28 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2893
2894 * snarf.h, backtrace.c: Name change SCM_GLOBAL --> SCM_VCELL.
2895
2896 * snarf.h: Added new macros SCM_GLOBAL_SYMBOL and SCM_GLOBAL_VCELL
2897 which defines C variables with global linkage.
2898
2899 Mon Mar 17 05:57:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2900
2901 * snarf.h (SCM_PROC1): Bugfix: Use (void) rather than (...) for
2902 zero arg subrs.
2903
2904 Sun Mar 16 11:43:49 1997 Mikael Djurfeldt <mdj@floss.cyclic.com>
2905
2906 * eval.c (safe_setjmp): Temporarily use old setjmp until someone
2907 has time to check why this doesn't work well with continuations.
2908
2909 Sun Mar 16 05:09:55 1997 Jim Blandy <jimb@totoro.cyclic.com>
2910
2911 * Fix shell syntax error; some shells won't tolerate
2912 multiple "fi" statements on a single line. (Thanks to Fred Fish.)
2913
2914 Sat Mar 15 01:11:40 1997 Gary Houston <ghouston@actrix.gen.nz>
2915
2916 * posix.c (scm_uname): throw an error if uname fails instead
2917 of returning errno.
2918
2919 * error.h (scm_errno, scm_perror): obsolete prototypes removed.
2920
2921 * error.c (err_head, scm_errno, scm_perror): obsolete procedures
2922 removed.
2923
2924 * async.c (scm_ints_disabled): definition moved from error.c.
2925
2926 Sat Mar 15 00:06:08 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2927
2928 * acconfig.h: Removed PACKAGE.
2929
2930 * scmconfig.h.in: Regenerated.
2931
2932 * snarf.h: g++ says it's non-portable not to specify the first
2933 argument in a varargs declaration. I introduced the first
2934 argument by using preprocessor conditionals.
2935
2936 Thu Mar 13 21:28:25 1997 Gary Houston <ghouston@actrix.gen.nz>
2937
2938 * ioext.c (scm_read_delimited_x): use RO string macros for delims.
2939 (scm_freopen): use RO string macros for filename and modes.
2940 (scm_duplicate_port, scm_fdopen): use RO string macros for modes.
2941
2942 * posix.c (scm_getgrgid): simplify conversion of name to C string.
2943 (scm_mknod): use RO string macros for path.
2944
2945 * socket.c (scm_fill_sockaddr, scm_send, scm_sendto):
2946 use SCM_ROSTRINGP, SCM_ROCHARS, SCM_ROLENGTH.
2947
2948 * net_db.c (scm_gethost, scm_getnet, scm_getproto, scm_getserv):
2949 use SCM_ROSTRINGP and SCM_ROCHARS.
2950
2951 Thu Mar 13 18:31:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2952
2953 * unif.c (scm_array_set_x): Cast ICHR (obj) to char if storing in
2954 a scm_tc7_byvect.
2955
2956 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp,
2957 scm_array_index_map_x, raeql_1, scm_array_equal_p): Completed
2958 support for byte vectors.
2959
2960 * print.c (scm_iprin1): Limit number of vector elements printed
2961 according to pstate->length.
2962
2963 Thu Mar 13 00:12:35 1997 Gary Houston <ghouston@actrix.gen.nz>
2964
2965 * backtrace.c (scm_display_error_message): don't segv if message
2966 is an immediate.
2967
2968 * error.h: prototype for scm_error_scm.
2969
2970 * error.c (scm_error_scm): new procedure, reimplements scm-error
2971 in C and uses scm_error.
2972
2973 Tue Mar 11 03:51:00 1997 Gary Houston <ghouston@actrix.gen.nz>
2974
2975 * read.c (scm_read_hash_extend): make scm_read_hash_procedures a
2976 pointer to the Scheme variable read-hash-procedures and intern it
2977 in scm_init_read. Modify scm_read_hash_extend and
2978 scm_get_hash_procedure to use the pointer.
2979
2980 Mon Mar 10 06:28:54 1997 Gary Houston <ghouston@actrix.gen.nz>
2981
2982 * read.h (SCM_N_READ_OPTIONS): increase SCM_N_READ_OPTIONS to 4.
2983 (SCM_KEYWORD_STYLE): defined.
2984
2985 * read.c (scm_read_opts): add a keywords option. This isn't a
2986 boolean option, in case someone wants to add support for DSSSL
2987 keywords too.
2988 Setup scm_keyword_prefix symbol.
2989 (scm_lreadr): Only process keywords if SCM_KEYWORD_STYLE is
2990 set to 'prefix.
2991 I've left keyword support disabled by default, since it doesn't
2992 seem to break the module system and it gives R4RS standard behaviour.
2993 It can be reactivated with (read-set! keywords 'prefix).
2994
2995 Sun Mar 9 14:14:39 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2996
2997 * arbiters.c (scm_make_arbiter): Bugfix: Must SCM_DEFER_INTS
2998 before constructing arbiter.
2999
3000 * eval.c (scm_m_define): Bugfix: Check that the object is a
3001 closure before setting the procedure property!
3002
3003 * ports.h: Removed prototype for scm_ungetc_char_ready_p.
3004
3005 * ports.c: Removed `ungetc-char-ready?'.
3006
3007 Sat Mar 8 00:27:05 1997 Gary Houston <ghouston@actrix.gen.nz>
3008
3009 * read.c (scm_init_read): intitialise scm_read_hash_procedures
3010 (idea from Mikael: make it a pair so scm_permanent object only
3011 called once.)
3012 (scm_read_hash_extend): don't call scm_permanent_object.
3013 (ideas from Mikael): if chr is already in the list, replace its
3014 procedure instead of appending it again. If proc is #f, remove
3015 it from the list.
3016 (scm_get_hash_procedure): take CDR of scm_read_hash_procedures.
3017
3018 * strports.c (scm_read_0str, scm_eval_0str): update scm_read usage.
3019
3020 * gdbint.c (gdb_read): update scm_lreadr usage.
3021
3022 * load.h: update prototypes.
3023
3024 * load.c (scm_primitive_load, scm_read_and_eval_x,
3025 scm_primitive_load_path): remove case_insensitive_p, sharp arguments.
3026
3027 * read.h: add prototype for scm_read_hash_extend. Change args for
3028 other prototypes.
3029
3030 * read.c (scm_read_hash_procedures): new variable.
3031 (scm_read_hash_extend): new procedure.
3032 (scm_get_hash_procedure): new procedure.
3033 (scm_lreadr): use scm_get_hash_procedure instead of an argument
3034 for extended # processing.
3035 (scm_read, scm_lreadr, scm_lreadrecparen, scm_lreadparen,
3036 scm_read_token): remove case_i, sharp arguments. Change callers.
3037
3038 Fri Mar 7 08:58:21 1997 Gary Houston <ghouston@actrix.gen.nz>
3039
3040 * read.h (SCM_N_READ_OPTIONS): increase to 3.
3041 (SCM_CASE_INSENSITIVE_P): define.
3042
3043 * read.c: add case-insensitive option to scm_read_opts.
3044 (scm_read_token): use SCM_CASE_INSENSITIVE_P instead of an argument
3045 to determine whether to convert symbol case.
3046 (default_case_i): definition removed.
3047 * read.c (scm_read_token): if case_i, downcase ic before doing
3048 anything with it.
3049
3050 Sat Mar 8 03:49:03 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3051
3052 * configure.in: Added configuration option `guile-debug'.
3053 Configure with --enable-guile-debug if you want a bunch of extra
3054 functions used for debugging when developing Guile.
3055
3056 * acconfig.h: Added new preprocessor symbol GUILE_DEBUG.
3057
3058 * procs.c (make-cclo): New undocumented debugging procedure: Make
3059 compiled closure with internal procedure PROC and length LENGTH.
3060 Only compiled if GUILE_DEBUG is defined.
3061
3062 * debug.c: Only include `debug-hang' if GUILE_DEBUG is defined.
3063
3064 * print.c: Put #ifdef GUILE_DEBUG around `current-pstate'.
3065
3066 * ports.c: Changed preprocessor symbol DEBUG --> GUILE_DEBUG.
3067
3068 * eval.c (SCM_CEVAL): Added code sections for handling of rpsubrs
3069 with 3 or more args internally to the evaluator.
3070
3071 Fri Mar 7 19:38:18 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3072
3073 * eval.c (SCM_CEVAL): Added code sections for handling of asubrs
3074 with 3 or more args internally to the evaluator. This is mainly
3075 because we don't want to pass entry and exit points of the
3076 debug support twice, but it also seems to increase the speed of
3077 the evaluator for such calls (e. g. (+ 1 2 3)).
3078
3079 * backtrace.c (scm_display_application): New procedure:
3080 display-application; Set fancy printing parameters individually
3081 for different types of display (backtrace, error, application).
3082 (These should of course be customizable!)
3083
3084 * debug.h (SCM_RESET_DEBUG_MODE): Bugfix: The old code didn't
3085 clear the CHECK-flags.
3086
3087 Thu Mar 6 00:53:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3088
3089 * tags.h, eval.c (iqq): Fixes to comments about SCM_ECONSP.
3090
3091 Wed Mar 5 23:31:21 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3092
3093 * tags.h (SCM_ECONSP, SCM_NECONSP): Bugfix: Discriminate structs
3094 from pairs with a GLOC in the car.
3095
3096 * symbols.c (msymbolize): Bugfix: Also initialize SCM_SYMBOL_HASH,
3097 otherwise `symbol-hash' will behave badly.
3098 (scm_symbol_hash): Bugfix: Must msymbolize if tc7_ssymbol, othwise
3099 we get segmentation fault!
3100
3101 * symbols.c: Added #include "weaks.h". New functions:
3102 `builtin-bindings' and `builtin-weak-bindings'. (These will be
3103 moved to an extraneous library when we split libguile.)
3104
3105 Tue Mar 4 19:50:07 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3106
3107 * filesys.c (scm_stat): stat now takes fport arguments too as
3108 documented in the manual.
3109
3110 Mon Mar 3 07:11:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3111
3112 * debug.c (scm_single_step): Bugfix: Call continuation with
3113 scm_call_continuation instead of throwing to it.
3114
3115 Mon Mar 3 09:07:56 1997 Gary Houston <ghouston@actrix.gen.nz>
3116
3117 * ports.c (scm_char_ready_p): bug fix: in SCM_PROC char-ready's
3118 argument wasn't declared to be optional.
3119
3120 Sun Mar 2 16:34:40 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3121
3122 * stime.c (scm_init_stime): Add feature "current-time".
3123
3124 Sun Mar 2 06:37:31 1997 Gary Houston <ghouston@actrix.gen.nz>
3125
3126 * throw.h: prototype for scm_exit_status.
3127 * throw.c (scm_handle_by_message): if a 'quit is caught, use its
3128 args to derive an exit status. Allows (quit) to work from a
3129 script.
3130 (scm_exit_status): new function.
3131 #include "eq.h".
3132
3133 Sat Mar 1 00:09:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3134
3135 * eval.c (scm_deval): Removed some old code.
3136 (ENTER_APPLY): Bugfix: Reset apply-frame trap on trap as is done
3137 with the others.
3138 (ENTER_APPLY, scm_deval): Reset trace flag on apply-frame and
3139 exit-frame traps.
3140
3141 * symbols.c (msymbolize): Bugfix: Must initialize property list to
3142 SCM_EOL.
3143
3144 * procs.c: Introduce the existent C function scm_thunk_p at the
3145 Scheme level as well.
3146
3147 Wed Feb 26 12:53:58 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3148
3149 * symbols.c, symbols.h (scm_symbol_value0): New function. Can be
3150 used from C to easily lookup the value of a symbol in the current
3151 module.
3152
3153 Tue Feb 25 00:14:10 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3154
3155 * unif.c (scm_init_unif): Added #include "unif.x". (There are two
3156 scm_init_unif in this file. This will also fix a previous problem
3157 with guile-snarf.)
3158
3159 * configure.in: Added AM_MAINTAINER_MODE
3160
3161 Fri Feb 21 23:07:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3162
3163 * gdb_interface.h (GDB_INTERFACE): Added some (void *) casts to
3164 avoid warnings.
3165
3166 Fri Feb 21 18:00:38 1997 Marius Vollmer <mvo@zagadka.ping.de>
3167
3168 * Makefile.am (EXTRA_libguile_la_SOURCES): New variable to hold
3169 source files that are not always included in libguile but should
3170 have their dependencies calculated by automake. This variable is
3171 recognized by automake, no further magic is needed.
3172 (libguile_la_DEPENDENCIES): Changed to @LIBLOBJS@. Libtool wants
3173 to deal exclusively with *.lo files, as it seems. The *.o files
3174 are built automatically when the corresponding *.lo file gets
3175 built.
3176
3177 Wed Feb 19 14:04:23 1997 Jim Blandy <jimb@floss.cyclic.com>
3178
3179 * list.h (scm_list_cdr_ref): Delete prototype; function no longer
3180 exists.
3181
3182 Thu Feb 13 21:44:07 1997 Gary Houston <ghouston@actrix.gen.nz>
3183
3184 * unif.c (scm_array_set_x): minor change to argument error checking.
3185
3186 Tue Feb 11 18:19:47 1997 Jim Blandy <jimb@floss.cyclic.com>
3187
3188 * Makefile.am (libguile_la_SOURCES): Remove backtrace.c, debug.c,
3189 inet_aton.c, srcprop.c, stacks.c, and strerror.c from this list.
3190 They should only be included in the library at configure.in's
3191 discretion.
3192 (libguile_la_LDADD): Include the appropriate .lo files here.
3193 (libguile_la_DEPENDENCIES): List the corresponding .o files here,
3194 so we know when to build them (and their .lo bretheren).
3195 * configure.in (LIBLOBJS): New substituted variable. We let
3196 configure decide which .o files to include in LIBOBJS, and then
3197 put the corresponding list of .lo files in LIBLOBJS. The latter
3198 is what we pass to libtool.
3199 * Makefile.in, configure: regenerated.
3200
3201 Mon Feb 10 00:08:08 1997 Mikael Djurfeldt <mdj@kenneth>
3202
3203 * symbols.c (scm_sysintern0): New function. Contains the core of
3204 old scm_sysintern but doesn't take a second value argument.
3205 (scm_sysintern): Now uses scm_sysintern0.
3206 (scm_sysintern_no_module_lookup): Renamed to
3207 scm_sysintern0_no_module_lookup and doesn't take a second value
3208 argument any longer.
3209
3210 * symbols.h (scm_sysintern0: Added declaration.
3211
3212 * options.c (scm_init_opts): Use scm_sysintern0 instead of
3213 scm_sysintern when interning option keys. Otherwise we risk
3214 destroying the values of already interned variables.
3215
3216 * symbols.c (scm_sym2vcell): Bugfix: Treat definedp as
3217 scheme-level boolean (use SCM_NFALSEP).
3218
3219 * backtrace.c (scm_init_backtrace): Make Scheme-level variable
3220 `the-last-stack'.
3221 (scm_backtrace): New function. (C version of old function from
3222 boot-9.scm) Motivation: Make it possible to display backtraces
3223 without depending on boot-9.scm. (I'm uncertain if this
3224 motivation is good enough...)
3225
3226 * root.h (scm_root_state): Add member the_last_stack_var.
3227 (scm_the_stack_var): Defined to scm_root->the_last_stack_var.
3228
3229 * root.c (mark_root): Mark scm_the_last_stack_var.
3230
3231 * init.c (scm_start_stack): Initialize scm_the_last_stack_var to
3232 SCM_BOOL_F.
3233
3234 Sun Feb 9 18:04:41 1997 Mikael Djurfeldt <mdj@kenneth>
3235
3236 * throw.c (mark_lazy_catch, free_lazy_catch): Removed.
3237 1. mark_lazy_catch didn't mark the smob.
3238 2. Both functions above have standard variants:
3239 (lazy_catch_funs): Changed mark_lazy_catch --> scm_mark0,
3240 free_lazy_catch --> scm_free0.
3241
3242 Fri Feb 7 17:30:26 1997 Jim Blandy <jimb@floss.cyclic.com>
3243
3244 * throw.c (scm_internal_lazy_catch): New function.
3245 (scm_lazy_catch): Rewritten to use it.
3246 (scm_ithrow): Handle the new lazy catch representation.
3247 Use SCM_LAZY_CATCH_P, instead of assuming that any wind list entry
3248 that doesn't have a jmpbuf is a lazy catch clause.
3249 (tc16_lazy_catch, struct lazy_catch, mark_lazy_catch,
3250 free_lazy_catch, print_lazy_catch, lazy_catch_funs,
3251 make_lazy_catch, SCM_LAZY_CATCH_P): Support funs, including a new
3252 smob.
3253 (scm_init_throw): Register the new lazy-catch smob type.
3254 * throw.h (scm_internal_lazy_catch): decl for new function.
3255
3256 * throw.c (scm_internal_catch): Doc fixes.
3257
3258 * alloca.c: New file, needed to support the AC_FUNC_ALLOCA call in
3259 configure.in. Including this might cause problems if applications
3260 that link against libguile include their own copies of alloca, but
3261 if they're using autoconf, they should be adding libguile to LIBS
3262 before calling AC_FUNC_ALLOCA anyway, in which case they'll find
3263 the copy in libguile, and things will be okay. (I think.)
3264
3265 Thu Feb 6 03:10:32 1997 Gary Houston <ghouston@actrix.gen.nz>
3266
3267 * strop.c (scm_string_upcase_x, scm_string_downcase_x): moved from
3268 unif.c.
3269 strop.h: move prototypes too.
3270
3271 Wed Feb 5 08:33:00 1997 Gary Houston <ghouston@actrix.gen.nz>
3272
3273 * posix.c (scm_init_posix): don't intern EINTR since it's now done
3274 elsewhere.
3275
3276 * ioext.c (scm_init_ioext): don't intern stat macros, S_IRUSR
3277 etc. I deleted them from filesys.c long ago, but didn't
3278 notice they were here too (although ineffective since
3279 sys/stat.h wasn't included).
3280
3281 Tue Feb 4 18:17:50 1997 Tom Tromey <tromey@cygnus.com>
3282
3283 * eval.c: Don't define alloca in GCC case. gcc will automatically
3284 use __builtin_alloca if appropriate.
3285
3286 Tue Feb 4 16:57:40 1997 Jim Blandy <jimb@floss.cyclic.com>
3287
3288 * eval.c (safe_setjmp): New function: trivial wrapper for setjmp.
3289 (SCM_CEVAL, SCM_APPLY): Call it, instead of setjmp, to make sure
3290 that values of automatic variables are preserved. See comments
3291 for safe_setjmp for details.
3292
3293 Change from Thomas Morgan:
3294 * variable.c: Include eq.h.
3295 (var_equal): New function.
3296 (variable_smob): Use var_equal as the discriminator for variables.
3297
3298 * throw.c (s_throw): Remove extraneous declaration.
3299
3300 * configure.in: Call AC_FUNC_ALLOCA, to see if we have alloca.
3301 * eval.c: Add necessary CPP cruft to support that.
3302 * configure, Makefile.in, scmconfig.h.in: regenerated.
3303
3304 Change from Thomas Morgan:
3305 * procprop.c (scm_procedure_properties): Convert the Scheme
3306 boolean returned by scm_procedure_p into a C boolean before using
3307 it as a condition for SCM_ASSERT.
3308 (scm_procedure_property): Likewise.
3309
3310 * simpos.c (SYSTNAME): Accept both 'unix' and '__unix' as
3311 indications of Unixness.
3312 * stime.c: Same.
3313
3314 Tue Feb 4 05:07:35 1997 Gary Houston <ghouston@actrix.gen.nz>
3315
3316 * net_db.c (scm_lnaof): change scheme name from lnaof to inet-lnaof.
3317
3318 Mon Feb 3 06:12:37 1997 Gary Houston <ghouston@actrix.gen.nz>
3319
3320 * read.c (scm_lreadr): use scm_misc_error to improve one of the
3321 "unknown # object" error messages.
3322
3323 * strop.c (scm_i_index, scm_i_rindex): combine into one procedure
3324 (scm_i_index) and declare it static. Add a 'direction' argument
3325 to indicate what way the search should go.
3326 (scm_i_index): throw out-of-range error instead of wrong-type-arg
3327 if indices are bad.
3328 (scm_string_index, scm_string_rindex): adjust usage of scm_i_index.
3329 strop.h: remove scm_i_index, scm_i_rindex prototypes.
3330
3331 Fri Jan 31 04:33:11 1997 Gary Houston <ghouston@actrix.gen.nz>
3332
3333 * ioext.c, ioext.h: remove obsolete _sys_ from 9 procedure names.
3334
3335 * posix.c (scm_fork): Scheme name changed from fork to primitive-fork,
3336 to avoid clash with various scsh forks.
3337
3338 Thu Jan 30 20:14:09 1997 Mikael Djurfeldt <mdj@syk-0606.pdc.kth.se>
3339
3340 The following two changes (ramap.c, throw.c) are motivated by the
3341 apparent unportability of forward declarations of static arrays of
3342 the form `static foo bar[];'.
3343
3344 * ramap.c (scm_array_fill_x): Moved above scm_array_fill_int.
3345 (ra_rpsubrs, ra_asubrs): Moved to the top of array code.
3346
3347 * throw.c (scm_throw): Moved above scm_ithrow.
3348
3349 * options.h: Removed the extern declarations of scm_yes_sym and
3350 scm_no_sym since these are static.
3351
3352 Fri Jan 24 06:16:32 1997 Gary Houston <ghouston@actrix.gen.nz>
3353
3354 * ports.c: add SCM_PROC declarations for pt-size and pt-member.
3355
3356 * Makefile.am: remove AWK=@AWK@.
3357 Add a rule for generating errnos.list.
3358 (CLEANFILES): put errnos.list here instead of in DISTCLEANFILES.
3359
3360 * configure.in: add AC_SUBST(AWK) and AC_SUBST(ERRNO_EXTRACT).
3361 don't extract errnos, just set a variable (avoids the
3362 need to recompile error.c just because configure is run.)
3363
3364 * unif.h: update prototypes.
3365 * unif.c (scm_uniform_array_read,write): change the offset and
3366 length arguments to start and end, for consistency.
3367
3368 * __scm.h: uncomment SCM_ARG6 and SCM_ARG7, I needed SCM_ARG6.
3369
3370 * ioext.h: update prototypes.
3371 * ioext.c (scm_read_delimited_x): replaces scm_read_line and
3372 scm_read_line_x, it's a more general procedure using an
3373 interface from scsh. read-line and read-line! are now defined
3374 in boot-9.scm.
3375 Note that the new read-line trims the terminator
3376 by default, previously it was appended to the returned string. An
3377 optional argument specifies how to process the terminator (scsh
3378 compatible). For the old behaviour: (read-line port 'concat).
3379 scm_read_line, scm_read_line_x: deleted. (read-line port 'split)
3380 returns a pair, but is converted to multiple values if the scsh
3381 module is loaded.
3382
3383 socket.h: update prototypes.
3384 * socket.c (scm_recvfrom): for consistency with other procedures,
3385 take start and end as separate optional arguments.
3386 (scm_recv, scm_recvfrom): don't allow the second argument
3387 to be a size, only a buffer. Change the scheme names to
3388 recv! and recvfrom!. Don't return the buffer.
3389
3390 * ioext.h, posix.h: move prototypes too.
3391 * ioext.c, posix.c (scm_read_line, scm_read_line_x, scm_write_line:
3392 moved back from posix.c to ioext.c. Also move #includes of "genio.h"
3393 "read.h" and "unif.h".
3394 * ioext.c: include "chars.h"
3395
3396 Mon Jan 20 19:54:49 1997 Marius Vollmer <mvo@zagadka.ping.de>
3397
3398 * dynl.c: The dynamic linking and module registration functions
3399 are now defined even when dynamic linking is not available for the
3400 host system. Some of their functionality can be done without
3401 dynamic linking; when it's really needed, they throw errors.
3402
3403 Thu Jan 16 16:39:29 1997 Marius Vollmer <mvo@zagadka.ping.de>
3404
3405 * configure.in: Only define DYNAMIC_LINKING when one of the system
3406 dependent functions is detected.
3407 * dynl.c (scm_dynamic_func): New function to get the address of a
3408 function in a dynamic object.
3409 (scm_dynamic_call, scm_dynamic_args_call): Accept the values
3410 produced by scm_dynamic_func as the thing to call.
3411
3412 Sun Jan 12 21:09:42 1997 Marius Vollmer <mvo@zagadka.ping.de>
3413
3414 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c: Restructured.
3415 (scm_register_module_xxx, scm_registered_modules,
3416 scm_clear_registered_modules): New functions.
3417
3418 Sat Jan 11 21:37:15 1997 Marius Vollmer <mvo@zagadka.ping.de>
3419
3420 * symbols.c (scm_sysintern): Renamed to
3421 scm_sysintern_no_module_lookup.
3422 (scm_sysintern): New function to take the place of the old
3423 scm_sysintern. It uses the current toplevel lookup closure to give
3424 the symbol its value. This is a temporary hack to put packages
3425 like gtcltk into their own module.
3426 (scm_can_use_top_level_lookup_closure_var): New variable to tell
3427 us whether `scm_top_level_lookup_closure_var' has been initialized
3428 and is usable.
3429 * eval.c (scm_init_eval): Set it.
3430
3431 Sat Jan 18 00:03:31 1997 Gary Houston <ghouston@actrix.gen.nz>
3432
3433 * fports.c (scm_open_file): pass errno to scm_syserror_msg.
3434 * filesys.h: update prototypes. Remove macros: SCM_FD_P, SCM_FD_FLAGS,
3435 SCM_FD.
3436 * filesys.c (scm_sys_stat, scm_sys_lstat): pass errno to
3437 scm_syserror_msg.
3438 (scm_sys_read_fd, scm_sys_write_fd, scm_sys_close, scm_sys_lseek,
3439 scm_sys_dup): deleted: FD capability will be added to other
3440 procedures.
3441 Remove support for the FD object type: scm_tc16_fd, scm_fd_print,
3442 scm_fd_free, fd_smob, scm_intern_fd.
3443 (scm_open): renamed from scm_sys_open. Return a port instead of
3444 an FD object. Make the mode argument optional.
3445 (scm_sys_create): deleted, it's just a special case of open.
3446 (scm_init_filesys): move interning of constants O_CREAT etc.,
3447 here (were previously using SCM_CONST_LONG macro).
3448 Add missing constants: O_RDONLY, O_WRONLY, O_RDWR, O_CREAT.
3449 don't newsmob fd.
3450 (numerous _sys_ procedures): remove gratuitous _sys_ from names.
3451 include "fports.h" and <stdio.h>
3452 (scm_stat, scm_select): don't support FD objects.
3453
3454 * error.h: adjust scm_syserror_msg prototype.
3455 * error.c (scm_syserror_msg): take an extra argument for errno.
3456 Using the global value didn't always work, since it could be
3457 reset by procedure calls in the message or args arguments.
3458
3459 * fports.c (scm_setbuf0): call setbuf even if FIONREAD is not defined.
3460 I don't understand why the check was there (and what about the
3461 ultrix check?)
3462
3463 * strop.c (scm_string_copy): allow shared substrings to be copied.
3464
3465 * unif.h: corresponding change to prototypes.
3466 * unif.c (scm_uniform_array_read_x, scm_uniform_array_write_x):
3467 recognize two new optional arguments: offset and length. Allow
3468 the port argument to be an integer (file descriptor, for scsh).
3469 Include <unistd.h> for "read" prototype.
3470
3471 Tue Jan 14 02:42:02 1997 Gary Houston <ghouston@actrix.gen.nz>
3472
3473 * socket.c: don't include filesys.h.
3474
3475 Mon Jan 13 03:47:04 1997 Gary Houston <ghouston@actrix.gen.nz>
3476
3477 * Makefile.am: add AWK=@AWK@ (?)
3478
3479 * Makefile.am (EXTRA_DIST): add errnos_cnvt.awk, errnos.default,
3480 errnos_get.c.
3481 Add a rule to generate errnos.c from errnos.
3482 * error.c (scm_init_error): include errnos.c.
3483 * errnos_cnvt.awk: new file, converts the list of errno codes to
3484 C expressions.
3485 * errnos_get.c: new file.
3486 * errnos.default: new file, contains errnos to try if they can't
3487 be extracted from errno.h.
3488 * configure.in: if using GCC, try and extract errno codes from
3489 errno.h.
3490 Added AC_PROG_AWK.
3491
3492 Sat Jan 11 14:47:00 1997 Marius Vollmer <mvo@zagadka.ping.de>
3493
3494 * configure.in: Replaced AC_PROG_RANLIB with AM_PROG_LIBTOOL.
3495 * Makefile.am: Made libguile into a libtool library.
3496 * PLUGIN/guile.config: Removed "-L ../libguile" from xtra_cflags.
3497 Set libtool_libs to indicate that libguile is a libtool library.
3498 See guile/ChangeLog for details.
3499 * .cvsignore: ignore "*.lo", the libtool library objects.
3500
3501 Wed Jan 8 06:54:54 1997 Gary Houston <ghouston@actrix.gen.nz>
3502
3503 * net_db.c (scm_getserv): add missing SCM_ALLOW_INTS.
3504 use htons in getservbyport argument.
3505
3506 Tue Jan 7 18:11:24 1997 Jim Blandy <jimb@floss.cyclic.com>
3507
3508 * ports.h (SCM_PTOBNUM): Removed extraneous semicolon.
3509 * smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a
3510 duplicate.
3511
3512 * objprop.c (scm_object_property): No need to take the CDR of the
3513 value returned by scm_object_properties, since Aug 20 change.
3514
3515 * configure.in: When checking for struct linger, #include
3516 <sys/types.h> as well as <sys/socket.h>. I've never known
3517 <sys/types.h> to cause any portability problems, and Solaris's
3518 <sys/socket.h> needs it.
3519 * configure: Rebuilt.
3520
3521 I think the Sun compiler has chosen a perverse way to interpret
3522 ANSI declarations combined with K&R definitions. We'll
3523 appease it a little bit. But when it invades France, we fight.
3524 * print.c (scm_iprlist): Change 'tlr' argument to an int.
3525 * print.h (scm_iprlist): Here too.
3526 * numbers.c (scm_divbigdig): Change definition to match
3527 declaration in numbers.h.
3528 * unif.c (scm_makflo): Change definition to match declaration in
3529 unif.h.
3530
3531 * init.c (scm_boot_guile): Don't return the value of
3532 scm_boot_guile_1. This function doesn't return a value;
3533 scm_boot_guile_1 doesn't return a value (or return at all).
3534
3535 * eval.c (unmemocopy): Add a semicolon to appease the Sun
3536 compiler.
3537
3538 * simpos.c (SYSTNAME): Add case for AIX; otherwise it won't
3539 compile. I have a feeling this function is a bad idea anyway ---
3540 one should always test for features, not systems.
3541
3542 * smob.h (SCM_SMOBNUM, SCM_PTOBNUM): Remove extraneous
3543 semicolons. Only pure luck kept this from being noticed earlier.
3544
3545 Tue Jan 7 15:04:06 1997 Mikael Djurfeldt <mdj@kenneth>
3546
3547 * socket.c (scm_recvfrom): Added missing semicolon.
3548
3549 Mon Jan 6 20:39:08 1997 Gary Houston <ghouston@actrix.gen.nz>
3550
3551 * socket.c (scm_recvfrom): allow buff_or_size to be a list containing
3552 the buffer and start and end positions for scsh networking
3553 implementation.
3554
3555 Sun Jan 5 13:53:53 1997 Jim Blandy <jimb@floss.cyclic.com>
3556
3557 * configure.in: Revert previous change to this file; the problem
3558 is due to transient automake weirdness.
3559 * configure: Rebuilt.
3560
3561 * Makefile.am (EXTRA_DIST): Distribute PLUGIN/guile.libs.in, not
3562 PLUGIN/guile.libs. configure generates the latter from the former.
3563 * Makefile.in: Rebuilt.
3564
3565 * configure.in: Call AM_PROG_INSTALL; the automake manual says we
3566 need this if we install scripts, like guile-snarf.
3567 * configure: Rebuilt.
3568
3569 Thu Jan 2 01:56:38 1997 Marius Vollmer <mvo@zagadka.ping.de>
3570
3571 * Makefile.am (EXTRA_DIST): Added DYNAMIC-LINKING
3572
3573 Sat Dec 28 19:14:01 1996 Gary Houston <ghouston@actrix.gen.nz>
3574
3575 * socket.c (scm_addr_vector): fix faulty scm_listify.
3576
3577 Sat Dec 28 13:55:58 1996 Marius Vollmer <mvo@zagadka.ping.de>
3578
3579 * read.c (scm_lreadr): Encountering EOF after skipping a SCSH
3580 style block comment is no longer considered an error.
3581
3582 Fri Dec 27 13:44:23 1996 Marius Vollmer <mvo@zagadka.ping.de>
3583
3584 * PLUGIN/guile.libs.in: New file.
3585 * PLUGIN/guile.libs: Removed from repository.
3586 * configure.in: Create PLUGIN/guile.libs from
3587 PLUGIN/guile.libs.in. This is for including additonal libraries
3588 needed for dynamic linking.
3589 * Makefile.am (EXTRA_DIST): Distribute PLUGIN/guile.libs.in
3590 instead of PLUGIN/guile.libs.
3591
3592 * Makefile.am: Added explicit dependency "dynl.o: dynl.x".
3593
3594 Sun Dec 22 23:06:14 1996 Jim Blandy <jimb@floss.cyclic.com>
3595
3596 * list.c (scm_delq_x, scm_delv_x, scm_delete_x): Delete all
3597 occurrences of the given element from the list, not just the
3598 first. This is how the Emacs Lisp functions behave, how the
3599 analogous Common Lisp functions behave, and (I believe) how the
3600 older Maclisp functions worked. I realize that this change may
3601 break code, but it seemed better to break it before the Guile
3602 release than after.
3603
3604 * gc.c (scm_protect_object, scm_unprotect_object): New functions.
3605 Their prototypes were already present in gc.h, but they weren't
3606 implemented.
3607 (scm_init_storage): Initialize scm_protects.
3608 * root.c (scm_protects): New element of scm_sys_protects.
3609
3610 * net_db.h (scm_init_net_db): Fix spelling from scm_init_netdb.
3611
3612 Sat Dec 21 15:38:32 1996 Jim Blandy <jimb@floss.cyclic.com>
3613
3614 * libguile.h: Added #include "libguile/net_db.h".
3615
3616 * libguile.h: Don't #include "libguile/libpath.h", contrary to Oct
3617 30 change. That file is only meant for communication between the
3618 configuration process and load.c. If code linked against libguile
3619 wants to get at the paths mentioned in libpath.h, it can call
3620 functions declared in load.h.
3621
3622 Sat Dec 21 14:50:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3623
3624 * libguile.h: Removed #include "libguile/fdsocket.h"
3625
3626 * net_db.c: Added #include <sys/socket.h>.
3627
3628 Sat Dec 21 00:33:03 1996 Gary Houston <ghouston@actrix.gen.nz>
3629
3630 * filesys.c (scm_input_waiting_p): use select in preference to
3631 FIONREAD, since the latter doesn't detect EOF.
3632 Throw error if neither select nor FIONREAD available.
3633
3634 * socket.c (scm_connect): take a port, not a fd object.
3635 (scm_fill_sockaddr): throw an error if fam is not recognised.
3636 (scm_bind): use scm_fill_sockaddr.
3637 (scm_listen): take a port, not a fd object.
3638 (scm_accept): take and return a port. return #f in the car if
3639 address can't be got
3640 (scm_sock_fd_to_port): new procedure.
3641 (scm_socket): use scm_sock_fd_to_port.
3642 (scm_addr_vector): throw error if unrecognised address type.
3643 take an extra argument with the calling procedure name.
3644 (scm_getsockname): take a port. return #f if address can't be got.
3645 (scm_getpeername): take a port. return #f if address can't be got.
3646 (scm_recvfrom): take a port. return #f for address component if can't
3647 be got.
3648 (scm_sendto, scm_socketpair, scm_getsockopt scm_shutdown,
3649 scm_setsockopt, scm_recv, scm_send): take a port not a fd object.
3650
3651 Fri Dec 20 23:06:53 1996 Jim Blandy <jimb@floss.cyclic.com>
3652
3653 * throw.c (scm_internal_catch): Make body funcs and handler funcs
3654 use separate data pointers, to allow them to be designed
3655 independently and reused.
3656 (scm_body_thunk, scm_handle_by_proc, scm_handle_by_message):
3657 Renamed from catch_body, catch_handler, and uncaught_throw; made
3658 generically useful.
3659 (struct scm_catch_body_data): Renamed from catch_body_data; moved
3660 to throw.h.
3661 (scm_catch): Use the above.
3662 (scm_throw): Don't bother printing a message for an uncaught
3663 throw; we establish a default handler in init.
3664 * throw.h (scm_internal_catch): Prototype updated.
3665 (scm_body_thunk, scm_handle_by_proc, scm_handle_by_message): New
3666 decls.
3667 (struct scm_body_thunk_data): New structure, used as data
3668 argument to scm_body_thunk.
3669 * init.c (struct main_func_closure): New structure, packaging up
3670 the data to pass to the user's main function.
3671 (scm_boot_guile): Create one. Pass it to scm_boot_guile_1.
3672 (scm_boot_guile_1): Pass it through to invoke_main_func. Use
3673 scm_internal_catch to establish a catch-all handler, using
3674 scm_handle_by_message. This replaces the special-case code in
3675 scm_throw.
3676 (invoke_main_func): Body function for scm_internal_catch; invoke
3677 the user's main function, using the main_func_closure pointer to
3678 decide what to pass it.
3679 * root.c (struct cwdr_body_data): Remove handler_proc member.
3680 (cwdr): Use scm_handle_by_proc instead of cwdr_handler.
3681 (cwdr_handler): Removed.
3682
3683 Thu Dec 19 00:00:26 1996 Gary Houston <ghouston@actrix.gen.nz>
3684
3685 * socket.h (SCM_P): update bind prototype.
3686 * socket.c (scm_init_socket): intern PF_UNSPEC, PF_UNIX, PF_INET.
3687 include "feature.h".
3688 (scm_socket): return a port, not a file descriptor object.
3689 include "fports.h" and <unistd.h>
3690 (scm_bind): take a port, not a file descriptor object.
3691 take an extra argument for address args.
3692
3693 * net_db.c (scm_init_net_db): intern INADDR_ANY, INADDR_BROADCAST,
3694 INADDR_NONE, INADDR_LOOPBACK.
3695
3696 Tue Dec 17 22:58:26 1996 Gary Houston <ghouston@actrix.gen.nz>
3697
3698 * init.c: include net_db.h and not fdsocket.h.
3699 (scm_boot_guile_1): call scm_init_net_db and not scm_init_fdsocket.
3700
3701 * Makefile.am: corresponding changes.
3702 * socket.h: renamed from fdsocket.h, fix names.
3703 * net_db.h: renamed from socket.h, fix names.
3704 * socket.c: renamed from fdsocket.c.
3705 remove _sys from procedure names.
3706 (scm_init_socket): rename from scm_init_fdsocket. include socket.x.
3707 add "socket" to features list.
3708 * net_db.c: renamed from socket.c.
3709 remove _sys from procedure names.
3710 (scm_init_net_db): rename from scm_init_socket. include net_db.x.
3711 add "net-db" to features list.
3712 include "net_db.h". don't include <sys/socket.h> or
3713 <sys/un.h>.
3714
3715 Thu Dec 19 14:03:24 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3716
3717 * tags.h (scm_tags): Removed comma at end of last enumerator.
3718
3719 Thu Dec 19 02:54:59 1996 Jim Blandy <jimb@floss.cyclic.com>
3720
3721 Don't use GCC extensions to allocate space for debugging frames.
3722 (Here he goes again! Why do we put up with this?!)
3723 * debug.h (scm_debug_frame): Make the 'vect' member a pointer to
3724 an scm_debug_info structure, not an in-line array of them. Add
3725 'info' member, to say how many vect elements we've used, for eval
3726 frames.
3727 * eval.c (SCM_CEVAL): Use alloca to allocate space for vect. Use
3728 a new variable debug_info_end to mark the end of vect, instead of
3729 the address of the 'info' pointer itself.
3730 [DEVAL] (ENTER_APPLY, SCM_CEVAL, SCM_APPLY): Remove casts of
3731 &debug to scm_debug_frame *; debug is a real scm_debug_frame now.
3732 (SCM_APPLY): Explicitly allocate space for debug.vect.
3733 * debug.c (scm_m_start_stack): Same, for vframe.vect.
3734 * stacks.c: Adjusted for new debug frame structure.
3735 (RELOC_INFO, RELOC_FRAME): New macros.
3736 (stack_depth, read_frames): Use them, and new scm_debug_frame
3737 element 'info', instead of magically knowing that eval frames have
3738 an info pointer sitting after vect.
3739 (scm_make_stack, scm_stack_id, scm_last_stack_frame): Use
3740 RELOC_FRAME.
3741 (scm_init_stacks): Formatting tweaks.
3742
3743 Wed Dec 18 14:57:57 1996 Jim Blandy <jimb@floss.cyclic.com>
3744
3745 Give GCC more control flow information, so it can be sure that
3746 variables aren't used uninitialized.
3747 * error.h (scm_error, scm_syserror, scm_syserror_msg,
3748 scm_sysmissing, scm_num_overflow, scm_out_of_range,
3749 scm_wrong_num_args, scm_wrong_type_arg, scm_memory_error,
3750 scm_misc_error): Tell GCC that these functions never return.
3751 * struct.c (scm_struct_ref, scm_struct_set_x): If we can't figure
3752 out the field type, call abort if SCM_ASSERT returns, to placate
3753 the optimizer.
3754 * stacks.c (scm_make_stack, scm_last_stack_frame): abort if
3755 scm_wta ever returns. We can't handle this case anyway, and this
3756 gives the optimizer more information.
3757 * unif.c (scm_uniform_vector_ref, scm_array_set_x): Abort if
3758 scm_wta ever returns.
3759
3760 In some cases, the code is fine, but GCC isn't smart enough to
3761 figure that out; this usually happens when one variable is only
3762 initialized and used when a particular condition holds true, and
3763 we know that condition will never change within a given invocation
3764 of the function. In this case, we simply initialize the variables
3765 to placate the compiler, hopefully to a value which will cause a
3766 crash if it is ever actually used.
3767 * print.c (scm_iprin1): Initialize mw_pos.
3768 * read.c (scm_lreadrecparen): Initialize tl2, ans2.
3769 * throw.c (scm_ithrow): Initialize dynpair.
3770 * unif.c (scm_uniform_vector_ref): Initialize cra.
3771 * struct.c (init_struct): Initialize prot.
3772 * mbstrings.c (scm_print_mb_symbol): Initialize mw_pos and inc.
3773
3774 * strports.c (scm_eval_0str): Don't return uninitialized garbage
3775 if EXPR contains no expressions.
3776
3777 Wed Dec 18 11:43:22 1996 Jim Blandy <jimb@totoro.cyclic.com>
3778
3779 * eval.c, debug.h: Revert changes of Dec 16 and Nov 21. They
3780 cause an infinite loop (???). So much for the algebraic
3781 equivalency of variable-sized arrays and alloca...
3782
3783 Tue Dec 17 20:29:03 1996 Marius Vollmer <mvo@zagadka.ping.de>
3784
3785 * backtrace.c (scm_display_error): Bugfix: scm_procedure_p returns
3786 a SCM boolean, not a C boolean.
3787
3788 Sat Dec 14 23:21:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
3789
3790 * gc.c (SCM_MTRIGGER_HYSTERESIS): New memory management parameter.
3791 (scm_must_malloc, scm_must_realloc): Added a hysteresis to the
3792 rules for raising scm_mtrigger. Previously, unfortunate but not
3793 unlikely circumstances could result in almost constant invokation
3794 of the gc. Now, this situations should be less likely, but they
3795 are not prevented completely.
3796
3797 Tue Dec 17 16:19:07 1996 Jim Blandy <jimb@totoro.cyclic.com>
3798
3799 * numbers.c (scm_fuck): Procedure removed; looks like old test
3800 code.
3801 * numbers.h: Prototype removed.
3802
3803 Mon Dec 16 18:20:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
3804
3805 * debug.h (scm_debug_frame): Change `vect' member from an in-line
3806 array to a pointer, to match my Nov 21 change in eval.c.
3807
3808 Fri Dec 13 16:12:14 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3809
3810 * libguile.h: Added #include "libguile/backtrace.h", #include
3811 "libguile/stacks.h".
3812
3813 * strings.c (scm_string scm_make_string scm_string_ref
3814 scm_string_set_x scm_string_equal_p scm_string_append):
3815 Bugfix according to scm patch from Aubrey Jaffer:
3816 Corrected long-standing
3817 (not (eqv? (integer->char 128)
3818 (string-ref (make-string 1 (integer->char 128)) 0)))
3819 bug found by John Kozak <jk@noontide.demon.co.uk>.
3820
3821 * strports.c, strports.h: Make scm_eval_0str return the value of
3822 the last expression evaluated (previously, it returned void).
3823
3824 * strports.c, strports.h: New function: scm_read_0str. Does what
3825 it sounds like.
3826
3827 Tue Dec 10 23:38:43 1996 Gary Houston <ghouston@actrix.gen.nz>
3828
3829 * simpos.c (scm_getenv): return #f if string can't be found in the
3830 environment instead of throwing an exception, for compatibility
3831 with numerous other systems.
3832
3833 Mon Dec 9 23:23:35 1996 Tom Tromey <tromey@cygnus.com>
3834
3835 * Makefile.am (.c.x): Use guile-snarf.
3836 * configure.in (AC_OUTPUT): Generate guile-snarf; make it
3837 executable.
3838 * guile-snarf.in: New file, resurrected from old guile-snarf.sh.
3839
3840 Mon Dec 9 18:36:50 1996 Jim Blandy <jimb@duality.gnu.ai.mit.edu>
3841
3842 * backtrace.c (scm_display_error_message): Made non-static, and
3843 renamed from display_error_message.
3844 * backtrace.h (scm_display_error_message): Added extern decl.
3845 * throw.c (uncaught_throw): Use it to display the error message.
3846
3847 Mon Dec 9 10:10:38 1996 Tom Tromey <tromey@cygnus.com>
3848
3849 * inet_aton.c: Use #if 0, not #ifdef 0.
3850
3851 Mon Dec 9 06:36:48 1996 Gary Houston <ghouston@actrix.gen.nz>
3852
3853 * ioext.c (scm_sys_ftell): use scm_long2num instead of SCM_MAKINUM
3854 to convert the returned value.
3855 (scm_sys_fseek): use scm_num2long instead of SCM_INUM to convert
3856 the offset argument.
3857
3858 Sun Dec 8 21:06:38 1996 Jim Blandy <jimb@duality.gnu.ai.mit.edu>
3859
3860 Add new interface to catch/throw, usable from C as well as
3861 Scheme.
3862 * throw.h (scm_catch_body_t, scm_catch_handler_t): New types.
3863 (scm_internal_catch): New function, replaces...
3864 (scm_catch_apply): Deleted.
3865 * throw.c (scm_catch_apply): Deleted; replaced with a more general
3866 mechanism which is a bit more code, but can be used nicely from C
3867 and implement the Scheme semantics as well.
3868 (scm_internal_catch): This is the replacement; it's named after
3869 the analogous function in Emacs.
3870 (scm_catch): Reimplemented in terms of the above.
3871 (struct catch_body_data, catch_body, catch_handler): New
3872 functions, used by scm_catch.
3873 * root.c (cwdr): Reimplemented in terms of scm_internal_catch.
3874 (struct cwdr_body_data, cwdr_body, cwdr_handler): New functions;
3875 support for new cwdr.
3876
3877 * Makefile.am (libpath.h): Re-incorporate Mikael's changes of Wed
3878 Oct 30.
3879
3880 Sun Dec 8 17:55:34 1996 Marius Vollmer <mvo@zagadka.ping.de>
3881
3882 * acconfig.h: Added DYNAMIC_LINKING symbol.
3883 * configure.in: Add option and checks for dynamic linking.
3884 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c, dynl-vms.c,
3885 dynl.h: New files for dynamic linking support.
3886 * Makefile.am (libguile_a_SOURCES):
3887 Added "dynl.c".
3888 (modinclude_HEADERS): Added "dynl.h".
3889 (EXTRA_DIST): Added "dynl-dl.c", "dynl-dld.c", "dynl-shl.c" and
3890 "dynl-vms.c".
3891 * init.c (scm_boot_guile_1): Call
3892 scm_init_dynamic_linking to initialize dynamic linking support.
3893
3894 Thu Dec 5 22:47:53 1996 Marius Vollmer <mvo@zagadka.ping.de>
3895
3896 * init.c (scm_boot_guile_1): Moved `live' variable to the toplevel
3897 (as we Schemers say). It needs to be global, so that I can tweak
3898 it for the proper operation of unexec.
3899 (scm_boot_guile_1_live): New variable, see above.
3900
3901 Sun Dec 1 00:00:49 1996 Tom Tromey <tromey@cygnus.com>
3902
3903 * guile-snarf.sh: Removed.
3904 * PLUGIN/guile.libs: Added dependency for -lm.
3905 * acinclude.m4: Renamed from aclocal.m4.
3906 * PLUGIN/greet: Removed.
3907 * Makefile.am, aclocal.m4: New files.
3908 * configure.in: Updated for Automake.
3909
3910 Thu Nov 28 00:23:55 1996 Marius Vollmer <mvo@zagadka.ping.de>
3911
3912 * eval.c (scm_definedp): Use top_level_lookup_closure_var
3913 and not top_level_lookup_thunk_var.
3914
3915 Wed Nov 27 22:04:19 1996 Jim Blandy <jimb@baalperazim.frob.com>
3916
3917 * Makefile.in (ancillary): List ChangeLog-scm, not ChangeLog.scm.
3918
3919 Wed Nov 27 14:14:56 1996 Marius Vollmer <mvo@zagadka.ping.de>
3920
3921 * eval.c (scm_definedp): Incompatibly changed to be a builtin
3922 Scheme function, instead of syntax. Single argument is now a
3923 symbol.
3924
3925 Thu Nov 21 20:26:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
3926
3927 * ramap.c (scm_ra_sum, scm_ra_difference, scm_ra_product,
3928 scm_ra_divide): Properly terminate statements passed as arguments
3929 to IVDEP macros. (Thanks to Bernard Urban.)
3930
3931 * eval.c (SCM_CEVAL): Use alloca, not GCC's extensions for arrays
3932 with non-constant sizes. (Thanks to Bernard Urban.)
3933
3934 Thu Nov 21 11:17:42 1996 Jim Blandy <jimb@floss.cyclic.com>
3935
3936 It's an "eval closure", not an "eval thunk." A thunk is a
3937 function of no arguments.
3938 * root.h (struct scm_root_state): Renamed
3939 top_level_lookup_closure_var from top_level_lookup_thunk_var.
3940 (scm_top_level_lookup_closure_var): Renamed from
3941 scm_top_level_lookup_thunk_var.
3942 * root.c (mark_root): Uses changed.
3943 * gdbint.c (gdb_eval, gdb_binding): Uses changed.
3944 * init.c (scm_start_stack): Uses changed.
3945 * eval.c (scm_eval, scm_eval_x, scm_init_eval): Rename uses.
3946 Change scheme-visible name to *top-level-lookup-closure* from
3947 *top-level-lookup-thunk*.
3948
3949 Tue Nov 19 22:43:31 1996 Jim Blandy <jimb@totoro.cyclic.com>
3950
3951 * gc.c (scm_igc, scm_gc_mark): Round up the size of the stack we
3952 pass to scm_mark_locations. (Thanks to Aubrey Jaffer.)
3953
3954 Sun Nov 10 13:35:05 1996 Jim Blandy <jimb@floss.cyclic.com>
3955
3956 * gc.c (struct scm_heap_seg_data): Doc fixes.
3957
3958 * gc.c (scm_gc_sweep): Empty all segments' freelists before
3959 sweeping. Then, prepend each segment's free cells to its
3960 freelist, rather than wiping out the old value. (Thanks to Marius
3961 Vollmer.)
3962
3963 * gc.c (which_seg, scm_map_free_list, scm_newcell_count,
3964 scm_check_freelist, scm_debug_newcell): New functions and
3965 variables, for debugging freelist problems.
3966 * pairs.h (SCM_NEWCELL): New debugging version added.
3967 * gc.h (scm_debug_newcell): Added extern declaration, used by
3968 debugging version of SCM_NEWCELL.
3969
3970 Sat Nov 9 19:02:46 1996 Jim Blandy <jimb@floss.cyclic.com>
3971
3972 On some systems <libc.h> conflicts with <unistd.h>, and should not
3973 be #included at all.
3974 * aclocal.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): New autoconf macro.
3975 * acconfig.h (LIBC_H_WITH_UNISTD_H): New CPP symbol.
3976 * configure.in: Call it.
3977 * posix.c, filesys.c: Use its results to decide whether or not to
3978 #include <libc.h>.
3979 * configure, scmconfig.h.in: Rebuilt with autoconf and
3980 autoheader.
3981
3982 Wed Nov 6 16:19:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
3983
3984 * fports.c (scm_stdio_to_port, scm_open_file): Set the port's
3985 pointer to the stdio stream before calling scm_setbuf0, so the
3986 latter will be able to retrieve it. I'm surprised this didn't
3987 segfault earlier. (Thanks to Christopher Lee.)
3988
3989 Wed Nov 6 16:01:20 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3990
3991 * throw.c (scm_lazy_catch, scm_ithrow): Completed implementation
3992 of `lazy-catch'.
3993
3994 Sat Nov 2 21:01:48 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3995
3996 * stacks.c, stacks.h (scm_make_stack): Now takes arbitrary
3997 number of stack narrowing specifier pairs. The first specifier in
3998 a pair controls inner border, the second the outer border. A
3999 number means cut that number of frames, a procedure object means
4000 cut until that object is found in operator position in a frame.
4001
4002 * root.c (cwdr): Bugfix.
4003
4004 * read.c: Recording of positions disabled by default.
4005
4006 * procs.c (scm_closure_p): New function.
4007
4008 * posix.c (scm_tmpnam): New function.
4009
4010 * load.c: Added #include "throw.h".
4011 (scm_sys_search_load_path): Bugfix: Don't add an extra '/' if path
4012 ends with '/'.
4013
4014 * load.c, load.h (scm_read_and_eval_x): New function.
4015
4016 * eval.c: Renamed debug option "deval" to "debug".
4017
4018 (scm_eval_x): `eval!' is no longer accessible from the scheme
4019 level. Motivation: We can't allow operations which introduce
4020 glocs into the scheme level. Guile's type system can't handle
4021 these as data. Use `eval' or `read-and-eval!' as replacement.
4022
4023 * debug.c (scm_m_start_stack): Bugfix: Use SCM_ECONSP instead of
4024 SCM_CONSP since this is a macro!; Set vframe.prev to
4025 scm_last_debug_frame instead of 0. In this way we can look
4026 "above" the virtual start stack frame if we wish.
4027 (scm_debug_hang): New function: Useful for debugging Guile in
4028 certain tricky situations. Will probably be removed later...
4029
4030 * debug.h: Changed semantics of debug option "backtrace". This
4031 option now only indicates whether we want automatic backtrace at
4032 an error.
4033
4034 Wed Oct 30 00:31:55 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4035
4036 * ports.c: #include "filesys.h"
4037 (scm_char_ready_p): input_waiting renamed and moved to filesys.c.
4038
4039 * filesys.c, filesys.h (scm_input_waiting_p): Moved from ports.c.
4040 Motivation: This is system specific code which is related to file
4041 I/O. It also may use select. Added code by Gary Houston to
4042 detect presence of character in stdio buffers.
4043
4044 * libguile.h: #include "libguile/libpath.h"
4045
4046 * Makefile.in (libpath.h): Renamed definition of: LIBRARY_PATH -->
4047 SCM_LIBRARY_DIR; Added definitions of: SCM_PKGDATA_DIR,
4048 SCM_SITE_DIR; Install libpath.h among the other include files.
4049
4050 * load.c, load.h (scm_sys_package_data_dir): New function.
4051
4052 Mon Oct 28 11:43:41 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4053
4054 * stacks.h: Bugfix: Don't use tail-array length field as stack
4055 length field! This screwed GC.
4056
4057 Tue Oct 22 01:01:00 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4058
4059 * _scm.h: Added #ifndef around definition of macros min and max.
4060
4061 * __scm.h: Added hooks for threads to plugin to in ints protection
4062 macros: SCM_THREAD_DEFER, SCM_THREAD_ALLOW, SCM_THREAD_REDEFER,
4063 SCM_THREAD_ALLOW_1, SCM_THREAD_ALLOW_2. Motivation: We don't want
4064 the main code in these macros duplicated and spread over multiple
4065 files. Renamed SCM_THREADS_SWITCHING_CODE ->
4066 SCM_THREAD_SWITCHING_CODE.
4067
4068 Tue Oct 29 14:55:40 1996 Marius Vollmer <mvo@zagadka.ping.de>
4069
4070 * snarf.h: New file.
4071 * guile-snarf.sh: New file.
4072 * Makefile.in (inner_h_files): Added snarf.h
4073 (ancillary, install, uninstall, distclean): Added actions for
4074 guile-snarf.
4075 (.c.x): Use guile-snarf.
4076 (guile-snarf): New rule, to produce guile-snarf from guile-snarf.sh.
4077 (gen_c_files): Note that these depend on guile-snarf.
4078 * _scm.h: Removed the snarfing macros (SCM_PROC, etc). They are
4079 now in "snarf.h". Added #include "snarf.h" to get them.
4080 * libguile.h: Added #include "snarf.h".
4081 (Patches applied and tweaked by Jim Blandy.)
4082
4083 Tue Oct 29 13:21:13 1996 Jim Blandy <jimb@totoro.cyclic.com>
4084
4085 * socket.c: Use K&R style declaration for 'close'; the GNU coding
4086 standards suggest against providing prototypes for system
4087 functions. Thanks to Greg Troxel.
4088
4089 Mon Oct 28 16:48:32 1996 Jim Blandy <jimb@floss.cyclic.com>
4090
4091 * strports.c (scm_eval_0str): New function.
4092 #include "read.h", to get prototype for scm_read.
4093 * Makefile.in (strports.o): Update dependencies.
4094 * strports.h: New prototype.
4095
4096 * numbers.c (scm_integer_p): Renamed from scm_int_p; change its
4097 scheme name from "int?" to "integer?". It seems to do the job.
4098 * numbers.h: Rename prototype too.
4099 * scmhob.h (intp): Change definition to refer to scm_integer_p. I
4100 hope this is right.
4101
4102 * numbers.c (scm_less_p, scm_gr_p, scm_leq_p, scm_geq_p,
4103 scm_num_eq_p): Rename these according to R4RS conventions: call
4104 them <, <=, =, >, and >=, not <?, <=?, =?, >?, and >=?. En route
4105 to making libguile R4RS compliant without ice-9...
4106
4107 * load.c (scm_sys_search_load_path): Search for files under all
4108 extensions listed in the %load-extensions variable. If FILENAME
4109 is absolute, return it unchanged, without searching the load path.
4110 (scm_loc_load_extensions): New variable, pointing to
4111 %load-extensions' value cell.
4112 (scm_init_load): Initialize it, and the value it points to.
4113 (scm_primitive_load_path): Improve error reporting.
4114
4115 * load.c (scm_loc_load_hook): New variable, pointing to value cell
4116 of new Scheme variable %load-hook.
4117 (scm_primitive_load): Apply %load-hook to filename.
4118
4119 Mon Oct 28 06:28:28 1996 Gary Houston <ghouston@actrix.gen.nz>
4120
4121 * configure.in: add tests for figuring out whether buffered data
4122 is available in a FILE structure, which is needed by char-ready.
4123
4124 * acconfig.h: define FILE_CNT_FIELD, FILE_CNT_GPTR and
4125 FILE_CNT_READPTR.
4126
4127 * simpos.c (scm_getenv): renamed from scm_sys_getenv. Throw
4128 exceptions using misc_error instead of syserror. It seems a bit
4129 odd to throw an exception if a string can't be found in the
4130 environment, but it's consistent with open-file, stat etc.
4131 (simpos.h): remove sys_ from getenv.
4132
4133 * posix.c (scm_putenv): renamed from scm_sys_putenv. If an error
4134 occurs, throw an error instead of returning errno. Return value
4135 is now unspecified.
4136 (numerous in posix.c and posix.h): removed superfluous sys_ from names.
4137
4138 Sun Oct 27 01:22:04 1996 Gary Houston <ghouston@actrix.gen.nz>
4139
4140 * filesys.c (scm_stat2scm): derive file type and permissions from
4141 the stat mode and append them to the returned vector.
4142 There isn't much overhead in doing this and it avoids the need to
4143 work with S_IRUSR et al. in Scheme.
4144 Define symbols scm_sym_regular etc.
4145 (scm_init_filesys): don't intern S_IRUSR etc.
4146
4147 * load.c: change s_try_load and s_try_load_path to s_primitive_load
4148 and s_primitive_load_path.
4149
4150 * eval.c, load.c, error.c (scm_wta): use scm_misc_error.
4151
4152 * error.h: don't declare error symbols. prototype for scm_misc_error.
4153
4154 * stackchk.c (scm_stack_overflow_key): defined here instead of in
4155 error.c.
4156
4157 * error.c: use SCM_SYMBOL to set up error keys.
4158 scm_misc_error: new procedure.
4159
4160 Fri Oct 25 01:56:30 1996 Jim Blandy <jimb@floss.cyclic.com>
4161
4162 * read.c (scm_lreadr): Recognize SCSH-style block comments; text
4163 between `#!' and `!#' is ignored.
4164 (skip_scsh_block_comment): New function.
4165
4166 * feature.c (scm_set_program_arguments): New argument, FIRST.
4167 * feature.h: Update prototype.
4168 * init.c (scm_boot_guile_1): Pass new argument to
4169 scm_set_program_arguments.
4170
4171 Tue Oct 22 20:54:42 1996 Jim Blandy <jimb@floss.cyclic.com>
4172
4173 * init.c (scm_start_stack): Don't initialize scm_progargs here.
4174 (scm_boot_guile): Call scm_set_program_arguments here, later than
4175 the old initialization.
4176
4177 * init.c: (scm_boot_guile, scm_boot_guile_1): New, simplified
4178 initialization procedure.
4179 - Delete in, out, err arguments; there are other perfectly good
4180 ways to override these when desired.
4181 - Delete result argument; this function shouldn't ever return.
4182 - Rename init_func argument to main_func, for less confusion.
4183 - Delete boot_cmd argument; main_func is more general.
4184 -Add 'closure' argument, to help people pass data to main_func
4185 without resorting to global variables.
4186 - Abort if reentered; don't bother returning an error code.
4187 - Call scm_init_standard_ports to set up the default/current
4188 standard ports; no need to pass them to scm_start_stack.
4189 - Remove code to evaluate the boot_cmd, and start the repl; let
4190 the user do something like that in main_func if they want.
4191 - Remove code to package up a return value; main_func can do any
4192 of that as needed.
4193 - Call exit (0), instead of returning.
4194 (scm_start_stack): Don't initialize the I/O ports here; that's
4195 weird. Delete in, out, err arguments. Move guts to
4196 scm_init_standard_ports, scm_stdio_to_port.
4197 (scm_init_standard_ports): New function, to set up current and
4198 default standard ports.
4199 (scm_start_stack, scm_restart_stack): Make these static.
4200 * init.h (scm_boot_guile): Adjust declaration.
4201 (scm_start_stack, scm_restart_stack): Remove externally
4202 visible declarations for these.
4203 (enum scm_boot_status): Removed; now scm_boot_guile never returns.
4204
4205 * fports.c (scm_stdio_to_port): New function. Its guts used to be
4206 written out several times in scm_start_stack.
4207 * fports.h: New declaration for the above.
4208
4209 * feature.c (scm_set_program_arguments): New function.
4210 * feature.h: New declaration for the above.
4211
4212 * ports.c: Formatting tweak.
4213
4214 Sun Oct 20 03:29:32 1996 Mikael Djurfeldt <mdj@kenneth>
4215
4216 * pairs.h, eval.c, eval.h, feature.c, gc.c, list.c, load.c,
4217 ramap.c, symbols.c: Added new selectors SCM_CARLOC and SCM_CDRLOC
4218 for obtaining the address of a car or cdr field. Motivation:
4219 &SCM_CXR make assumptions about the internal structure of the
4220 SCM_CXR selectors.
4221
4222 * eval.h, eval.c: Added new selector SCM_GLOC_VAL_LOC.
4223 Motivation: see SCM_CXRLOC.
4224
4225 * pairs.h, eval.c, gc.c, init.c, ioext.c, ports.c, ports.h,
4226 srcprop.h, tags.h, throw.c, unif.c: Added new selectors
4227 SCM_SETAND_CAR, SCM_SETAND_CDR, SCM_SETOR_CAR and SCM_SETOR_CDR.
4228 Motivation: Safer use. Some other macros are defined in terms of
4229 these operations. If these are defined using the SCM_SETCXR
4230 (<e1>, SCM_CXR (<e1>) <op> <e2>) pattern a complex <e1> will lead
4231 to inefficiency and an <e1> with side-effects could potentially
4232 break. Also, these particular operations are heavily utilized in
4233 the garbage collector. In unoptimized code there will be a
4234 measurable speedup.
4235
4236 * alist.c, arbiters.c, continuations.c, debug.c, debug.h, eval.c,
4237 eval.h, feature.c, filesys.c, fports.c, gc.c, gsubr.c, init.c,
4238 ioext.c, kw.c, list.c, load.c, mallocs.c, numbers.c, numbers.h,
4239 pairs.c, pairs.h, ports.c, ports.h, posix.c, procprop.c, procs.c,
4240 procs.h, ramap.c, read.c, root.c, srcprop.c, srcprop.h,
4241 strports.c, symbols.c, tags.h, throw.c, unif.c, variable.c,
4242 vports.c: Cleaned up use of pairs: Don't make any special
4243 assumptions about the internal structure of selectors and
4244 mutators: SCM_CXR (<e1>) = <e2> --> SCM_SETCXR (<e1>, <e2>),
4245 SCM_CXR (<e1>) &= <e2> --> SCM_SETAND_CXR (<e1>, <e2>) etc.
4246 (Among other things, this change makes it easier to build Guile
4247 with certain compilers which have problems with casted lvalues.)
4248
4249 Fri Oct 18 01:11:56 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4250
4251 * stacks.c: Improve selection of relevant stack frames when making
4252 a stack object. Introduce one level of indirection in the stack
4253 object to make it possible to "narrow" to a certain region of the
4254 stack. This facilitates making use of more clever algorithms (not
4255 implemented) for selecting relevant frames and gives a cleaner
4256 design since selection of frames can be done independently of
4257 extraction of frames from the real stack.
4258 (scm_stack_id): Also take #t as argument which means look at
4259 current stack.
4260
4261 * stacks.h: In struct scm_stack: Turn field frames into a pointer.
4262 Turn n_tail into an integer directly representing current number
4263 of frames in stack. Add field tail.
4264
4265 * ports.c (scm_port_line_x, scm_port_column_x): New mutators.
4266
4267 * debug.c (scm_make_memoized): Made it available at scheme level.
4268 (scm_unmemoize, scm_memoized_environment): Bugfix: Check for
4269 SCM_NIMP before applying heavier predicates in argument checking.
4270 (scm_local_eval): Also take memoized object as argument.
4271
4272 * backtrace.c (scm_display_error): Just a safety measure: Stacks
4273 aren't created with zero length, but should such a strange
4274 creature suddenly turn up...
4275
4276 Wed Oct 16 11:08:41 1996 Marius Vollmer <mvo@zagadka.ping.de>
4277
4278 * hashtab.h (scm_hashx_remove_x): Renamed `delete' parameter to
4279 `del', for the sake of C++ compilers. (Patch applied by JimB.)
4280
4281 Tue Oct 15 17:06:13 1996 Jim Blandy <jimb@floss.cyclic.com>
4282
4283 * variable.c (scm_make_variable): Make the name hint optional, as
4284 documented.
4285 (anonymous_variable_sym): Renamed from variable_sym. All uses
4286 changed.
4287
4288 * load.c (scm_primitive_load, scm_primitive_load_path): Renamed
4289 from scm_sys_try_load and scm_sys_try_load_path. The Scheme name
4290 of scm_primitive_load_path was also changed to
4291 "primitive-load-path", from "%try-load-path". Callers changed.
4292 We'd like to respect the convention that a function named
4293 "try-mumble" should behave just like the function called "mumble",
4294 but return #f instead of signalling some error.
4295 * load.h: Rename prototypes.
4296
4297 Tue Oct 15 05:34:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4298
4299 * print.c (make_print_state, grow_print_state), print.h: Modified
4300 the print state representation: Don't use a tail array for
4301 recording of circular references. Resizing of the print state
4302 structure invalidates the print state pointer. To avoid passing
4303 around an indirect print state reference to all printing
4304 functions, we instead let the print state reference a resizable
4305 vector.
4306
4307 Mon Oct 14 19:25:00 1996 Jim Blandy <jimb@totoro.cyclic.com>
4308
4309 * alist.c (scm_sloppy_assq, scm_sloppy_assv, scm_sloppy_assoc):
4310 Don't crash when passed an improper list terminated by a
4311 non-immediate value.
4312
4313 Mon Oct 14 19:08:33 1996 Jim Blandy <jimb@floss.cyclic.com>
4314
4315 Allocate data for structures on an eight-byte boundary, as
4316 required by the tagging system.
4317 * struct.c (alloc_struct): New function.
4318 (scm_make_struct, scm_make_vtable_vtable): Call it.
4319 * struct.h (scm_struct_n_extra_words): Bump to 3.
4320 (scm_struct_i_ptr): New "field".
4321 * gc.c (scm_gc_sweep): When we need to free the data, use the
4322 information stored by alloc_struct to find the beginning of the
4323 block allocated to the structure, so we can free it.
4324
4325 Mon Oct 14 17:07:55 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4326
4327 * init.c (scm_boot_guile_1): Moved scm_init_struct in front of
4328 scm_init_stacks.
4329
4330 * debug.h (SCM_VOIDFRAME, SCM_VOIDFRAMEP): New macros.
4331 (scm_debug_info): New member: id.
4332
4333 * stacks.c: Stacks are now represented as structs; Stacks have an
4334 id given to them by `start-stack'.
4335 (scm_last_stack_frame): Added predicates `stack?' and `frame?'.
4336
4337 * stacks.h: Added declarations of scm_stack_p and scm_frame_p;
4338 Changed stack representation.
4339
4340 * debug.c (scm_procedure_name): Try procedure property `name' for
4341 compiled closures aswell.
4342
4343 * gc.c (scm_init_storage): Initialize scm_stand_in_procs to SCM_EOL.
4344
4345 * eval.c: scm_i_name moved to gsubr.c
4346 (scm_m_define): Record names of all kinds of procedure
4347 objects. (Earlier, only closures were recorded.)
4348
4349 * procprop.h: Added declaration of scm_i_name.
4350
4351 * gsubr.c: Added global scm_i_name. Added #include "procprop.h".
4352 (scm_make_gsubr): Record names of compiled closures.
4353
4354 Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4355
4356 * debug.c, debug.h: Removed obsolete code.
4357
4358 * continuations.c, continuations.h, debug.c, gc.c, init.c, root.c,
4359 stacks.c: Renamed regs --> scm_contregs.
4360
4361 * print.c (scm_free_print_state): Cleanup print state before
4362 returning it to pool. It is better to do it here than in
4363 scm_prin1 since scm_prin1 is called often.
4364
4365 * srcprop.c (scm_source_properties, scm_set_source_properties_x,
4366 s_set_source_property_x): Check that first argument is a pair or a
4367 memoized object.
4368
4369 * srcprop.c, srcprop.h: Made scm_i_filename, scm_i_copy,
4370 scm_i_line, scm_i_column and scm_i_breakpoint global.
4371
4372 * init.c: Added #include "backtrace.h" and #include "stacks.h".
4373 (scm_boot_guile_1): Added calls to scm_init_backtrace and
4374 scm_init_stacks.
4375
4376 * debug.h: Added debug object smob declaration and macro
4377 definitions.
4378
4379 * configure.in: Build with backtrace.o and stacks.o if debug
4380 support enabled.
4381
4382 * Makefile.in: Added entries for new files: backtrace.c,
4383 backtrace.h, stacks.c and stacks.h.
4384
4385 * symbols.c (scm_sym2ovcell): Fixed documentation.
4386
4387 * _scm.h (min, max): Added.
4388
4389 * async.c: Moved `min' macro to _scm.h.
4390
4391 * debug.h: New debug options SCM_BACKTRACE_MAXDEPTH and
4392 SCM_BACKTRACE_INDENT.
4393
4394 * eval.c: Added new debug options `maxdepth' and `indent'.
4395
4396 * print.c (make_print_state): Bugfix: Initialize pstate->ceiling.
4397
4398 * print.h: Added selector SCM_PRINT_STATE.
4399
4400 * print.c: New functions: scm_make_print_state,
4401 scm_free_print_state.
4402
4403 * print.h: Added declarations for scm_make_print_state,
4404 scm_free_print_state.
4405
4406 * debug.c (scm_m_start_stack): New acro.
4407
4408 * debug.h: Small cleanup.
4409
4410 * init.c (scm_boot_guile_1): Moved scm_init_debug below
4411 scm_init_eval.
4412
4413 Sun Oct 13 20:14:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
4414
4415 * __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
4416 arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
4417 chars.c, chars.h, continuations.c, continuations.h, debug.c,
4418 debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
4419 eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
4420 filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
4421 gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
4422 hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
4423 kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
4424 markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
4425 objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
4426 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
4427 procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
4428 root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
4429 simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
4430 stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
4431 strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
4432 struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
4433 unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
4434 version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
4435 declare functions with prototypes. (Patch thanks to Marius
4436 Vollmer.)
4437
4438 More prototype-related changes from Marius Vollmer:
4439 * gdb_interface.h: Wrapped header file in #ifdef/#endif
4440 * gscm.h (gscm_run_scm): Added prototype for `initfn' paramter.
4441 * ports.h (ptobfuns): Added prototypes. This means some casting in
4442 fports.c.
4443 * fports.c: Added casts for initializations, since the functions
4444 are defined to take FILE * as their stream argument, not SCM.
4445 * fdsocket.c, fdsocket.h: Made `init_addr_buffer' static.
4446 * genio.c (scm_gen_puts): Changed `unsigned char *str_data' parameter
4447 to `char *str_data' to conform to prototype.
4448
4449 Sat Oct 12 21:49:29 1996 Gary Houston <ghouston@actrix.gen.nz>
4450
4451 * error.c, eval.c, load.c, stackchk.c: use scm_error not lgh_error.
4452
4453 * __scm.h (lgh_error): removed, lgh shouldn't be in libguile.
4454
4455 * stime.c, stime.h: use SCM_P method.
4456
4457 Sat Oct 12 16:16:25 1996 Jim Blandy <jimb@floss.cyclic.com>
4458
4459 * eval.c (scm_nconc2last): Don't accept an empty list; apply must
4460 be given at least two arguments. Insist that lst's last element
4461 be a list, but don't make any requirements of its predecessors.
4462
4463 Fri Oct 11 03:58:25 1996 Jim Blandy <jimb@floss.cyclic.com>
4464
4465 * eval.c (scm_nconc2last): Revert last change; there seems to be
4466 other stuff going on here.
4467
4468 Fri Oct 11 02:43:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
4469
4470 * eval.c (scm_nconc2last): Make sure that each element of lst
4471 (which is a list of argument lists, except for the tail) is a
4472 proper list, i.e., finite and terminated by '().
4473
4474 Thu Oct 10 21:09:13 1996 Jim Blandy <jimb@totoro.cyclic.com>
4475
4476 * unif.c (scm_ra_set_contp): Localize `inc' declaration.
4477 Clarifies flow.
4478
4479 * struct.c (scm_make_struct, scm_make_vtable_vtable): Use the
4480 symbolic name for the tag, scm_tc3_cons_gloc, instead of just
4481 saying "1".
4482
4483 * vectors.c (scm_make_vector): Fill vectors with the undefined
4484 value, to help make Guile Scheme code more portable to other
4485 Schemes.
4486
4487 * symbols.c (scm_intern_obarray_soft, scm_sysintern): Doc fixes.
4488 * symbols.h, tags.h: Doc fixes.
4489
4490 Wed Oct 9 19:39:29 1996 Jim Blandy <jimb@floss.cyclic.com>
4491
4492 * async.c (scm_take_signal): Doc fixes.
4493
4494 Mon Oct 7 22:30:34 1996 Jim Blandy <jimb@totoro.cyclic.com>
4495
4496 * numbers.c (scm_divbigint): When the remainder is zero, we don't
4497 want to subtract it from the modulus; we just want to leave it
4498 alone.
4499
4500 Mon Oct 7 00:14:17 1996 Mikael Djurfeldt <mdj@kenneth>
4501
4502 * init.c (scm_boot_guile_1): Bugfix: i --> base in argument to
4503 `scm_init_threads'.
4504
4505 * throw.h (scm_catch_apply): Removed the `lazyp' argument.
4506
4507 * throw.c (scm_catch_apply): Finished implementation of
4508 `lazy-catch'.
4509
4510 Sun Oct 6 05:26:05 1996 Gary Houston <ghouston@actrix.gen.nz>
4511
4512 * filesys.c (scm_sys_select): move SCM_ALLOW_INTS past the sreturn
4513 check.
4514 (scm_init_filesys): set "i/o-extensions" feature.
4515 include feature.h.
4516
4517 Sat Oct 5 12:22:00 1996 Jim Blandy <jimb@floss.cyclic.com>
4518
4519 * Makefile.in (root.o): Correct dependencies.
4520
4521 Sat Oct 5 18:40:42 1996 Mikael Djurfeldt <mdj@kenneth>
4522
4523 * Makefile.in: Added dependency entry for root.o.
4524
4525 * continuations.c, debug.[ch], eval.c, gscm.c init.c, root.c,
4526 throw.c: Renamed last_debug_info_frame -> scm_last_debug_frame.
4527
4528 * init.c (scm_start_stack): Set initial root continuation number
4529 to 0.
4530
4531 * procs.c: New function: scm_thunk_p.
4532
4533 * procs.h: Added declarations of scm_thunk_p.
4534
4535 * root.c: Renamed `call-with-new-root' -->
4536 `call-with-dynamic-root'.
4537 (cwdr): Removed allocation of new root state. This should be done
4538 separately by use of scm_make_root.
4539 (scm_apply_with_dynamic_root): New function: Does what it
4540 sounds like. Needed when spawning threads.
4541
4542 * root.h: Added member last_debug_frame to root state.
4543 Added #include "libguile/debug.h"
4544
4545 * throw.c: Renamed scm_catch --> scm_catch_apply and added more
4546 arguments. The motivation is that code in root.c needs catch
4547 functionality, and we want to avoid code duplication.
4548 New functions: scm_catch, scm_lazy_catch. These are wrappers for
4549 scm_catch_apply. scm_lazy_catch is intended to introduce catch
4550 handlers that run without popping the stack into the dynwind
4551 chain.
4552
4553 * throw.h: Added prototypes for scm_catch_apply and
4554 scm_lazy_catch.
4555
4556 Thu Oct 3 11:12:33 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4557
4558 * root.h (scm_root, scm_set_root): Decouple thread support details
4559 by introducing the selector SCM_THREAD_LOCAL_DATA and the mutator
4560 SCM_SET_THREAD_LOCAL_DATA.
4561
4562 * print.c (scm_iprlist): Bugfix: Added SCM_ECONSP tests in hare
4563 and tortoise scanning loop.
4564
4565 Thu Oct 3 00:04:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
4566
4567 * Makefile.in: Rebuild dependencies.
4568
4569 * libguile.h: #include "libguile/print.h" before "smob.h", since
4570 the latter uses the print_state structure.
4571
4572 * throw.c (scm_ithrow): Use the correct variable when checking to
4573 see if a given element of scm_dynwinds is a valid catch.
4574
4575 * throw.c (scm_ithrow): If scm_dynwinds has invalid list
4576 structure, abort; don't just silently ignore the garbage.
4577
4578 * _scm.h: #include "print.h" here, since it seems to be used just
4579 about everywhere.
4580 * eval.c, gdbint.c, genio.h, numbers.h, smob.h, srcprop.c,
4581 strports.c, unif.h: Don't #include "print.h".
4582
4583 Tue Oct 1 05:15:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4584
4585 * feature.h (scm_loc_features): Removed external declaration.
4586 (Bug fix suggested by Petr Adamek <adamek@mit.edu>.)
4587
4588 Tue Oct 1 00:00:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4589
4590 * feature.c (scm_init_feature): Added threads feature (needs to be
4591 initialized here, since features doesn't exist when
4592 scm_init_threads is called).
4593
4594 * libguile.h: Added #include "libguile/../threads/threads.h".
4595 (This is a kludge to get thread support working. This should be
4596 fixed.)
4597
4598 * configure.in, acconfig.h: Added flags for thread support.
4599
4600 * scmsigs.c: Define `signal' to be `pthread_signal' if using
4601 mit-pthreads.
4602
4603 * gc.c (scm_igc): Added SCM_THREAD_CRITICAL_SECTION_START and
4604 SCM_THREAD_CRITICAL_SECTION_END. Moved marking of root data to
4605 root.c:mark_root.
4606
4607 * _scm.h: Added conditional #include "threads.h"
4608
4609 * __scm.h (SCM_ASYNC_TICK): Added call to macro
4610 SCM_THREADS_SWITCHING_CODE.
4611
4612 * init.c (scm_start_stack): Call `scm_make_root' to dynamically
4613 allocate the basic dynamic root object.
4614 (scm_boot_guile): Added call to scm_init_root.
4615
4616 * root.c, root.h: Added root smob.
4617 (cwdr, scm_call_with_new_root, scm_dynamic_root, scm_app_wdr): New
4618 functions: Implements dynamic roots mostly according to spec in
4619 SCM manual. Main difference is that the second argument is a
4620 throw handler rather than an error "thunk".
4621
4622 * root.h: Added declaration of scm_init_root.
4623
4624 * root.c: Added #include "genio.h", #include "smob.h", #include
4625 "pairs.h", #include "throw.h", #include "dynwind.h", #include
4626 "eval.h"
4627 (scm_init_root): Added #include "root.x".
4628
4629 * throw.c: Added #include "stackchk.h"
4630 (scm_catch): Changed SCM_DEFER_INTS --> SCM_REDEFER_INTS and
4631 SCM_ALLOW_INTS --> SCM_REALLOW_INTS. This is so that scm_catch
4632 can be used in scm_call_with_new_root; Added reenabling of stack
4633 checking when catching a throw.
4634
4635 Mon Sep 30 21:48:11 1996 Jim Blandy <jimb@totoro.cyclic.com>
4636
4637 * list.c, list.h: Use SCM_P instead of CPP hair. Doc fixes.
4638
4639 * list.c (scm_member, scm_memv, scm_memq): Return #f if a matching
4640 element is not found, as per R4RS.
4641
4642 Sat Sep 28 18:13:01 1996 Jim Blandy <jimb@totoro.cyclic.com>
4643
4644 * list.c: Doc fixes throughout.
4645
4646 Sat Sep 28 02:07:43 1996 Gary Houston <ghouston@actrix.gen.nz>
4647
4648 * strings.c, strings.h: (scm_makfrom0str, scm_makefrom0str_opt:
4649 declare the char * to be const. Avoids a warning in rgx.c.
4650
4651 * ports.h: spelling fix.
4652
4653 * filesys.c (scm_sys_stat, scm_sys,lstat): include file name in
4654 error messages.
4655
4656 * load.c (scm_sys_try_load_path): throw an error if file not found
4657 (like it says it in NEWS).
4658
4659 Fri Sep 27 18:27:01 1996 Jim Blandy <jimb@totoro.cyclic.com>
4660
4661 * symbols.c (scm_intern_obarray_soft): Initialize the new symbol's
4662 PROPS slot to '(), not #f; it's an empty alist.
4663
4664 * throw.h, throw.c: Use SCM_P instead of #if hair.
4665
4666 Remove special support for uncaught throws; see throw.c for
4667 rationale.
4668 * throw.c (uncaught_throw): New function.
4669 (scm_ithrow): Call uncaught_throw if we don't find a throw
4670 target; don't mess with scm_bad_throw_vcell.
4671 (scm_bad_throw_vcell): Variable deleted.
4672 (scm_init_throw): Don't initialize it.
4673
4674 * throw.c (scm_ithrow): Don't let outer key matches shadow inner
4675 #t catches.
4676
4677 Wed Sep 25 04:35:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
4678
4679 * numbers.c (scm_istr2int): If the number is short (as most
4680 numbers are), just call scm_small_istr2int to deal with it.
4681 (scm_small_istr2int): New function, created by un-#ifdefing the
4682 non-bignum version of scm_istr2int and renaming it.
4683
4684 Tue Sep 24 06:48:38 1996 Gary Houston <ghouston@actrix.gen.nz>
4685
4686 * load.c (scm_sys_try_load): don't check whether value returned
4687 by scm_open_file is #f, it won't be. Always return SCM_UNSPECIFIED.
4688 Change the Scheme name from %try-load to primitive-load.
4689
4690 * error.c (scm_error): convert a NULL message to SCM_BOOL_F.
4691 Can avoid passing a message, allowing it to be derived in the
4692 error handler (e.g., if we want to throw to the key both from
4693 Scheme and C).
4694
4695 Mon Sep 23 00:42:15 1996 Mikael Djurfeldt <mdj@kenneth>
4696
4697 * print.c (scm_iprin1, scm_prin1, scm_iprlist): Circular
4698 references now have a new appearance which is more compact and
4699 also gives a clue about what the target of the reference is.
4700 By setting parameters in the print state, more fancy printing can
4701 be achieved. This is used by the (not yet commited) backtrace
4702 code.
4703
4704 Sun Sep 22 17:10:06 1996 Mikael Djurfeldt <mdj@kenneth>
4705
4706 * eval.c, numbers.h, unif.h, smob.h, srcprop.c: Added #include
4707 "print.h"
4708
4709 * print.c: Added #include "struct.h". Removed function
4710 scm_prlist.
4711
4712 * print.h: Modified prototypes for scm_iprlist, scm_prin1 and
4713 scm_iprin1. Removed prototype for scm_prlist.
4714
4715 * arbiters.c (prinarb),
4716 async.c (print_async),
4717 debug.c (prindebugobj, prinmemoized),
4718 eval.c (prinprom, prinmacro),
4719 filesys.c (scm_fd_print, scm_dir_print),
4720 kw.c (print_kw),
4721 mallocs.c (prinmalloc),
4722 numbers.c, numbers.h (scm_floprint, scm_bigprint),
4723 smob.h (scm_smobfuns),
4724 srcprop.c (prinsrcprops),
4725 throw.c (prinjb),
4726 unif.c, unif.h (scm_raprin1, rapr1),
4727 variable.c (prin_var): Changed argument `int writing' to
4728 `scm_print_state *pstate'.
4729
4730 * init.c (scm_boot_guile): Moved scm_init_struct upwards so
4731 that it will be called before scm_init_print.
4732
4733 * print.c (scm_prin1): Print states are now allocated when calling
4734 scm_prin1 and then passed around to all printing functions as an
4735 argument. A cache `print_state_pool' enables reuse of print
4736 states.
4737 (scm_make_print_state): New function.
4738 (scm_iprin1): Adaption to print states.
4739 (scm_iprlist): An initial "hare and tortoise" scan brings down
4740 time complexity to O (depth * N). (Better time complexity will be
4741 achieved when the printing code is completely rewritten.)
4742
4743 Fri Sep 20 22:01:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
4744
4745 * aclocal.m4 (GUILE_STRUCT_UTIMBUF): Use AC_CACHE_CHECK instead of
4746 AC_CACHE_VAL; #define UTIMBUF_NEEDS_POSIX outside AC_CACHE_VAL, so
4747 it gets done whether or not the cache variable has a value.
4748
4749 Thu Sep 19 17:06:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
4750
4751 Distinguish #f and ().
4752 * __scm.h: #undef SICP.
4753 * pairs.h (SCM_EOL): Delete this definition, equating it with
4754 SCM_BOOL_F.
4755 * tags.h (SCM_EOL): Give it a new definition here; I think I found
4756 the value it used to have. Doc fixes, too.
4757
4758 Thu Sep 19 15:33:51 1996 Mikael Djurfeldt <mdj@kenneth>
4759
4760 * struct.c (scm_make_struct_layout, init_struct, scm_struct_ref,
4761 scm_struct_set_x), struct.h, gc.c (scm_gc_mark): Completed Tom
4762 Lord's implementation of structs, allowing for tail arrays as
4763 described in the manual. Also fixed some bugs. (Both the interface
4764 and the implementation should be improved.)
4765
4766 * read.c (scm_init_read): Removed #ifdef READER_EXTENSIONS
4767
4768 * print.c, print.h: Closures now print like #<procedure foo (x)>.
4769 People who whish to see the source can do `(print-enable 'source)'.
4770 Removed #ifdef DEBUG_EXTENSIONS.
4771
4772 Thu Sep 19 00:00:29 1996 Gary Houston <ghouston@actrix.gen.nz>
4773
4774 * filesys.c (scsm_sys_stat): don't SIGSEGV if argument is an
4775 integer (assuming for now accepting an integer is a good thing).
4776
4777 * error.c, fports.c: replace use of %S in lgh_error args with %s.
4778 %S will be used instead for write'ing arguments.
4779
4780 * unif.c (scm_transpose_array): change arguments in the SCM_WNA
4781 asserts. fix a few other asserts.
4782 (scm_aind, scm_enclose_array, scm_array_in_bounds_p,
4783 scm_uniform_vector_ref, scm_array_set_x,
4784 scm_dimensions_to_unform_array): change args in
4785 SCM_WNA SCM_ASSERTS and change scm_wta's to scm_wrong_num_args.
4786 strop.c (scm_substring_move_left_x, scm_substring_move_right_x,
4787 scm_substring_fill_x): likewise.
4788 gsubr.c (scm_gsubr_apply): likewise.
4789 eval.c (SCM_APPLY): likewise.
4790
4791 * eval.c (4 places): replace scm_everr with lgh_error or
4792 scm_wrong_num_args.
4793
4794 * error.c, error.h (scm_wrong_num_args, scm_wrong_type_arg,
4795 scm_memory_error): new procedures.
4796 scm_everr: deleted. can use scm_wta, dropping first two args.
4797 scm_error: convert NULL subr to SCM_BOOL_F.
4798
4799 * __scm.h: don't define SCM_STACK_OVFLOW, SCM_EXIT, SCM_ARG6, SCM_ARG7,
4800 SCM_ARGERR.
4801
4802 * stackchk.c (scm_report_stack_overflow): use lgh_error instead
4803 of scm_wta.
4804
4805 * error.c, error.h: new error keys: scm_arg_type_key,
4806 scm_args_number_key, scm_memory_alloc_key, scm_stack_overflow_key,
4807 scm_misc_error_key.
4808 scm_wta: reimplement using lgh_error instead of scm_everr.
4809
4810 Wed Sep 18 17:13:35 1996 Mikael Djurfeldt <mdj@kenneth>
4811
4812 * gdbint.c: scm_lread now has one more argument.
4813
4814 * ports.c, ports.h: Name change: scm_\(line\|column\)_number -->
4815 scm_port_\1; Added mutator scm_set_port_filename_x (used when
4816 loading source from non-file ports, which, e. g., happens when
4817 using the Emacs interface).
4818
4819 * fports.c (scm_open_file): Don't call scm_makfrom0str on a scheme
4820 object.
4821
4822 * read.c: Added code for recording of positions of source code
4823 expressions; New functions: recsexpr, scm_lreadrecparen;
4824 _scm_make_srcprops --> scm_make_srcprops
4825 (scm_flush_ws): Removed updating of positions counters. This work
4826 is already done by scm_gen_getc
4827
4828 * read.h: Added prototype for scm_lreadrecparen
4829
4830 * print.c: Added #include "alist.h"
4831
4832 * eval.c: Added #include "hash.h"
4833
4834 * eq.c: Added #include "ramap.h"
4835
4836 * options.c: Documentation fixes.
4837
4838 * srcprop.c (scm_finish_srcprop): Bugfix: update ptr.
4839 (scm_init_srcprop): Adjusted size of initial source-whash. Name
4840 changes: tc16_srcprops --> scm_tc16_srcprops, _scm_make_srcprops
4841 --> scm_make_srcprops
4842
4843 * srcprop.h: Name changes: tc16_srcprops --> scm_tc16_srcprops,
4844 _scm_make_srcprops --> scm_make_srcprops; Remove one layer of
4845 function calls in the definition of the whash access macros.
4846
4847 Tue Sep 17 11:33:16 1996 Lee Iverson <leei@Canada.AI.SRI.COM>
4848
4849 * init.c (scm_boot_guile): Add level of indirection to
4850 scm_boot_guile_1() to ensure that stack base pointer is properly
4851 initialized. There was no guarantee that variable i was the
4852 highest/lowest variable on stack (i.e. the call frame of
4853 scm_boot_guile was not completely protected from gc).
4854
4855 Tue Sep 17 01:40:56 1996 Gary Houston <ghouston@actrix.gen.nz>
4856
4857 * ports.h (scm_port_table): put back file_name, it will be used to
4858 support debugging. Undo related changes in fports.c, ioext.c,
4859 ports.c, gc.c.
4860
4861 Sun Sep 15 03:58:29 1996 Gary Houston <ghouston@actrix.gen.nz>
4862
4863 * ports.h (scm_port_table): remove file_name member for now, it seems
4864 undesirable.
4865 * fports.c (scm_open_file): don't set file_name in PTAB.
4866 (prinfport): don't use file_name in PTAB.
4867 * ioext.c (scm_sys_duplicate_port): don't set file_name in PTAB.
4868 * ports.c (scm_add_to_port_table): don't intialize file_name.
4869 (scm_port_file_name): remove for now.
4870 * gc.c (scm_gc_mark): don't mark PTAB file_name.
4871
4872 * fports.h (scm_mkfile): prototype deleted.
4873 * fports.c (scm_mkfile): merged into scm_open_file to simplify.
4874
4875 * debug.c, unif.c: use scm_out_of_range instead of
4876 wta for range errors (ASSERT still needs work).
4877
4878 * error.c, error.h (scm_out_of_range): new procedure.
4879
4880 * error.c, error.h (scm_out_of_range_key): new key.
4881
4882 * posix.c (scm_sync): #else was missing.
4883
4884 * error.c, error.h: append _key to names scm_num_overflow and
4885 scm_system_error.
4886
4887 * __scm.h (SCM_SYSMISSING, SCM_NUM_OVERFLOW): use SCM_BOOL_F instead
4888 of consing an empty list.
4889 (SCM_SYSERROR etc.): move into error.c, make them procedures instead
4890 of macros, saves code and string space.
4891 error.c, fports.c, numbers.c, posix.c, ioext.c, filesys.c, socket.c,
4892 fdsocket.c, simpos.c: change names of SCM_SYSERROR etc., to
4893 lower case. Rename scm_syserror_m to scm_syserror_msg.
4894 error.h: prototypes for new procedures.
4895
4896 Sat Sep 14 03:35:41 1996 Gary Houston <ghouston@actrix.gen.nz>
4897
4898 * numbers.c: use SCM_NUM_OVERFLOW instead of scm_wta or ASSERT.
4899
4900 * error.c, error.h: setup scm_num_overflow key.
4901
4902 * __scm.h: SCM_NUM_OVERFLOW: macro for reporting numerical overflow.
4903 Remove definition of SCM_OVSCM_FLOW.
4904
4905 * fports.c (scm_open_file): use SCM_SYSERROR_M.
4906
4907 * __scm.h: SCM_SYSERROR_M: new macro for system errors with an
4908 explicit message and args.
4909
4910 * error.c, error.h, __scm.h: change system_error_sym to
4911 scm_system_error.
4912
4913 * error.c (system_error_sym): remove leading %% from the Scheme name
4914 "%%system-error".
4915
4916 * __scm.h (SCM_SYSMISSING): Redefine using lgh_error.
4917
4918 Fri Sep 13 12:58:08 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4919
4920 * __scm.h, chars.c, debug.c, eval.c, eval.h, extchrs.c, extchrs.h,
4921 fdsocket.c, feature.c, mbstrings.c, mbstrings.h, numbers.c,
4922 numbers.h, print.c, scmhob.h, simpos.h, symbols.c, symbols.h,
4923 tags.h, throw.c, variable.h: Name cleanup. Lots of xxxSCM_yyy
4924 renamed. (These were introduced by unsupervised name
4925 substitution.)
4926
4927 Fri Sep 13 01:19:08 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4928
4929 * print.c: Added code for detection of circular references during
4930 printing. (init_ref_stack, grow_ref_stack): New functions. Added
4931 a hook for printing of closures (accessible via print options).
4932 This leads to a split of calls to scm_iprin1 into two classes:
4933 elementary print operations (e. g. the code which prints a smob)
4934 still use scm_iprin1 while top level calls (like scm_display) use
4935 scm_prin1. scm_prin1 begins by clearing the data structure used
4936 to record reference information.
4937
4938 * print.h: Added declarations of scm_prin1 and scm_prlist.
4939
4940 * strports.c (scm_strprint_obj): scm_iprin1 --> scm_prin1
4941
4942 * gscm.c (gscm_portprint_obj): scm_iprin1 --> scm_prin1
4943
4944 * gscm.h (gscm_print_obj): scm_iprin1 --> scm_prin1
4945
4946 * error.c (err_head): scm_iprin1 --> scm_prin1
4947
4948 * debug.c: Adjusted header comment.
4949
4950 * tags.h: Typo.
4951
4952 Wed Sep 11 17:55:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
4953
4954 * strerror.c: Doc fix.
4955
4956 Thu Sep 12 00:00:32 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
4957
4958 * gdbint.c (gdb_read): Now possible to run during GC.
4959 (unmark_port, remark_port): New functions.
4960
4961 * symbols.h (SCM_SETLENGTH): Use SCM_SETCAR.
4962
4963 * read.c (scm_grow_tok_buf): Use scm_vector_set_length_x instead
4964 of allocating a new string object. Also, increase size by
4965 the factor 2 instead of 1.5.
4966
4967 Wed Sep 11 15:10:38 1996 Petr Adamek <jimb@floss.cyclic.com>
4968
4969 * __scm.h (SCM_P): Corrected to run under traditional C.
4970
4971 * _scm.h (SCM_PROC): Extraneous semicolon (outside functions)
4972 removed.
4973
4974 * async.c: Calls to scm_sysintern corrected.
4975
4976 * async.h (scm_async_clock): Redundant declaration removed.
4977
4978 * continuations.c (scm_dynthrow): Redundant declaration removed.
4979
4980 * debug.c (scm_single_step, scm_memoized, scm_lookup_soft):
4981 Definition typos corrected.
4982
4983 * debug.h: Missing declarations of functions in debug.c added
4984 (lots).
4985
4986 * eval.h (scm_eval_args, scm_deval_args, scm_m_undefine):
4987 Missing declarations to functions in eval.c added.
4988
4989 * filesys.c: Possibly uninitialized variable rv.
4990
4991 * gc.h (scm_object_addr, scm_unhash_name): Missing
4992 declarations of functions defined in gc.c added.
4993
4994 * genio.c: Possible typos str_data -> wstr_data. ???
4995
4996 * genio.c: Possibly unintended shadowing of local variable
4997 `int c' (gotos out of scope of inner `c'). ???
4998
4999 * init.c: Uninitialized `SCM last' may be used.
5000
5001 * ioext.h: (scm_sys_isatty_p): Typo.
5002
5003 * list.h (scm_list_head): Missing prototype for function in
5004 list.c added.
5005
5006 * numbers.c (scm_two_doubles): Changed from extern to static
5007 (is used only within numbers.c).
5008
5009 * numbers.h: Repeated declarations removed.
5010
5011 * ports.h (scm_close_all_ports_except): Declaration for the
5012 function defined in ports.c added.
5013
5014 * posix.h: Missing declarations added.
5015
5016 * procs.h (scm_make_subr_opt): Missing declaration added.
5017
5018 * socket.h (scm_sys_gethost): Missing declaration added.
5019
5020 * socket.h: Redundant declarations removed (they are in fdsocket.h).
5021
5022 * srcprop.h (scm_set_source_property_x, scm_finish_srcprop):
5023 Missing declarations added.
5024
5025 * stime.h (scm_get_internal_real_time): Repeated declarations removed.
5026
5027 * struct.c: Uninitialized variable `SCM answer' may be used.
5028
5029 * unif.c (l2ra): Declaration prototype.
5030
5031 * unif.c (scm_array_equal_p): Dummy definition removed (it is
5032 defined in ramap.c).
5033
5034 * unif.h (scm_raprin1, scm_istr2bve, scm_array_equal_p):
5035 Redundant declarations removed (they are in ramap.h).
5036
5037 * variable.h (scm_make_udvariable,
5038 scm_make_undefined_variable): Declaration corrected to
5039 correspond variable.c.
5040
5041 * vectors.h (scm_vector_move_left_x, scm_vector_move_right_x):
5042 Missing declarations added.
5043
5044 Wed Sep 11 14:38:50 1996 Jim Blandy <jimb@floss.cyclic.com>
5045
5046 * Makefile.in (distclean): Don't forget to delete fd.h.
5047
5048 Tue Sep 10 14:01:46 1996 Jim Blandy <jimb@floss.cyclic.com>
5049
5050 * fd.h.in, tags.h: Trivial cleanups.
5051
5052 * marksweep.c, marksweep.h: Deleted; marksweep.c was empty, and
5053 marksweep.h just declared functions from gc.c.
5054 * gc.h, libguile.h: Don't #include "marksweep.h".
5055 * Makefile.in (libobjs, inner_h_files, c_files, gen_c_files): Omit
5056 marksweep.o, marksweep.h, marksweep.c, and marksweep.x. Other
5057 dependencies updated.
5058
5059 * libguile.h: Don't #include "files.h"; it's been deleted.
5060
5061 * files.c (scm_sys_delete_file): Moved to filesys.c.
5062 File is now empty; deleted.
5063 * files.h: Deleted.
5064 * filesys.c: scm_sys_delete_file is now here. Remove
5065 #if's; they seem to rely on remnants of an old portability
5066 regimen. If the problems come up again, solve them properly,
5067 using autoconf. Specifically: Don't test M_SYSV, and #define
5068 remove to be unlink if it's #defined; don't use remove just
5069 because HAVE_STDC_HEADERS is #defined.
5070 * filesys.h: Add declarations for scm_sys_delete_file.
5071 * Makefile.in (libobjs, inner_h_files, c_files, gen_c_files): Omit
5072 files.o, files.h, files.c, and files.x.
5073 * init.c: Don't #include "files.h", and don't call scm_init_files.
5074
5075 Use SCM_P instead of PROTO; the latter intrudes on the user's
5076 namespace.
5077 * params.h: Deleted; definition of SCM_P moved to...
5078 * __scm.h: ... here, where it replaces PROTO macro.
5079 * libguile.h, smob.h: Don't #include "params.h".
5080 * continuations.c, error.h, feature.h, gc.c, gc.h, init.h, load.h,
5081 smob.h: Fix prototypes accordingly.
5082 * Makefile.in: Update dependencies.
5083 (inner_h_files): Remove params.h.
5084
5085 * gc.c: #include "gc.h"; every module should include its header,
5086 to let the compiler cross-check the declarations against the
5087 definitions.
5088
5089 * eq.h, files.h, hashtab.h, load.h, mallocs.h, scmsigs.h,
5090 simpos.h: #include "libguile/__scm.h".
5091
5092 Mon Sep 9 20:00:15 1996 Jim Blandy <jimb@floss.cyclic.com>
5093
5094 * init.c: Don't forget to #include smob.h and init.h.
5095 * Makefile.in: Dependencies updated.
5096
5097 * smob.h: Use PROTO instead of #if __STDC__.
5098
5099 * continuations.c (scm_dynthrow): Use PROTO, not SCM_P.
5100
5101 * __scm.h: Doc fixes.
5102
5103 * __scm.h, libguile.h: Use "quotes" in the #includes, not
5104 <angles>; this allows `make depends' to work properly.
5105
5106 * libguile.h: #include smob.h and pairs.h before the others; they
5107 define typedefs used by other headers.
5108
5109 C files should #include only the header files they need, not
5110 libguile.h (which #includes all the header files); the pointless
5111 recompilation was wasting my time.
5112 * Makefile.in (all .o dependency lists): Regenerated.
5113 * libguile.h: Don't try to get a definition for size_t here...
5114 * __scm.h: Do it here.
5115 * _scm.h: Since this is the internal libguile header, put things
5116 here that all (or a majority) of the libguile files will want.
5117 Don't #include <libguile.h> here; that generates dependencies on
5118 way too much. Instead, get "__scm.h", "error.h", "pairs.h",
5119 "list.h", "gc.h", "gsubr.h", "procs.h", "numbers.h", "symbols.h",
5120 "boolean.h", "strings.h", "vectors.h", "root.h", "ports.h", and
5121 "async.h".
5122 * alist.c: Get "eq.h", "list.h", "alist.h".
5123 * append.c: Get "append.h", "list.h".
5124 * arbiters.c: Get "arbiters.h", "smob.h".
5125 * async.c: Get "async.h", "smob.h", "throw.h", "eval.h".
5126 * boolean.c: Get "boolean.h".
5127 * chars.c: Get "chars.h".
5128 * continuations.c: Get "continuations.h", "dynwind.h", "debug.h",
5129 "stackchk.h".
5130 * debug.c: Get "debug.h", "feature.h", "read.h", "strports.h",
5131 "continuations.h", "alist.h", "srcprop.h", "procprop.h", "smob.h",
5132 "genio.h", "throw.h", "eval.h".
5133 * dynwind.c: Get "dynwind.h", "alist.h", "eval.h".
5134 * eq.c: Get "eq.h", "unif.h", "smob.h", "strorder.h",
5135 "stackchk.h".
5136 * error.c: Get "error.h", "throw.h", "genio.h", "pairs.h".
5137 * eval.c: Get "eval.h", "stackchk.h", "srcprop.h", "debug.h",
5138 "hashtab.h", "procprop.h", "markers.h", "smob.h", "throw.h",
5139 "continuations.h", "eq.h", "sequences.h", "alist.h", "append.h",
5140 "debug.h".
5141 * fdsocket.c: Get "fdsocket.h", "unif.h", "filesys.h".
5142 * feature.c: Get "feature.h".
5143 * files.c: Get "files.h".
5144 * filesys.c: Get "filesys.h", "smob.h", "genio.h".
5145 * fports.c: Get "fports.h", "markers.h".
5146 * gc.c: Get "async.h", "unif.h", "smob.h", "weaks.h",
5147 "genio.h", "struct.h", "stackchk.h", "stime.h".
5148 * gdbint.c: Get "gdbint.h", "chars.h", "eval.h", "print.h",
5149 "read.h", "strports.h", "tag.h".
5150 * genio.c: Get "genio.h", "chars.h".
5151 * gsubr.c: Get "gsubr.h", "genio.h".
5152 * hash.c: Get "hash.h", "chars.h".
5153 * hashtab.c: Get "hashtab.h", "eval.h", "hash.h", "alist.h".
5154 * init.c: Get everyone who has an scm_init_mumble function:
5155 "weaks.h", "vports.h", "version.h", "vectors.h", "variable.h",
5156 "unif.h", "throw.h", "tag.h", "symbols.h", "struct.h",
5157 "strports.h", "strorder.h", "strop.h", "strings.h", "stime.h",
5158 "stackchk.h", "srcprop.h", "socket.h", "simpos.h", "sequences.h",
5159 "scmsigs.h", "read.h", "ramap.h", "procs.h", "procprop.h",
5160 "print.h", "posix.h", "ports.h", "pairs.h", "options.h",
5161 "objprop.h", "numbers.h", "mbstrings.h", "mallocs.h", "load.h",
5162 "list.h", "kw.h", "ioext.h", "hashtab.h", "hash.h", "gsubr.h",
5163 "gdbint.h", "gc.h", "fports.h", "filesys.h", "files.h",
5164 "feature.h", "fdsocket.h", "eval.h", "error.h", "eq.h",
5165 "dynwind.h", "debug.h", "continuations.h", "chars.h", "boolean.h",
5166 "async.h", "arbiters.h", "append.h", "alist.h".
5167 * ioext.c: Get "ioext.h", "fports.h".
5168 * kw.c: Get "kw.h", "smob.h", "mbstrings.h", "genio.h".
5169 * list.c: Get "list.h", "eq.h".
5170 * load.c: Get "load.h", "eval.h", "read.h", "fports.h".
5171 * mallocs.c: Get "smob.h", "genio.h".
5172 * markers.c: Get "markers.h".
5173 * mbstrings.c: Get "mbstrings.h", "read.h", "genio.h", "unif.h",
5174 "chars.h".
5175 * numbers.c: Get "unif.h", "genio.h".
5176 * objprop.c: Get "objprop.h", "weaks.h", "alist.h", "hashtab.h".
5177 * options.c: Get "options.h".
5178 * ports.c: Get "ports.h", "vports.h", "strports.h", "fports.h",
5179 "markers.h", "chars.h", "genio.h".
5180 * posix.c: Get "posix.h", "sequences.h", "feature.h", "unif.h",
5181 "read.h", "scmsigs.h", "genio.h", "fports.h".
5182 * print.c: Get "print.h", "unif.h", "weaks.h", "read.h",
5183 "procprop.h", "eval.h", "smob.h", "mbstrings.h", "genio.h",
5184 "chars.h".
5185 * procprop.c: Get "procprop.h", "eval.h", "alist.h".
5186 * procs.c: Get "procs.h".
5187 * ramap.c: Get "ramap.h", "feature.h", "eval.h", "eq.h",
5188 "chars.h", "smob.h", "unif.h".
5189 * read.c: Get "alist.h", "kw.h", "mbstrings.h", "unif.h",
5190 "eval.h", "genio.h", "chars.h".
5191 * root.c: Get "root.h", "stackchk.h".
5192 * scmsigs.c: Get "scmsigs.h".
5193 * sequences.c: Get "sequences.h".
5194 * simpos.c: Get "simpos.h", "scmsigs.h".
5195 * smob.c: Get "smob.h".
5196 * socket.c: Get "socket.h", "feature.h".
5197 * srcprop.c: Get "srcprop.h", "weaks.h", "hashtab.h", "debug.h",
5198 "alist.h", "smob.h".
5199 * stackchk.c: Get "stackchk.h", "genio.h".
5200 * stime.c: Get "stime.h"."libguile/continuations.h".
5201 * strings.c: Get "strings.h", "chars.h".
5202 * strop.c: Get "strop.h", "chars.h".
5203 * strorder.c: Get "strorder.h", "chars.h".
5204 * strports.c: Get "strports.h", "print.h", "eval.h", "unif.h".
5205 * struct.c: Get "struct.h", "chars.h".
5206 * symbols.c: Get "symbols.h", "mbstrings.h", "alist.h",
5207 "variable.h", "eval.h", "chars.h".
5208 * tag.c: Get "tag.h", "struct.h", "chars.h".
5209 * throw.c: Get "throw.h", "continuations.h", "debug.h",
5210 "dynwind.h", "eval.h", "alist.h", "smob.h", "genio.h".
5211 * unif.c: Get "unif.h", "feature.h", "strop.h", "sequences.h",
5212 "smob.h", "genio.h", "eval.h", "chars.h".
5213 * variable.c: Get "variable.h", "smob.h", "genio.h".
5214 * vectors.c: Get "vectors.h", "eq.h".
5215 * version.c: Get "version.h".
5216 * vports.c: Get "vports.h", "fports.h", "chars.h", "eval.h".
5217 * weaks.c: Get "weaks.h".
5218
5219 * stackchk.h: #include "libguile/debug.h",
5220
5221 * print.h, read.h: #include "options.h", since everyone who uses
5222 either of these files will need that.
5223
5224 * smob.h: #include "ports.h", "genio.h", and "print.h", since
5225 anyone who uses this file will need them to define the smob
5226 printing functions. Also, get markers.h, since people will need
5227 to #define the mark functions.
5228
5229 * smob.h (scm_ptobfuns, SCM_PTOBNUM): Definitions moved...
5230 * ports.h: ... to here.
5231
5232 * ports.h (scm_port_table_size): Explicitly give type as 'int';
5233 don't rely on archaic C default type rules.
5234
5235 * fports.h: #include "libguile/ports.h", since you need that in
5236 order to parse this.
5237
5238 * genio.h: #include "libguile/print.h", because you need that to
5239 parse this; don't bother #including "ports.h", since print.h gets
5240 that.
5241
5242 * error.h: Don't #include "pairs.h"; _scm.h will do that now.
5243
5244 * eval.h (scm_top_level_lookup_thunk_var): Remove declaration for
5245 this; it's now a reference to an element of *scm_root.
5246
5247 * debug.h: Don't #include "options.h"; the compiler won't be able
5248 to find that once the headers are installed; instead, #include
5249 "libguile/options.h".
5250 * gc.h: Same, with marksweep.h.
5251 * mbstrings.h: Same, with symbols.h.
5252 * scmhob.h: Same, with _scm.h.
5253 * smob.h: Same, with params.h.
5254
5255 * Makefile.in (depends): Don't nuke scmconfig.h and the generated
5256 C files; there's no need for this, and it forces recompilations
5257 unnecessarily.
5258
5259 Sat Sep 7 06:57:23 1996 Gary Houston <ghouston@actrix.gen.nz>
5260
5261 * error.c (scm_error): declare scm_error_callback.
5262
5263 * error.h: prototype for scm_error_callback.
5264
5265 * __scm.h: define lgh_error.
5266 (SCM_SYSERROR): redefine using lgh_error.
5267
5268 Thu Sep 5 22:40:06 1996 Gary Houston <ghouston@actrix.gen.nz>
5269
5270 * error.c (scm_error): new procedure.
5271
5272 * error.h: prototype for scm_error.
5273
5274 * Makefile.in (install): install scmconfig.h from the current
5275 directory, not $(srcdir).
5276
5277 Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
5278
5279 * alist.h, append.h, arbiters.h, async.h, boolean.h, chars.h,
5280 continuations.h, debug.h, dynwind.h, error.h, eval.h, fdsocket.h,
5281 feature.h, filesys.h, fports.h, gc.h, gdbint.h, genio.h, gsubr.h,
5282 hash.h, init.h, ioext.h, kw.h, list.h, markers.h, marksweep.h,
5283 mbstrings.h, numbers.h, objprop.h, options.h, pairs.h, ports.h,
5284 posix.h, print.h, procprop.h, procs.h, ramap.h, read.h, root.h,
5285 sequences.h, smob.h, socket.h, srcprop.h, stackchk.h, stime.h,
5286 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
5287 tag.h, throw.h, unif.h, variable.h, vectors.h, version.h,
5288 vports.h, weaks.h: #include "libguile/__scm.h", not
5289 <libguile/__scm.h>. This allows 'gcc -MM' to determine which
5290 dependencies are within libguile properly.
5291
5292 Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
5293
5294 * Makefile.in (.c.x): Simplify; there's no need to run this rule
5295 when scmconfig.h doesn't exist.
5296
5297 * load.c (scm_sys_try_load): Correct spelling.
5298
5299 * feature.c (scm_loc_features): Make this static.
5300
5301 * Makefile.in (libpath.h): Omit trailing slash from path. We
5302 shouldn't require it of users, so why put it here?
5303
5304 Move code to initialize and search %load-path from ice-9 to C
5305 code, so we can use the load-path to find the ice-9 boot code;
5306 this makes it easier to run Guile without installing it. See
5307 corresponding changes in guile/Makefile.in.
5308 * feature.c: Move stuff concerned with the load path to load.c.
5309 (scm_compiled_library_path): Deleted.
5310 Don't #include libpath.h here.
5311 * feature.h: Don't mention scm_compiled_library_path.
5312 * load.c: #include "libpath.h" here, as well as <sys/types.h>,
5313 <sys/stat.h>, and <unistd.h> (if present).
5314 (R_OK): #define if the system hasn't deigned to.
5315 (scm_loc_load_path): New variable.
5316 (scm_init_load_path, scm_sys_search_load_path,
5317 scm_sys_try_load_path): New functions.
5318 (scm_init_load): Initialize scm_loc_load_path to point to the
5319 value cell of the Scheme %load-path variable.
5320 * load.h: Add declarations for scm_sys_search_load_path,
5321 scm_sys_try_load_path.
5322 * init.c: Call scm_init_load_path.
5323 * Makefile.in (feature.o, load.o): Dependencies updated.
5324
5325 * load.c, load.h: Rewrite using PROTO macro.
5326
5327 Thu Sep 5 01:54:33 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
5328
5329 * gc.c (scm_cellp): New function: C predicate to determine if an
5330 SCM value can be regarded as a pointer to a cell on the heap.
5331
5332 * gc.h: Added declaration of scm_cellp.
5333
5334 * gdb_interface.h: New file: The GDB interface header from the GDB
5335 distribution.
5336
5337 * gdbint.c: New file: GDB interface.
5338
5339 * gdbint.h: New file: GDB interface.
5340
5341 * libguile.h: Added #include <libguile/gdbint.h>.
5342
5343 * init.c (scm_boot_guile): Added scm_init_gdbint.
5344
5345 * Makefile.in: Added gdb_interface.h, gdbint.[hc].
5346 Added -I.. to INCLUDE_CFLAGS (otherwise the include files won't be
5347 found if object files and source are kept separate).
5348
5349 Wed Sep 4 14:35:02 1996 Jim Blandy <jimb@floss.cyclic.com>
5350
5351 * feature.h, feature.c: Use PROTO macro, instead of #if __STDC__.
5352
5353 Wed Sep 4 01:30:47 1996 Jim Blandy <jimb@totoro.cyclic.com>
5354
5355 * configure.in: Don't substitute the values of TCL_SRC_DIR and
5356 TK_SRC_DIR; they're not relevant any more.
5357
5358 * Makefile.in (CC): Don't list -Wall here; it's a GCC-specific flag.
5359 * configure.in: Instead, put it in CFLAGS here, iff we're using GCC.
5360
5361 Wed Sep 4 00:55:49 1996 Jim Blandy <jimb@floss.cyclic.com>
5362
5363 * PLUGIN/guile.config (xtra_cflags): Include .. in the header
5364 search path, so we can find the <libguile/MUMBLE.h> headers.
5365
5366 * Makefile.in (ancillary): List aclocal.m4, for 'make dist'.
5367
5368 * Makefile.in (ALL_CFLAGS): Don't mention CFLAGS here; it's
5369 implicit in the .c.o rule.
5370 (.c.x): Don't mention ALL_CFLAGS here; its value is included in
5371 $(CC) already.
5372
5373 Put the library path in a header file, instead of passing it on
5374 the command line in every compilation.
5375 * Makefile.in (libpath.h): New target.
5376 (feature.o): Depend on libpath.h.
5377 (clean): Delete libpath.h.
5378 (ALL_CFLAGS): Don't use -DLIBRARY_PATH here. Instead ...
5379 * feature.c: ... #include "libpath.h" here.
5380 * .cvsignore: Ignore libpath.h.
5381
5382 Don't install the unwashed masses of Guile header files in the
5383 main #include path; put most of them in a subdirectory called
5384 'libguile'. This avoids naming conflicts between Guile header
5385 files and system header files (of which there were a few).
5386 * Makefile.in (pkgincludedir): Deleted.
5387 (innerincludedir): New variable; this and $(includedir) are enough.
5388 (INCLUDE_CFLAGS): Search for headers in "-I$(srcdir)/..".
5389 (installed_h_files): Divide this up. Now this variable lists
5390 those header files which should go into $(includedir) (i.e. appear
5391 directly in the #include path), and ...
5392 (inner_h_files): ... this new variable says which files appear in
5393 a subdirectory, and are referred to as <libguile/mumble.h>.
5394 (h_files): List them both.
5395 (install): Create innerincludedir, not pkgincludedir. Put
5396 the installed_h_files and inner_h_files in their proper places.
5397 (uninstall): Corresponding changes.
5398 * alist.h, append.h, arbiters.h, async.h, boolean.h, chars.h,
5399 continuations.h, debug.h, dynwind.h, error.h, eval.h, fdsocket.h,
5400 feature.h, fports.h, gc.h, genio.h, gsubr.h, hash.h, init.h,
5401 ioext.h, kw.h, libguile.h, list.h, markers.h, marksweep.h,
5402 mbstrings.h, numbers.h, options.h, pairs.h, ports.h, posix.h,
5403 print.h, procprop.h, procs.h, ramap.h, read.h, root.h,
5404 sequences.h, smob.h, socket.h, srcprop.h, stackchk.h, stime.h,
5405 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
5406 tag.h, throw.h, unif.h, variable.h, vectors.h, version.h,
5407 vports.h, weaks.h: Find __scm.h in its new location.
5408 * __scm.h: Find scmconfig.h and tags.h in their new locations
5409 (they're both "inner" files).
5410
5411 Tue Sep 3 20:27:35 1996 Jim Blandy <jimb@floss.cyclic.com>
5412
5413 * Makefile.in (.c.x): Remove duplicate use of $(ALL_CFLAGS).
5414
5415 Tue Sep 3 19:53:00 1996 Jim Blandy <jimb@totoro.cyclic.com>
5416
5417 * posix.c: Doc fixes.
5418
5419 Mon Sep 2 15:22:40 1996 Jim Blandy <jimb@totoro.cyclic.com>
5420
5421 * socket.c: Don't include a prototype for inet_aton; just use a
5422 K&R style declaration, to avoid warnings but minimize the chance
5423 of conflicts with the system.
5424
5425 On NextStep, <utime.h> doesn't define struct utime, unless we
5426 #define _POSIX_SOURCE before #including it.
5427 * aclocal.m4 (GUILE_STRUCT_UTIMBUF): New test.
5428 * acconfig.h: New comment text for above CPP symbol.
5429 * configure.in: Call it.
5430 * posix.c: #define _POSIX_SOURCE if it seems necessary.
5431
5432 * configure.in (AC_CHECK_HEADERS): Include sys/utime.h and utime.h
5433 in the list.
5434 * posix.c: Check HAVE_SYS_UTIME_H and HAVE_UTIME_H, instead of
5435 testing for __EMX__.
5436
5437 * posix.c: #include <libc.h>, if it exists.
5438
5439 * posix.c: Cast the return result to GETGROUPS_T, not gid_t; we
5440 don't even know if the latter exists.
5441
5442 * posix.c (s_sys_setpgid, s_sys_setsid, s_sys_ctermid,
5443 s_sys_tcgetpgrp, s_sys_tcsetpgrp): Renamed from s_setpgid,
5444 s_setsid, s_ctermid, s_tcgetpgrp, s_tcsetpgrp, for consistency.
5445
5446 * posix.c (R_OK, W_OK, X_OK, F_OK): #define these if the system's
5447 header files don't.
5448 (scm_init_posix): Use them when initializing the Scheme constants
5449 of the same name.
5450
5451 Fri Aug 30 16:01:30 1996 Jim Blandy <jimb@floss.cyclic.com>
5452
5453 * Makefile.in (libdir, includedir, bindir): Use the
5454 autoconf-supplied values, instead of deriving them ourselves.
5455 (pkgincludedir, datadir, pkgdatadir): New variables.
5456 (install, uninstall): Put the header files in a special
5457 subdirectory, not in the main search path.
5458
5459 * Makefile.in (ALL_CFLAGS): Provide the proper value for
5460 LIBRARY_PATH --- use $(pkgdatadir) instead of $(libdir).
5461
5462 * Makefile.in (IMPLPATH): Deleted; never used.
5463
5464 * Makefile.in (TCL_SRC_DIR, TK_SRC_DIR): Deleted; we don't depend
5465 on the Tcl/Tk source any more.
5466 (INCLUDE_CFLAGS): Remove references to the above.
5467
5468 * Makefile.in (version.o): Corrected dependencies.
5469
5470 Thu Aug 29 23:06:19 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
5471
5472 * libguile.h: #include "version.h"
5473
5474 * init.c (scm_boot_guile): Call scm_init_version.
5475 * gscm.c (gscm_run_scm): Call scm_init_version.
5476
5477 * configure.in (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION,
5478 GUILE_VERSION): AC_DEFINE these.
5479 (acconfig.h): #undef the above symbols.
5480
5481 * Makefile.in (libobjs): Add version.o.
5482 (installed_h_files): Add version.h.
5483 (c_files): Add version.c.
5484 (gen_c_files): Add version.x.
5485 (version.o): New rule.
5486 (alist.o, append.o, appinit.o, arbiters.o, async.o, boolean.o,
5487 chars.o, continuations.o, dynwind.o, eq.o, error.o, eval.o,
5488 fdsocket.o, feature.o, files.o, filesys.o, fports.o, gc.o,
5489 genio.o, gsubr.o, hash.o, hashtab.o, init.o, kw.o, list.o, load.o,
5490 mallocs.o, markers.o, marksweep.o, mbstrings.o, numbers.o,
5491 objprop.o, pairs.o, ports.o, posix.o, print.o, procprop.o,
5492 procs.o, ramap.o, read.o, root.o, scmsigs.o, sequences.o,
5493 simpos.o, smob.o, socket.o, stackchk.o, stime.o, strings.o,
5494 strop.o, strorder.o, strports.o, struct.o, symbols.o, tag.o,
5495 throw.o, unif.o, variable.o, vectors.o, version.o, vports.o,
5496 weaks.o): Add version.h to dependency lists.
5497 (markers.o): Remove duplicate rule.
5498
5499 * version.h: New file.
5500
5501 * version.c: New file.
5502
5503 Thu Aug 29 15:21:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
5504
5505 * symbols.c (scm_strhash): scm_downcase is now a function, not an
5506 array; use it appropriately. Since GCC is quite happy to
5507 subscript functions, it never warned us about this; we should use
5508 -Wpointer-arith in the future. I guess we never tested
5509 case-insensitivity.
5510
5511 Wed Aug 28 18:52:22 1996 Jim Blandy <jimb@totoro.cyclic.com>
5512
5513 * socket.c: Doc and copyright fixes.
5514
5515 Sat Aug 24 05:29:19 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
5516
5517 * debug.c: Fixed and improved gdb support.
5518
5519 Fri Aug 23 18:00:16 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
5520
5521 * socket.c: Added declaration of inet_aton to avoid compiler
5522 warning. (Hope this solution is correct.)
5523
5524 * stime.c: Added declaration of ftime. (This is missing in
5525 Solaris 2 headers.)
5526
5527 Fri Aug 23 02:03:32 1996 Gary Houston <ghouston@actrix.gen.nz>
5528
5529 * configure, scmconfig.h.in: Updated, using autoconf and autoheader.
5530
5531 * Makefile.in (c_files): add strerror.c.
5532
5533 * strerror.c: new file from Emacs' sysdep.c.
5534 maybe configure should also check for sys_errlist.
5535
5536 * configure.in (AC_REPLACE_FUNCS): add strerror.
5537
5538 Fri Aug 23 03:02:46 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
5539
5540 * debug.c (scm_init_debug): Added initialization for
5541 scm_evaluator_traps.
5542
5543 * debug.h, debug.c: Various name changes.
5544 (Mostly prefixing with SCM_.) Renamed "debug-options" -->
5545 "debug-options-interface". See commentary in options.c.
5546
5547 * options.h, options.c: Options now have documentation strings.
5548 Also added a long explanatory commentary.
5549
5550 * eval.c, print.h, print.c, read.h, read.c: Modifications to
5551 run-time options.
5552
5553 * gscm.c, init.c, root.c, throw.c: Bug fixes:
5554 last_debug_info_frame is now updated in all cases.
5555
5556 * __scm.h, stackchk.h, stackchk.c: Guile now performs stack
5557 checking.
5558
5559 Thu Aug 22 17:34:17 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
5560
5561 * __scm.h: SCM_STACK_LIMIT removed (now a run-time option).
5562 Added option STACK_CHECKING.
5563
5564 Tue Aug 20 18:48:40 1996 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5565
5566 * Makefile.in: Added {debug,options,srcprop}.{h,c}
5567
5568 * __scm.h: Removed symbols for debugging support.
5569
5570 * acconfig.h: Added symbols for debugging support.
5571
5572 * configure.in: Added user option for debugging support.
5573 --enable-debug will include the debugging code into libguile.a.
5574
5575 * continuations.c (scm_make_cont): Enlarged the #if 0 around
5576 scm_relocate_chunk_to_heap.
5577
5578 * debug.c: New file: low-level debugging support. It also
5579 includes support for debugging with gdb. (The extensions to gdb
5580 are written by Per Bothner at Cygnus.)
5581
5582 * debug.h: New file: low-level debugging support.
5583
5584 * eval.c: scm_m_set and SCM_IM_SET no longer supports multiple
5585 argument pairs. Extensive modifications to the debugging
5586 evaluator. Added "SECTION:" commentaries to clarify what happens
5587 when, during double compilation. Renamed EVALIMP --> EVALIM.
5588 Renamed EVAL --> XEVAL. Removed function evalcar. Defined
5589 evalcar to scm_eval_car. Added explanation of "EVAL" symbols to
5590 the beginning of the file. New procedure: scm_unmemocopy.
5591 Added some global state variables needed by the debugging
5592 evaluator: scm_ceval_ptr, last_debug_info_frame, debug_mode,
5593 check_entry, check_apply, check_exit, debug_options and
5594 evaluator_traps. New acro: undefine.
5595
5596 * eval.h: Renamed EVAL --> XEVAL.
5597
5598 * gc.c (scm_init_storage): Renamed scm_make_weak_hash_table
5599 --> scm_make_weak_key_hash_table.
5600
5601 * init.c (scm_restart_stack, scm_boot_guile): Added initialization
5602 of SCM_DFRAME. Added calls to scm_init_{debug,options,srcprop}.
5603
5604 * libguile.h: Conditionally include debug.h
5605
5606 * objprop.c (scm_object_properties, scm_set_object_properties_x):
5607 scm_object_properties shouldn't return handle. `handle' now gets
5608 initialized in scm_set_object_properties_x. scm_object_properties
5609 doesn't any longer create an entry in scm_object_whash.
5610
5611 * options.c: New file: handling of run time options.
5612
5613 * options.h: New file: handling of run time options.
5614
5615 * posix.c (scm_getpgrp): Cast pointer to getpgrp.
5616
5617 * print.c: New procedure: scm_print_options
5618
5619 * print.h: Defines for print options.
5620
5621 * read.c: New procedure: scm_read_options
5622
5623 * read.h: Defines for reader options.
5624
5625 * root.h: Added scm_source_whash among scm_sys_protects.
5626
5627 * srcprop.c: New file: source properties.
5628
5629 * srcprop.h: New file: source properties.
5630
5631 * throw.c (jbsmob): Jump buffers are now correctly allocated.
5632 (Bug found by A. Green.)
5633
5634 * weak.c: Renamed scm_weak_hash_table --> scm_weak_key_hash_table.
5635
5636 * weak.h: Renamed scm_weak_hash_table --> scm_weak_key_hash_table.
5637
5638 Thu Aug 15 02:05:14 1996 Jim Blandy <jimb@totoro.cyclic.com>
5639
5640 * libguile.h: #include "objprop.h"; I guess this was forgotten.
5641
5642 * init.c (scm_boot_guile): Don't call scm_init_rgx; it's a plugin,
5643 and should be called by the final client.
5644
5645 Wed Aug 14 21:41:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
5646
5647 * gc.h: Use the PROTO macro when declaring functions.
5648 * gc.c: Use the PROTO macro when declaring static functions.
5649 Remove the CPP hair around function definitions.
5650
5651 * gc.c (scm_init_storage): Initialize scm_asyncs.
5652
5653 * libguile.h: #include "__scm.h" before testing the STDC_HEADERS
5654 preprocessor symbol; "__scm.h" is where it might get #defined.
5655 * __scm.h: Similar: #include <scmconfig.h> before testing
5656 HAVE_LIMITS_H.
5657
5658 * __scm.h: It's HAVE_LIMITS_H, not HAVE_LIMITSH.
5659
5660 Fri Aug 9 11:09:28 1996 Jim Blandy <jimb@totoro.cyclic.com>
5661
5662 * init.c (scm_boot_guile): Add init_func argument; call
5663 (*init_func) instead of calling scm_appinit; it's ucky to
5664 hard-code names for the user's procedures.
5665 * init.h (scm_boot_guile): Adjust declaration.
5666
5667 * __scm.h (PROTO): New macro, for declaring functions with
5668 prototypes.
5669
5670 * init.h (scm_start_stack, scm_restart_stack): Use PROTO;
5671 eliminate all the __STDC__ conditionals.
5672 (scm_boot_guile): Add declaration.
5673 * init.c (scm_start_stack, scm_restart_stack, scm_boot_guile):
5674 Remove __STDC__ conditionals around function definitions; the
5675 declarations in init.h will provide the same information, more
5676 usefully.
5677
5678 * __scm.h (SCM_SYSMISSING): When we don't have ENOSYS, don't
5679 complain about it in the error message; the error message is
5680 adequate without that note, and there's nothing the user can do
5681 about it.
5682
5683 Wed Aug 7 14:14:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
5684
5685 * Makefile.in (ancillary): Drop def.sed.
5686
5687 * posix.c (scm_init_posix): Use numeric values, rather than
5688 CPP symbols, when defining the scheme values R_OK, W_OK, X_OK, and
5689 F_OK. The symbols aren't available on some systems, and I'm
5690 pretty sure their values are fixed by common widespread practice.
5691 * ioext.c (scm_init_ioext): Code here defined them too; remove it.
5692
5693 More functions unavailable on some systems.
5694 * configure.in (AC_CHECK_FUNCS): Add ctermid, setpgid, setsid,
5695 tcgetpgrp, tcsetpgrp, and waitpid to the list of functions to
5696 check for.
5697 * configure, scmconfig.h.in: Updated, using autoconf and autoheader.
5698 * posix.c (scm_sys_ctermid, scm_sys_setpgid, scm_sys_setsid,
5699 scm_sys_tcgetpgrp, scm_sys_tcsetpgrp, scm_sys_waitpid): Put the
5700 bodies of these functions in "#ifdef HAVE_MUMBLE" clauses, with a
5701 stub that signals an error as the #else.
5702
5703 * Makefile.in (ancillary): Drop acconfig-1.5.h; add acconfig.h.
5704
5705 Wed Aug 7 06:28:42 1996 Gary Houston <ghouston@actrix.gen.nz>
5706
5707 * Fixes motivated by Petr Adamek <adamek@mit.edu>:
5708
5709 * unif.c: include ramap.h.
5710
5711 * read.c (endif): case_insensative_p renamed case_insensitive_p.
5712
5713 * ramap.h: rename scm_array_copy prototypes to scm_array_copy_x.
5714
5715 * ports.c: include sys/ioctl.h.
5716
5717 * scmconfig.h.in: add HAVE_SYS_IOCTL_H.
5718
5719 * configure.in: check for sys/ioctl.h.
5720
5721 * ports.c: include <malloc.h> not "malloc.h".
5722
5723 * mallocs.c: include <malloc.h> not "malloc.h", likewise for unistd.h.
5724
5725 * fports.c: remove ttyname and tmpnam declarations.
5726
5727 * posix.c: fewer ttyname declarations.
5728
5729 * fports.c: include <string.h> not "string.h".
5730
5731 * init.c, ioext.c: include string.h and unistd.h.
5732
5733 * gc.c: include <malloc.h> not "malloc.h", likewise for unistd.h.
5734
5735 * async.c, strings.h, strports.c, struct.c, symbols.c, feature.c,
5736 genio.c, simpos.c, vports.c: include string.h.
5737
5738 * socket.c, fdsocket.c: include string.h only if HAVE_STRING_H.
5739
5740 * fdsocket.c (getsockopt, setsockopt): change type of optlen from
5741 scm_sizet to int.
5742 (scm_addr_buffer_size): change type from scm_sizet to int.
5743 (accept, getsockname, getpeername, recvfrom): change type of tmp_size
5744 from scm_sizet to int.
5745
5746 * error.c: include unistd.h.
5747
5748 * __scm.h: (SCM_SYSMISSING): another version in case ENOSYS isn't
5749 defined.
5750
5751 * Makefile.in: remove references to .hd, .cd suffix and __scm.hd.
5752
5753 * __scm.hd, def.sed: deleted.
5754
5755 Tue Aug 6 14:49:08 1996 Jim Blandy <jimb@totoro.cyclic.com>
5756
5757 Changes for NeXT, suggested by Robert Brown.
5758 * configure.in: Call AC_TYPE_MODE_T.
5759 (AC_CHECK_HEADERS): Add libc.h, to get more prototypes on the
5760 NeXT. Put header file list in alphabetical order.
5761 * configure, scmconfig.h.in: Regenerated.
5762 * filesys.c [HAVE_LIBC_H]: #include <libc.h>.
5763
5764 * filesys.c [HAVE_STRING_H]: #include <string.h>, to get prototype
5765 for strerror.
5766
5767 * acconfig.h: New file, providing documentation for the CPP
5768 symbols defined in configure.in
5769 * acconfig-1.5.h: Removed; superceded by the above.
5770
5771 Sat Aug 3 01:27:14 1996 Gary Houston <ghouston@actrix.gen.nz>
5772
5773 * ioext.c (scm_sys_fdopen): fix the port-table assignment.
5774
5775 * fports.c (scm_open_file): don't return #f, throw error.
5776
5777 * ioext.c (fileno): renamed from %fileno.
5778 (soft-fileno): deleted.
5779
5780 * ports.c (scm_port_revealed): don't need to check for -1 from
5781 scm_revealed_count.
5782 (scm_set_port_revealed_x): return unspecified, not #f.
5783
5784 * ioext.c (primitive-move->fdes): return #t or #f, not 1 or 0.
5785
5786 * fdsocket.c: getsockopt, setsockopt: use HAVE_STRUCT_LINGER.
5787
5788 * scmconfig.h.in: add HAVE_STRUCT_LINGER.
5789
5790 * configure.in: check for struct linger, set HAVE_STRUCT_LINGER.
5791
5792 Thu Aug 1 02:58:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
5793
5794 * filesys.c, posix.c: #include <sys/types.h> before <sys/stat.h>.
5795 This is necessary on Ultrix, and doesn't hurt portability.
5796
5797 * Makefile.in (dist-dir): New target, implementing a new dist system.
5798 (installed_h_files): Put in alphabetical order.
5799 Remove duplicate entries for markers.h and unif.h.
5800 (c_files): Remove duplicate entries for markers.c.
5801 (ancillary): Renamed from anillery; all uses changed. Remove
5802 PLUGIN; it's a directory, and needs special treatment in dist-dir.
5803 Remove all the ../doc/* files; doc/Makefile.in handles that.
5804
5805 * Makefile.in (libobjs): Remove duplicate entry for markers.o.
5806
5807 * Makefile.in (.c.x): Compensate for Ultrix's broken Bourne shell:
5808 every if must have an else, or else the whole command has a
5809 non-zero exit code whenever the if's condition is false.
5810
5811 Thu Aug 1 08:22:24 1996 Gary Houston <ghouston@actrix.gen.nz>
5812
5813 * posix.c: include string.h.
5814
5815 Wed Jul 31 23:43:05 1996 Gary Houston <ghouston@actrix.gen.nz>
5816
5817 * numbers.c: rename %expt -> $expt, %atan2 -> $atan2, as it must
5818 have been once.
5819
5820 * posix.c, ioext.c, socket.c, fdsocket.c, files.c, filesys.c, simpos.c:
5821 Remove leading % from scheme names.
5822 Do not return error values, call SCM_SYSERROR or similar.
5823
5824 * __scm.h (SCM_SYSERROR, SCM_SYSMISSING): new macros.
5825
5826 Wed Jun 12 00:28:31 1996 Tom Lord <lord@beehive>
5827
5828 * struct.c (scm_init_struct): new file.
5829
5830 Fri Jun 7 14:02:00 1996 Tom Lord <lord@beehive>
5831
5832 * list.c (scm_list_tail): list-cdr-ref is the same as list-tail.
5833 (scm_list_head): added list-head for rapidly chopping argument
5834 lists off of longer lists (and similar).
5835
5836 Tue Jun 4 09:40:33 1996 Tom Lord <lord@beehive>
5837
5838 * objprop.c (scm_object_property): assq the cdr of the whash
5839 handle for obj, not the handle itself.
5840
5841 Mon Jun 3 17:19:30 1996 Tom Lord <lord@beehive>
5842
5843 * gc.c (scm_mark_weak_vector_spines): Mark the spines (alists) of
5844 weak hash tables last of all marking to avoid an obscure gc bug.
5845 WARNING: circular lists stored in a weak hash table will hose us.
5846
5847 Fri May 24 09:53:39 1996 Tom Lord <lord@beehive>
5848
5849 * vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):
5850 new functions similar to scm_substring_move_left_x and
5851 scm_substring_move_right_x.
5852
5853 Wed May 22 20:07:01 1996 Tom Lord <lord@beehive>
5854
5855 * init.c (scm_boot_guile): prevent gc with scm_block_gc not
5856 scm_gc_heap_lock!
5857
5858 Wed May 15 16:13:29 1996 Tom Lord <lord@beehive>
5859
5860 * ports.c (scm_unread_char): scm_gen_ungetc as a scheme procedure.
5861
5862 Thu May 9 09:33:17 1996 Tom Lord <lord@beehive>
5863
5864 * strports.c (scm_strprint_obj): convenience function. C for
5865 (lambda (obj) (call-with-output-string (lambda (p) (write obj p))))
5866
5867 * guile-{tcl,tk}.[ch], events.[ch], keysyms.[ch], tcl-channels.[ch]
5868 removed to a separate library
5869
5870 * init.c (scm_boot_guile): copied from guile-tcl.c.
5871 Initialization specific to tcl interpreters removed.
5872
5873 Wed May 8 15:07:37 1996 Tom Lord <lord@beehive>
5874
5875 * ports.c (scm_ports_prehistory): size malloced here doesn't
5876 matter so long as it is non-0 (got rid of "* 4").
5877
5878 Tue May 7 11:43:37 1996 Tom Lord <lord@beehive>
5879
5880 * gscm.h: gscm_mkarray eliminated (presumably was not being used
5881 since its definition was bogus).
5882
5883 Mon May 6 13:02:56 1996 Tom Lord <lord@beehive>
5884
5885 * mallocs.[ch]: back again (for rx at least).
5886
5887 Wed Apr 17 08:54:20 1996 Tom Lord <lord@beehive>
5888
5889 * ports.c: removed functions relating to the mapping between ports
5890 and descriptors. (That stuff is unix-specific and should be collected
5891 in a separate library).
5892
5893 * ramap.c (scm_array_copy): return #<unspecified> not #<undefined>.
5894 (Tom Mckay@avanticorp.com)
5895
5896 Mon Apr 15 14:16:55 1996 Tom Lord <lord@beehive>
5897
5898 * gc.c (scm_gc_sweep): Immediates in weak vectors were not
5899 handled correctly (SCM_FREEP was applied to them) -- test for
5900 NIMP. Keys in weak hash tables were spuriously (though harmlessly)
5901 being overwritten with #f. (brown@grettir.bibliotech.com)
5902
5903 Tue Apr 2 22:25:00 1996 Tom Lord <lord@beehive>
5904
5905 * gc.c (scm_unhash_name): new procedure, unhash-name, flushes glocs
5906 for a specific symbol or for all symbols.
5907
5908 Mon Apr 1 10:34:55 1996 Tom Lord <lord@beehive>
5909
5910 * gc.c (scm_gc_mark): mark weak hash tables correctly (was getting weak
5911 keys and weak values confused).
5912
5913 Thu Mar 14 22:20:20 1996 Tom Lord <lord@beehive>
5914
5915 * list.c (scm_last_pair): map '()=>'()
5916
5917 Wed Mar 13 16:43:34 1996 Tom Lord <lord@beehive>
5918
5919 * pairs.c, hashtab.c, list.c, alist.c append.c, sequences.c:
5920 Generalized assoc and hash-table functions.
5921 Factored pairs.c into multiple files.
5922
5923 Fri Mar 8 14:44:39 1996 Tom Lord <lord@beehive>
5924
5925 * gscm.c (gscm_run_scm): got rid of objprop.
5926
5927 Fri Mar 1 10:39:52 1996 Tom Lord <lord@beehive>
5928
5929 * genio.c (scm_getc):
5930 NOTE: fgetc may not be interruptable.
5931
5932 * procprop.c (scm_stand_in_scm_proc):
5933 NOTE: don't use a alist here.
5934 (scm_set_procedure_properties_x): fix type checking throughout this file.
5935
5936 * gc.c (scm_gc_sweep): free heap segments with free, not must_free.
5937
5938 * ports.c (scm_remove_from_port_table): adjust scm_mallocated
5939 after freeing part of the port table.
5940
5941 Thu Feb 29 16:21:17 1996 Tom Lord <lord@beehive>
5942
5943 * strports.c (scm_mkstrport):
5944 * vports.c (scm_make_soft_port): allocate a port table entry
5945 (possibly triggering gc) before setting the tag of the corresponding
5946 ports handle.
5947
5948 * pairs.c (scm_delq_x): never throw an error.
5949
5950 * vectors.c (scm_make_vector): made the default vector fill argument
5951 into '() (much more useful than the previous value, "#unspecified")
5952
5953 Mon Feb 26 17:19:09 1996 Tom Lord <lord@beehive>
5954
5955 * ports.c (scm_add_to_port_table): Added fields
5956 to port table entries: file_name, line_num, col.
5957 Update these in open_file, gen_getc and gen_ungetc.
5958 Added procedures to access those fields.
5959
5960 Sun Feb 25 00:10:36 1996 Tom Lord <lord@beehive>
5961
5962 * procs.c (scm_make_subr_opt): new entry point for making
5963 anonymous subrs.
5964
5965 Sat Feb 24 17:11:31 1996 Tom Lord <lord@beehive>
5966
5967 * gc.h: SCM_STACK_GROWS_UP is now set by autoconf.
5968
5969 Fri Feb 23 10:26:29 1996 Tom Lord <lord@beehive>
5970
5971 * numbers.c (scm_exact_p): This function no longer
5972 implements "integer?".
5973
5974 Thu Feb 22 20:56:16 1996 Tom Lord <lord@beehive>
5975
5976 * gc.c (scm_gc_end): simulate a signal at the end of each GC.
5977 (scm_gc_stats): return an assoc of useful data. Replaces "room"
5978 and the stats reporting formerlly built into repl.
5979
5980 * repl.[ch]: removed.
5981 GC statistics keeping moved to gc.c.
5982 Other statistics keeping can be done from Scheme.
5983 REPLS are now written in Scheme.
5984
5985 Wed Feb 21 10:28:53 1996 Tom Lord <lord@beehive>
5986
5987 * cnsvobj.c (gscm_is_gscm_obj): new file for old functions (icky
5988 conservatively marked objects).
5989
5990 * throw.c (scm_ithrow): Unwind up to the right catch during a throw!
5991
5992 * error.c (scm_init_error): init system_error_sym here, not in repl.c.
5993
5994 * feature.c (scm_compiled_library_path): moved here from repl.c.
5995 This file is for stuff relating specifically to Scheme libraries
5996 like slib.
5997
5998 * eval.c (scm_m_define): don't give warning about redefinition, don't
5999 check verbosity.
6000
6001 NOTE: this should throw a resumable exception with parameters --
6002 the name, the top-level env, the variable, the definition, #t/#f: redefining builtin?
6003
6004 * repl.c (scm_gc_begin/end): don't print a message, don't check verbosity.
6005
6006 * error.c: scm_warn eliminated.
6007
6008 * read.c (scm_lreadr): extra right paren gets an error, not a warning.
6009
6010 * repl.c, marksweep.c, gc.c (various):
6011 lose exit_report, growth_mon.
6012
6013 * gscm.c: got rid of verbosity functions.
6014
6015 Tue Feb 20 00:19:10 1996 Tom Lord <lord@beehive>
6016
6017 * throw.c (scm_ithrow): guard against the bad-throw hook changing
6018 between the call to procedurep and use.
6019
6020 * error.c (scm_everr):
6021 * gc.c (fixconfig):
6022 * gsubr.c (scm_make_gsubr): use exit, not scm_quit. still wrong,
6023 but less so.
6024
6025 * strports.c: don't reveal the port's string to the caller
6026 because it changes size.
6027
6028 (stputc stwrite): check/change the strings length with interrupts
6029 blocked.
6030
6031 * objprop.c (scm_set_object_property_x &c): use the generic
6032 hashing functions and be threadsafe.
6033
6034 * eval.c (scm_unmemocar): do this operation in a thread-safe way.
6035 (per suggestion jaffer@gnu.ai.mit.edu).
6036
6037 * mbstrings.c (scm_multi_byte_string): guard against argument list
6038 changing length.
6039
6040 * strings.c (scm_make_string): loop cleanup
6041
6042 * unif.c (scm_vector_set_length_x): scm_vector_set_length_x no longer
6043 a scheme function.
6044
6045 * weaks.c (scm_weak_vector): guard against argument list
6046 changing length.
6047
6048 * variable.c (scm_builtin_variable): check for/make a built-in
6049 variable automicly.
6050
6051 * vectors.c (scm_vector): while filling the new array,
6052 guard against a list of fill elements that grows after
6053 the vector is allocated.
6054
6055 * hashtab.c -- new file: general hash table
6056 functions. hash, hashq, hashv, hashx.
6057
6058 * tags.h: made wvect an option bit of vector.
6059
6060 Mon Feb 19 09:38:05 1996 Tom Lord <lord@beehive>
6061
6062 * symbols.c: made the basic symbol table operations atomic.
6063
6064 * root.c &c.: collected stack-specific global state.
6065 linum/colnum etc *should* be port-specific state.
6066
6067 * struct.c (scm_init_struct): init the first struct type during
6068 initialization to fix a race condition.
6069
6070 * continuations.c (scm_dynthrow): pass throwval in the 'regs'
6071 object, not in a global.
6072 (suggested by green@cygnus, jaffer@gnu.ai.mit.edu)
6073
6074 * throw.c (_scm_throw): Pass throwval on the stack, not in a global
6075 (suggested by green@cygnus, jaffer@gnu.ai.mit.edu)
6076
6077 * *.[ch]: namespace cleanup. Changed all (nearly) exported CPP
6078 and C symbols to begin with SCM_ or scm_.
6079
6080 Sun Feb 18 15:55:38 1996 Tom Lord <lord@beehive>
6081
6082 * gsubr.c (scm_gsubr_apply): statically allocate the
6083 array of arguments (bothner@cygnus.com).
6084
6085 Sat Feb 17 20:20:40 1996 Tom Lord <lord@beehive>
6086
6087 * scmsigs.c: Simplified to use async rountines.
6088
6089 * async.c: New support for interrupt handlers.
6090
6091 Thu Feb 15 11:39:09 1996 Tom Lord <lord@beehive>
6092
6093 * symbols.c (scm_string_to_symbol et al.): number of tweaky changes to
6094 set the multi_byte flag correctly in symbols. This is wrong.
6095 intern_obbary_soft and msymbolize should take an extra parameter.
6096 Also, weird multibyte symbols don't print correctly.
6097 The weird symbol syntax is also a bit bogus (emacs doesn't quite
6098 cope).
6099
6100 Tue Feb 13 11:39:37 1996 Tom Lord <lord@beehive>
6101
6102 * symbols.c (scm_string_to_obarray_symbol): obarray == #f means
6103 use the system symhash. == #t means create an uninterned symbol.
6104
6105 Wed Feb 7 09:28:02 1996 Tom Lord <lord@beehive>
6106
6107 * strings.c (scm_make_shared_substring): build'em.
6108 It might better to keep a table of these and use one
6109 less cons-pair per shared-substring.
6110
6111 Tue Feb 6 17:45:21 1996 Tom Lord <lord@beehive>
6112
6113 * strings.c (scm_string_shared_substring): create shared
6114 substrings. (Doesn't handle mb strings yet).
6115
6116 * mbstrings.c (scm_print_mb_string): handle RO strings.
6117
6118 * print.c (scm_iprin1): print substrings as their non-substring
6119 counterparts (dubious).
6120
6121 * marksweep.c (scm_gc_mark scm_gc_sweep): handle RO and MB
6122 strings.
6123
6124 * hash.c (scm_hasher): hash RO and MB strings as bytestrings.
6125
6126 * eval.c (SCM_CEVAL): self-evaluate RO and MB strings.
6127
6128 * eq.c (scm_equal_p): handle RO and MB strings.
6129
6130 * symbols.c (scm_string_to_symbol):
6131 (scm_string_to_obarray_symbol):
6132 * strop.c (scm_i_index):
6133 (scm_i_rindex):
6134 (scm_string_null_p):
6135 (scm_string_to_list):
6136 * strings.c (scm_string_length):
6137 (scm_string_ref):
6138 (scm_substring):
6139 (scm_string_append):
6140 * simpos.c (scm_system):
6141 (scm_getenv):
6142 * fports.c (scm_open_file):
6143 * strorder.c (scm_string_equal_p):
6144 (scm_string_ci_equal_p):
6145 (scm_string_less_p):
6146 (scm_string_ci_less_p):
6147 * pairs.c (scm_obj_length):
6148 * mbstrings.c (scm_multi_byte_string_length):
6149
6150 Use RO string macros for RO strings.
6151
6152 Tue Jan 30 09:19:08 1996 Tom Lord <lord@beehive>
6153
6154 * Makefile.in (CFLAGS ALL_CFLAGS): be more standard.
6155
6156 * strop.c (scm_i_rindex, scm_i_index): Don't use the BSD functions
6157 index/rindex. Do handle embedded \000 characters.
6158
6159 Sun Jan 28 13:16:18 1996 Tom Lord <lord@beehive>
6160
6161 * error.c (def_err_response): (int)scm_err_pos => (long)scm_err_pos
6162 Eliminate a (presumed) warning on some systems.
6163
6164 * gscm.c (gscm_run_scm): SCM_INIT_PATH => GUILE_INIT_PATH
6165 (Mikael Djurfeldt <mdj@nada.kth.se>)
6166
6167 Sat Jan 27 12:36:55 1996 Tom Lord <lord@beehive>
6168
6169 * eval.c (scm_map): added argument type checking.
6170 (kawai@sail.t.u-tokyo.ac.jp)
6171
6172 * gscm.c (gscm_set_procedure_properties_x): parameter "new" => "new_val"
6173 for C++. (Seth Alves <alves@gryphon.com>)
6174
6175 (gscm_cstr): uses an uninitialized local variable causing
6176 segv. (kawai@sail.t.u-tokyo.ac.jp)
6177
6178
6179 * lvectors.c (scm_get_lvector_hook):
6180 In guile-ii, the lvector code was broken. It was fixed in guile-iii.
6181 It seems to me like if it is broken again in guile-iv...Here is a patch.
6182 "! || (LENGTH (keyvec) == 0))"
6183 (From: Mikael Djurfeldt <mdj@nada.kth.se>)
6184
6185
6186 * gscm.c (gscm_sys_default_verbosity):
6187 incorrectly declared for non-__STDC__
6188 (Tom_Mckay@avanticorp.com)
6189
6190 * ports.c (scm_setfileno): Tweak the macro a bit
6191 to make it easier to port to systems that use
6192 more than a single structure field to hold a descriptor.
6193
6194 * debug.c (change_mode): Avoid GNUCism "int foo[n];"
6195 Give a warning, not an error, for unrecognized modes.
6196
6197 * eval.c (SCM_CEVAL):
6198 static char scm_s_for_each[];
6199 static char scm_s_map[];
6200 not needed.
6201
6202 * strings.c (scm_string_p):
6203 static char s_string[];
6204 (see next entry)
6205
6206 * struct.c (scm_sys_struct_set_x):
6207 static char s_sys_make_struct[];
6208 static char s_sys_struct_ref[];
6209 static char s_sys_struct_set_x[];
6210 Rearrange code to eliminate those forward decls for the sake of
6211 broken compilers.
6212
6213 * variable.c (make_vcell_variable): static char s_make_variable[];
6214 isn't needed.
6215
6216 * fports.c (scm_port_mode):
6217 chars modes[3] = "";
6218 to
6219 chars modes[3];
6220 modes[0] = '\0';
6221 (Tom_Mckay@avanticorp.com)
6222
6223
6224 * pairs.c (scm_set_cdr_x): non-__STDC__ declaration of
6225 scm_cons2(), scm_acons(), and scm_set_cdr_x() missing semicolon
6226 (Tom_Mckay@avanticorp.com)
6227
6228 * numbers.c (scm_num_eq_p): Non-__STDC__ declaration of
6229 scm_num_eq_p() was scm_equal_p().
6230 (Tom_Mckay@avanticorp.com)
6231
6232 * symbols.c (msymbolize): "CHARS(X) = " => "SETCHARS..."
6233 (Tom_Mckay@avanticorp.com)
6234
6235 Fri Jan 26 14:03:01 1996 Tom Lord <lord@beehive>
6236
6237 * weaks.c (scm_make_weak_vector): "VELTS(X) =" => "SETVELTS..."
6238 (Tom_Mckay@avanticorp.com)
6239
6240 * strop.c (scm_substring_fill_x):
6241 Non-__STDC__ declaration of scm_substring_fill_x() missing semicolon
6242 (Tom_Mckay@avanticorp.com)
6243
6244 * eval.c (SCM_APPLY): variables "debug_info" -> dbg_info.
6245 Works around a compiler bug on some machines. (Tom_Mckay@avanticorp.com)
6246
6247 * _scm.h (CxR functions): #define CxR SCM_CxR => #define CxR(X) SCM_CxR(X)
6248 Works around a compiler bug on some machines. (Tom_Mckay@avanticorp.com)
6249
6250 * lvectors.c (scm_lvector_set_x): avoid VELTS (VELTS (...)[..]) which
6251 can turn into an obscure gc bug.
6252
6253 * chars.c (scm_char_p): fixed PROC call.
6254
6255 * gscm.h (gscm_vset): use scm_vector_set_x not (the missing)
6256 scm_vector_set.
6257
6258 Tue Jan 23 13:29:40 1996 Tom Lord <lord@beehive>
6259
6260 * elisp.c (new file): dynamic scoping and other bits for
6261 elisp. Don't use this yet unless you specificly want to
6262 hack on elisp emulation.
6263
6264 * dynwind.c (scm_dowinds): When entering or leaving a dynamic
6265 scope created by scm_with_dynamic_bindings_operation_x, swap
6266 the bindings of that scope with the corresponding globals.
6267
6268 * continuations.c (scm_make_cont): when a continuation is captured,
6269 relocate the continuation stack chunks registered on the wind chain
6270 to the heap.
6271
6272 Sun Jan 21 19:31:17 1996 Tom Lord <lord@beehive>
6273
6274 * eval.c (SCM_CEVAL): if the function position evaluates
6275 to a macro, process it accordingly. (Previously, macros were
6276 handled only if the function position was a symbol naming a
6277 variable bound to a macro).
6278
6279 Sat Jan 20 23:21:37 1996 Tom Lord <lord@beehive>
6280
6281 * eval.c (scm_m_set): allow multi-variable set! like
6282 (set! x 1 y 2 z 3).
6283
6284 Wed Dec 6 02:40:49 1995 Tom Lord <lord@beehive>
6285
6286 * ports.h fports.c vports.c marksweep.c gc.c strports.c: moved the
6287 STREAM of ports into the port table and replaced it with a
6288 port-table index.
6289
6290 * repl.c (iprin1): added tc7_mb_string -- same as tc7_string.
6291
6292 * marksweep.c (scm_gc_mark): added tc7_mb_string -- same as tc7_string.
6293
6294 * mbstrings.c (new file): functions on multi-byte strings.
6295
6296 * tags.h (scm_typ7_string, scm_typ7_mb_string): added a tag
6297 for multi-byte strings. Moved the string tag.
6298
6299 * chars.h chars.c repl.c (many functions): made scm_upcase and
6300 scm_downcase functions that are safe for extended character sets.
6301
6302 Changed the range of integer->char.
6303
6304 Changed the type of SCM_ICHR.
6305
6306 Tue May 16 17:49:58 1995 Mikael Djurfeldt <mdj@sanscalc.nada.kth.se>
6307
6308 * guile.c: Changed init file name from "SCM_INIT_PATH" to
6309 "GUILE_INIT_PATH"
6310
6311 Sun Aug 6 15:14:46 1995 Andrew McCallum <mccallum@vein.cs.rochester.edu>
6312
6313 * guile.c (gscm_is_gscm_type): New function. (Without this how will we
6314 know that it's safe to pass an object to gscm_get_type?)
6315 (gscm_get_type): Fix tyop in error message.
6316
6317 * variable.c (scm_variable_ref): fixed assertion test.
6318 (Robert STRANDH <strandh@labri.u-bordeaux.fr>)
6319
6320 * gscm.h: fixed several prototypes, notably gscm_vref.
6321 Add gscm_is_eq and temporarily commented out gscm_eq (see
6322 the note in gscm.h near gscm_eq if this change effects your
6323 code).
6324 (Reported by Mark Galassi <rosalia@sstcx1.lanl.gov>)
6325
6326 * pairs.c (scm_obj_length): see next entry.
6327
6328 * gscm.h (gscm_obj_length): A way to get an integer
6329 length for lists, strings, symbols (treated as strings),
6330 and vectors. Returns -1 on error.
6331
6332 * eq.c (scm_equal_p): fixed smob case.
6333 (William Gribble <grib@arlut.utexas.edu>)
6334
6335 * Makefile.in (X_CFLAGS): defined.
6336 (William Gribble <grib@arlut.utexas.edu>)
6337
6338 * gscm.h (gscm_2_double): provided now
6339 (reported by Mark Galassi <rosalia@sstcx1.lanl.gov>)
6340
6341 Tue Jun 13 01:04:09 1995 gnu
6342 * Vrooom!
6343
6344