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