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