*** empty log message ***
[bpt/guile.git] / libguile / ChangeLog
1 1999-08-19 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
2
3 * eval.c (SCM_APPLY), sort.c (closureless): Expand body when
4 evaluating closures.
5
6 1999-08-18 Gary Houston <ghouston@easynet.co.uk>
7
8 * fports.c (fport_write): use memcpy instead of strncpy, in case
9 the data contains NUL.
10
11 1999-08-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
12
13 * gh.h (gh_vector_to_list): Bugfix. (Thanks to Frank Cieslok.)
14
15 * backtrace.c, debug.c, eval.c, eval.h, gsubr.c, procprop.h,
16 read.c, srcprop.c, srcprop.h (scm_i_filename, scm_i_line,
17 scm_i_column, scm_i_copy, scm_i_name, scm_i_lambda, scm_i_source,
18 scm_i_more, scm_i_procname, scm_i_dot, scm_i_arrow, scm_i_else,
19 scm_i_unquote, scm_i_uq_splicing, scm_i_apply, scm_i_enter_frame,
20 scm_i_apply_frame, scm_i_exit_frame, scm_i_trace, scm_i_quote,
21 scm_i_begin, scm_i_if, scm_i_and, scm_i_or, scm_i_case,
22 scm_i_cond, scm_i_letstar, scm_i_do, scm_i_quasiquote,
23 scm_i_define, scm_i_letrec, scm_i_let, scm_i_atapply,
24 scm_i_atcall_cc, scm_i_breakpoint): Renamed: Consequently use
25 scm_sym_ as prefix for symbols.
26
27 * debug.c (scm_i_proc, scm_i_args, scm_i_eval_args): Removed.
28
29 * eval.c, eval.h (scm_sym_begin, scm_sym_if, scm_sym_and,
30 scm_sym_case, scm_sym_cond, scm_sym_letstar, scm_sym_do,
31 scm_sym_define, scm_sym_letrec, scm_sym_atapply,
32 scm_sym_atcall_cc): Made global.
33
34 1999-08-16 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
35
36 * eval.c (scm_sym_args): Made global.
37
38 * objects.c (scm_set_object_procedure_x): Disallow setting of
39 procedures for pure generic functions.
40
41 1999-08-12 Gary Houston <ghouston@easynet.co.uk>
42
43 * ports.c (scm_seek): one more: was scm_lseek. Also changed the
44 Scheme name from lseek to seek, but lseek was added recently so
45 it shouldn't be a big problem.
46 * ports.c, gdbint.c, ioext.c: changed callers.
47
48 1999-08-11 Gary Houston <ghouston@easynet.co.uk>
49
50 * fports.c (fport_input_waiting): if select is used, return 1
51 instead of whatever FD_ISSET expands to. maybe it will be useful
52 to interpret the value from the input_waiting ptob procedure as a
53 lower bound on the number of bytes available.
54
55 * Mikael asked for a few names to be changed...
56
57 * ports.c (scm_make_port_type): take the write procedure as the
58 second argument instead of the flush procedure.
59 * ports.h (scm_ptob_descriptor): rename the ptob procedures:
60 fflush -> flush, read_flush -> end_input, fclose -> close,
61 fill_buffer -> fill_input, ftruncate -> truncate,
62 input_waiting_p -> input_waiting.
63
64 * ports.c (end_input_void_port): was read_flush_void_port.
65 (scm_set_port_end_input): was scm_set_port_flush_input.
66 (scm_set_port_flush): was scm_set_port_write.
67 (scm_set_port_input_waiting): was scm_set_port_input_waiting_p
68 (scm_end_input): was scm_read_flush.
69 (scm_fill_input): was scm_fill_buffer.
70 (scm_flush): was scm_fflush.
71 * fports.c (fport_input_waiting): renamed from fport_input_waiting_p.
72 (fport_end_input): was local_read_flush.
73 (fport_flush): was local_fflush.
74 (fport_close): was local_fclose.
75 (fport_truncate): was local_ftruncate.
76 (fport_seek): was local_seek.
77 (fport_free): was local_free.
78 (fport_fill_input): was fport_fill_buffer.
79 * strports.c (st_end_input): was st_read_flush.
80 (st_truncate): was st_ftruncate.
81 * vports.c: (sf_flush): was sfflush.
82 (sf_close): was sfclose.
83 (sf_fill_input): was sf_fill_buffer.
84
85 * ports.c, fports.c, strports, vports.c, ioext.c, unif.c, filesys.c:
86 change callers.
87
88 1999-08-06 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
89
90 * eval.c (SCM_IM_DISPATCH): Rewrote dispatch protocol. Dispatch
91 forms now contain the expressions to be dispatched upon instead of
92 depending on a surrounding lambda or let; Generic function
93 dispatch has been optimized; `apply' on a generic function now
94 works a little bit strangely. It uses a trick so that the type
95 dispatch code in SCM_CEVAL can be reused.
96
97 * objects.h, objects.c (scm_apply_generic_env): Added (used by
98 apply).
99 (scm_operator_p): Added.
100 (scm_sym_atdispatch): Added.
101 (scm_set_object_procedure_x): Modified to handle the new style
102 generic functions.
103 (scm_object_procedures): New debugging procedure.
104
105 1999-08-05 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
106
107 * eval.c, eval.h (scm_sym_args): Added.
108
109 * objects.h (SCM_CLASSF_PURE_GENERIC): Added.
110
111 * feature.c, feature.h (scm_c_run_hook): Added.
112
113 * eval.c (SCM_CEVAL:SCM_IM_DISPATCH): Bugfix: Jump back to
114 cdrxnoap and loopnoap instead of begin and loop.
115
116 1999-08-04 Gary Houston <ghouston@easynet.co.uk>
117
118 * ports.c (scm_putc, scm_puts),
119 * unif.c (scm_uniform_array_write): use scm_lfwrite.
120 * ports.c (scm_putc): change type of first argument from int to char.
121
122 1999-08-04 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
123
124 * eval.c (SCM_CEVAL): Improvements to SCM_IM_DISPATCH and
125 SCM_IM_HASH_DISPATCH.
126
127 * objects.h (SCM_CLASSF_GOOPS_VALID): Added.
128 (scm_si_redfined, scm_si_hashsets): Moved.
129
130 * objects.c (scm_class_of): Use the new SCM_CLASSF_GOOPS_VALID
131 flag which combines type and status info so that the class
132 redefinition protocol has zero cost during normal execution.
133
134 1999-08-03 Gary Houston <ghouston@easynet.co.uk>
135
136 * ports.h (scm_ptob_descriptor): include a write procedure again.
137 it's more efficient for unbuffered fports (e.g., sockets.)
138
139 * ports.c (scm_puts): use ptob->write.
140 * vports.c (scm_make_sfptob): set write proc in ptob.
141 * strports.c (scm_make_stptob): set write proc in ptob.
142 * ports.c (write_void_port): new procedure.
143 * vports.c (sf_write): new procedure.
144 * ports.c (scm_lfwrite): use ptob->write.
145 * strports.c (st_write): new procedure.
146 * fports.c (fport_write): new procedure.
147 (scm_make_fptob): set write in ptob to fport_write.
148 * ports.h: prototype for scm_set_port_write.
149 * ports.c (scm_make_port_type): initialise ptob write procedure.
150 (scm_set_port_write): new proc.
151
152 1999-08-01 Jim Blandy <jimb@savonarola.red-bean.com>
153
154 * ports.c (scm_char_ready_p): Don't try to find PORT's ptab entry
155 until we've verified that it is actually a port. (Thanks to
156 Lorentey Karoly.)
157
158 1999-07-31 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
159
160 * gc.c (scm_must_malloc, scm_must_realloc): Removed unnecessary
161 code, particularly an unnecessary test (len != size, where len ==
162 size). (Was this leftovers from debugging code, or have I missed
163 something profound?)
164
165 * hashtab.c: Bugfix: Don't declare s_hash_fold without storage
166 size. (Thanks to James Dean Palmer.)
167
168 * numbers.c (scm_makdbl): Bugfix: Initialize imaginary part.
169 (Thanks to Lorentey Karoly.)
170
171 1999-07-30 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
172
173 * eval.c (scm_m_expand_body): Use scm_cons_source.
174
175 * struct.c (scm_print_struct): Use vtable name.
176
177 * print.c (scm_init_print): Set name of print state type.
178
179 * stacks.c (scm_init_stacks): Set name of stack type.
180
181 1999-07-29 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
182
183 * eval.c (SCM_CEVAL): Removed old implementation of internal
184 define.
185
186 * gsubr.c, procprop.h (scm_i_inner_name): Removed.
187
188 * debug.c, debug.h (scm_reverse_lookup): Added.
189 (scm_procedure_name): Use scm_reverse_lookup to lookup the name of
190 internal procedure definitions; Don't use scm_i_inner_name.
191
192 * eval.c, tags.h, print.c (SCM_IM_SLOT_REF, SCM_IM_SLOT_SET_X):
193 New isym operations.
194
195 * eval.h: Added prototypes for multi language support functions.
196
197 * eval.c (SCM_IM_DISPATCH, SCM_IM_HASH_DISPATCH): Don't use
198 improper lists in the low-level representation, since that will
199 cause a begin to be prepended at macro expansion.
200
201 * eval.c (scm_cons_source): Version of cons which copies source
202 properties from an existing cell.
203 (scm_copy_tree, SCM_CEVAL): Use scm_cons_source.
204
205 * debug.c (scm_procedure_source): Cons SCM_IM_LAMBDA onto
206 procedure source before calling scm_unmemocopy instead of faking
207 an environment.
208
209 1998-10-25 Marius Vollmer <mvo@zagadka.ping.de>
210
211 Ported `internal defines' fix from SCM. Original ChangeLog entry:
212
213 1998-07-09 Radey Shouman <radey@colorage.com>
214
215 * eval.c (ceval_1): Modifications to allow rewriting of interal
216 DEFINE to LETREC: If an ISYM is evaluated in non-tail position the
217 body of which it is the CAR is macro expanded by m_expand_body,
218 which rewrites internal DEFINE.
219
220 (m_expand_body): Added.
221
222 (m_macroexp1): Added argument to control error checking:
223 m_expand_body may speculatively expand forms in the wrong
224 environments. Made argument number checks conditional on
225 RECKLESS.
226
227 (m_body): Added, error checks bodies and inserts the ISYM tokens.
228
229 (m_lambda): (m_letstar): (m_letrec1): (m_letrec): (m_let): Now
230 call m_body.
231
232 (m_cond): (m_case): (m_quote): Modified to avoid destructively
233 changing their argument forms. Since m_expand_body
234 speculatively macro expands forms the process must be
235 reversible.
236
237 (m_ident_eqp): Fixed to use proper environment.
238
239 (renamed_ident): Added DEFER_INTS_EGC.
240
241 Added prototypes for static functions.
242
243 * eval.c
244
245 (undef_cell): New.
246
247 (scm_lookupcar1, scm_lookupcar): Added CHECK argument. When CHECK
248 is false, do not produce an error for unbound variables, return a
249 pointer to cell_undef instead.
250
251 (EVALCELLCAR, XEVALCAR): Call scm_lookupcar with check=1.
252
253 (scm_m_body): New.
254
255 (scm_m_cond, scm_m_case, scm_m_quote): Modified to avoid
256 destructively changing their argument forms. Since m_expand_body
257 speculatively macro expands forms the process must be reversible.
258
259 (scm_m_lambda): Use scm_m_body instead of bodycheck. Account for
260 SCM_IM_LET introduced by named lets.
261
262 (scm_m_letstar): Use scm_m_body instead of bodycheck.
263
264 (scm_m_letrec1, scm_letrec): Split scm_letrec into scm_letrec1 and
265 scm_letrec. scm_letrec1 does not check for a null binding and
266 takes an additional argument to specify the ISYM of the body. Use
267 scm_m_body instead of bodycheck.
268
269 (scm_m_let): Use scm_m_body instead of bodycheck.
270
271 (scm_m_expand_body, scm_macroexp): New.
272
273 (unmemocopy): Account for ISYMs introduced by scm_m_body.
274
275 (ceval, deval): Call scm_m_expand_body. Call scm_lookupcar with
276 check=1. Throw error for internal defined that have not been
277 rewritten by scm_m_expand_body.
278
279 * eval.h: Added prototypes for scm_m_expand_body and scm_macroexp.
280 Removed prototype for SCM_APPLY.
281
282 * tags.h: Added extern declaration of scm_isymnames.
283
284 1999-07-27 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
285
286 * Makefile.am (EXTRA_libguile_la_SOURCES): Added lang.c.
287
288 * lang.c: New file: Beginning of multi-language support.
289
290 * init.c (scm_boot_guile_1): Added call to scm_init_lang ().
291
292 * dynwind.c (scm_dowinds): Removed obsolete wind_key #f case.
293 (scm_dynamic_wind): Added argument checking for the after guard so
294 that we don't add garbage on the dynwind chain.
295 (scm_swap_bindings): Added.
296
297 * tags.h, print.c (SCM_IM_NIL_COND, SCM_IM_NIL_IFY, SCM_IM_T_IFY,
298 SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY), print.c
299 (scm_isymnames): New isyms for multi-language support.
300
301 * eval.c (scm_nil, scm_t): New symbols.
302 (nil-cond, nil-ify, t-ify, 0-cond, 0-ify, 1-ify): New special
303 forms for multi-language support.
304
305 1999-07-25 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
306
307 * random.c, random.h (scm_c_default_rstate, scm_c_uniform32):
308 Added.
309 Renamed functions in the random function library interface
310 from scm_i_XXX --> scm_c_XXX.
311
312 1999-07-25 Gary Houston <ghouston@easynet.co.uk>
313
314 * ports.c (scm_putc): fix line-buffering.
315
316 1999-07-25 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
317
318 * ports.c, ports.h, fports.c, strports.c, vports.c: Renamed
319 scm_set_ptob_XXX --> scm_set_port_XXX.
320
321 1999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
322
323 * ports.c, ports.h (scm_make_port_type): New interface for
324 creation of port types (replaces scm_newptob). Just as for the
325 smobs, we need to separate the internal representation of smob
326 types from the interface, so that we easily can add new fields and
327 rearrange things without caring about backward compatibility.
328 This change was forced by the need in GOOPS to create classes
329 representing port types.
330 (scm_set_ptob_mark, scm_set_ptob_free, scm_set_ptob_print,
331 scm_set_ptob_equalp, scm_set_ptob_flush_input, scm_set_ptob_close,
332 scm_set_ptob_seek, scm_set_ptob_truncate,
333 scm_set_ptob_input_waiting_p): New setters.
334 (scm_newptob): Rewritten to use scm_make_port_type. For backward
335 compatibility.
336 (scm_ptobs): Changed type scm_ptobfuns --> scm_ptob_descriptor.
337 (scm_prinport): Removed.
338 (scm_port_print): Added.
339 (scm_print_port_mode): Added.
340 (void_port_ptob, print_void_port, close_void_port, noop0):
341 Removed. Removed #include "genio.h" Added #include "objects.h",
342 #include "smobs.h"
343
344 * fports.c (prinfport): Moved code from ports.c.
345 (local_free): Added.
346 (scm_fptob): Removed. Instead use new interface.
347 (scm_make_fptob): Added. (Need to create basic ports in a
348 specific order in ports.c.)
349
350 * strports.c (scm_stptob, prinstpt, noop0): Removed
351 (scm_make_stptob): Added.
352
353 * vports.c (scm_sfport, prinsfpt, sf_read_flush, noop0): Removed.
354 (scm_make_sfport): Added.
355
356 * filesys.c (scm_dir_print): Don't use the port printing code.
357 Instead provide specific directory printer.
358
359 * gc.c (scm_gc_sweep): Use value returned from scm_ptobs[].free.
360
361 * ioext.c (scm_redirect_port): Replaced scm_ptobfuns -->
362 scm_ptob_descriptor.
363
364 * smob.c (scm_smob_print): Handle non-existing type name nicely.
365 Removed #include "genio.h"
366
367 * objects.c (scm_make_port_classes): New function ptr.
368
369 1999-07-24 Gary Houston <ghouston@easynet.co.uk>
370
371 * gdbint.c (gdb_print, gdb_read): call scm_truncate_file.
372
373 * ports.c (scm_truncate_file): renamed from scm_ftruncate.
374 allow the 1st argument to be a fdes or filename as well as a
375 port (as in the filesys.c version).
376
377 * filesys.c (scm_truncate_file): removed.
378
379 1999-07-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
380
381 * readline.c, readline.h: Removed.
382
383 * objects.c, objects.h (scm_port_class): Added.
384 (scm_class_of): Look up port class in scm_port_class.
385 (SCM_IN_PCLASS_INDEX, SCM_OUT_PCLASS_INDEX,
386 SCM_INOUT_PCLASS_INDEX): Added.
387
388
389 * Makefile.am: Removed genio.c, genio.x.
390
391 * genio.c: Removed.
392
393 1999-07-23 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
394
395 * init.c: Make sure that scm_post_boot_init_modules is called only
396 once. (Important when using a dumped image.; Thanks to Bernard
397 Urban.)
398
399 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
400
401 * guardians.c (scm_guardian_zombify): Separate scanning for
402 zombies from marking the pairs of the free list.
403
404 * guardians.c (scm_guardian_zombify): Don't set marks manually ---
405 use the macros. (Thanks to Michael Livshin.)
406
407 * eval.c (scm_m_lambda): Let bodycheck check the body of the
408 lambda. Let your sins be purified by the blood of the lambda.
409 (Thanks to Eric Hanchrow.)
410
411 * net_db.c (h_errno): Don't declare this if it's #defined. Eew.
412 (Thanks to Valdis Kletnieks.)
413
414 Fixes for EMX from Mikael Ståldal.
415
416 * filesys.c: #include <io.h>, if we have it.
417 * scmconfig.h.in: Regenerated.
418
419 * stime.c (ftime): Delete declaration for this function --- let
420 the system supply it.
421
422 Cleanups from John Bley.
423
424 * gdbint.c: Don't include <stdio.h> and "_scm.h" twice.
425
426 * gsubr.c: Don't include "gsubr.h" twice.
427
428 Cleanups for compilation on Irix 6, from David Kaelbling.
429
430 * regex-posix.c (scm_regexp_error_msg): Change `rx' argument to
431 regex_t pointer. This is what the callers have, mostly.
432 (scm_regexp_exec): Don't forget to pass the `rx' argument to
433 scm_regexp_error_msg.
434
435 * scmsigs.c (scm_sigaction): Cast SIG_DFL and SIG_IGN to SCM, not
436 int. That way, if we get a warning on this line, it's more likely
437 that we're really missing bits we care about.
438
439 * snarf.h (SCM_CONST_LONG): Remove trailing semicolon from
440 definition.
441
442 * tags.h (SCM_IMP, SCM_NCONSP, SCM_NCELLP, SCM_ITAG3, SCM_TYP3,
443 SCM_TYP7, SCM_TYP7S, SCM_TYP16, SCM_TYP16S, SCM_GCTYP16,
444 SCM_GCMARKP, SCM_GC8MARKP): Don't cast to int. Either SCM or no
445 cast at all is more appropriate in every case. At the moment, we
446 assume everywhere that SCM is an integral type anyway.
447
448 1999-07-14 Gary Houston <ghouston@easynet.co.uk>
449
450 * unif.c (scm_uniform_array_read_x), ports.c (scm_getc): increment
451 read_pos after scm_fill_buffer.
452
453 * ioext.c (scm_do_read_line): simplify by ignoring the fill_buffer
454 return char.
455
456 * vports.c (sf_fill_buffer), strports.c (stfill_buffer),
457 fports.c (fport_fill_buffer): implement the interface change.
458
459 * ports.c (scm_fill_buffer): interface change: no longer increments
460 read_pos past the character that's returned. it seems clearer to
461 leave it to the caller to decide what to do (thanks Jim).
462
463 * vports.c (sf_fill_buffer): put the read char into the buffer
464 as well as returning it.
465
466 * ports.c (scm_grow_port_cbuf): residue of this deleted procedure
467 deleted.
468
469 1999-07-13 Gary Houston <ghouston@easynet.co.uk>
470
471 * strports.c (scm_strprint_obj): simplify. start with initial
472 buffer size of 0.
473 (st_seek): don't allow string to be extended if seeking past
474 the end of a read-only port.
475
476 1999-07-12 Gary Houston <ghouston@easynet.co.uk>
477
478 * strports.c (st_seek): change the resize checks.
479
480 * ports.c (scm_ftruncate): throw error if offset works out negative.
481
482 * strports.c (st_flush): increase string size in blocks of
483 SCM_WRITE_BLOCK instead of 1. set read_end to read_pos if
484 it's greater and reset read_buf_size.
485 (scm_mkstrport): set rw_randow if only writing, since read_buf needs
486 to be maintained for output ports too (it holds the written
487 part of the string, while write_buf may have unwritten buffer
488 chars.)
489 (st_truncate): rewritten.
490 (top of file): added a few notes.
491
492 1999-07-10 Jim Blandy <jimb@savonarola.red-bean.com>
493
494 Patch from Greg Badros:
495 * snarf.h (SCM_PROC, SCM_PROC1): Use __cplusplus or
496 GUILE_CPLUSPLUS_SNARF macros to force adding a cast to the last
497 (function pointer) argument to scm_make_gsubr and scm_make_subr
498 calls. This avoids warnings in C++ programs using guile-snarf.
499
500 1999-07-06 Gary Houston <ghouston@easynet.co.uk>
501
502 * strports.c (st_grow_port): set pt->read_pos. set
503 pt->read_buf_size one less than pt->write_buf_size if there's
504 an unwritten char at the end of the string. similarly for
505 pt->read_end.
506 (st_resize_port): renamed from st_grow_port.
507 (st_seek): simplify by assuming that pt->write_pos == pt->read_pos.
508 seek from read_end instead of write_end for SEEK_END.
509 (st_ftruncate): calculate current length using readbuf, not write
510 buf.
511 (scm_strport_to_string): use read_buf_size for length.
512 (stfill_buffer): don't re-initialise the readbuf.
513
514 1999-07-05 Gary Houston <ghouston@easynet.co.uk>
515
516 * strports.c (scm_strport_to_string): new procedure.
517 (scm_call_with_output_string, scm_strprint_obj): use
518 scm_strport_to_string.
519 used SCM_INUM0 instead of SCM_MAKINUM (0) in a few places.
520
521 1999-07-08 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
522
523 * symbols.c (scm_gensym): Bugfix. (Thanks to Johannes Hjorth.)
524
525 Fri Jun 25 22:14:32 1999 Greg Badros <gjb@cs.washington.edu>
526
527 * smob.c: added scm_make_smob_type_mfpe (), scm_set_smob_mfpe ();
528 use scm_make_smob_type_mfpe to initialize "free", "flo", "bigpos",
529 and "bigneg" smob types.
530
531 * smob.h: Add do ... while(0) idiom to SCM_NEWSMOB. Added
532 SCM_RETURN_NEWSMOB macro. Added protos for new functions in
533 smob.c.
534
535 * *.c: Use scm_make_smob_type_mfpe, instead of scm_newsmob, and
536 use SCM_NEWSMOB or SCM_RETURN_NEWSMOB in constructors instead of
537 SCM_NEWCELL and setting the CAR/CDR by hand.
538
539 1999-07-04 Gary Houston <ghouston@easynet.co.uk>
540
541 * unif.c (scm_uniform_array_write): likewise.
542 * ioext.c (scm_redirect_port): likewise.
543 * ports.c (scm_putc): call scm_read_flush.
544 (scm_puts): likewise.
545 (scm_lfwrite): likewise.
546 (scm_lseek): likewise.
547 (scm_ftruncate): likewise.
548
549 * ports.c (scm_fill_buffer): don't take pt argument. change callers.
550 (read_flush_void_port): new proc, for void port ptob.
551
552 * vports.c (sf_read_flush): likewise.
553 * strports.c (st_read_flush): take offset arg.
554 * fports.c (local_read_flush): use offset, don't reset putback
555 buffer here.
556
557 * ports.h (scm_ptobfuns): let read_flush take an offset argument,
558 which is the number of chars from the putback buffer.
559
560 * ports.c (scm_read_flush): new procedure, resets the putback
561 buffer before calling the ptob routine.
562
563 * strports.c (scm_strprint_obj): bug fix: get pt from the port,
564 not from the parameter obj. (Thanks to Eric Moore.)
565
566 * ports.h: SCM_CRDY, SCM_CUC, SCM_CRDYP, SCM_SETRDY, SCM_CUNGET,
567 SCM_CGETUN, SCM_CLRDY, SCM_TRY_CLRDY, SCM_N_READY_CHARS: deleted.
568
569 * strings.c (scm_make_string): throw error if 2nd arg isn't
570 a char.
571
572 * unif.c (scm_uniform_array_read_x): fix reading from a port.
573 allow non-fports.
574 (scm_uniform_array_write): likewise.
575
576 1999-06-29 Gary Houston <ghouston@easynet.co.uk>
577
578 * ports.c (scm_drain_input): rewritten.
579
580 * fports.c (local_fclose): check putback_buf.
581 (local_read_flush): likewise.
582
583 * ports.c (scm_remove_from_port_table): maybe free putback_buf.
584
585 * ports.h (scm_port): replace cbuf/cbufend/cp with putback_buf/
586 putback_buf_size.
587 (SCM_INITIAL_PUTBACK_BUF_SIZE): renamed from SCM_INITIAL_CBUF_SIZE.
588
589 * ports.c (scm_grow_port_cbuf): deleted.
590 (scm_add_to_port_table): initialise putback_buf to 0. remove cbuf
591 stuff.
592 (scm_char_ready_p): check putback_buf
593 (scm_fill_buffer): likewise.
594 (scm_ungetc): rewritten.
595
596 1999-06-27 Gary Houston <ghouston@easynet.co.uk>
597
598 * fports.c (local_fclose): account for push-back buffer.
599
600 * ports.c (scm_char_ready_p): check the push-back buffer in
601 a new way.
602
603 * ioext.c (scm_do_read_line): remove the extra code to handle
604 the push-back buffer.
605
606 * ports.c (scm_getc): don't use SCM_CRDYP etc.
607
608 * ioext.c (scm_do_read_line): call scm_fill_buffer.
609
610 * ports.c (scm_ungetc): don't call SCM_CUNGET. reset the
611 read buffer pointers.
612 scm_fill_buffer: new procedure.
613 (scm_getc): call scm_fill_buffer.
614
615 * ports.h (struct scm_port): saved_read_buf, saved_read_pos,
616 saved_read_end: new fields.
617
618 1999-06-24 Mikael Djurfeldt <mdj@orjan.nada.kth.se>
619
620 * dynl-dl.c (sysdep_dynl_link): Added parenthesis around the
621 trinary conditional in order for the flag computation to be
622 correct.
623
624 1999-06-23 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
625
626 * struct.c, struct.h:
627
628 In order to support different kinds of deallocation, a destructor
629 slot has been added to struct vtables. This allows for structs
630 containing pointers to other memory blocks.
631
632 (scm_struct_i_free): New hidden struct slot. Holds destructor for
633 instances to this vtable.
634 (scm_struct_free_0): New destructor: Doesn't deallocate data.
635 (scm_struct_free_light): New destructor: Deallocates a light
636 struct (i.e. a struct without hidden slots).
637 (scm_struct_free_standard): New destructor: Deallocates standard
638 structs.
639 (scm_struct_free_entity): New destructor: Deallocates entity
640 structs.
641 (SCM_SET_VTABLE_DESTRUCTOR): New macro.
642
643 Changes to hidden slots:
644
645 (scm_struct_i_size): scm_struct_i_flags now shares space with
646 scm_struct_i_size which holds the size of light structs.
647 (scm_struct_i_n_words): This slot has changed meaning. Previously
648 it included hidden slots. Now it indicates visible slots.
649 (scm_alloc_struct): Clear flags.
650 (SCM_STRUCTF_MASK): 4 new flag positions added => 12 bits.
651
652 (struct_num, scm_struct_i_tag): Removed.
653 (scm_struct_vtable_tag): Base tag on the pointer to mallocated
654 memory.
655 (scm_struct_ihashq): Base hash value on pointer to struct handle.
656
657 * tag.c (scm_tag): Base tag on vtable pointer.
658
659 * objects.c (scm_init_objects): Initialize destructor slot of the
660 primordial entity class.
661
662 * objects.h (SCM_SET_CLASS_DESTRUCTOR,
663 SCM_SET_CLASS_INSTANCE_SIZE): New macros.
664
665 * gc.c (scm_gc_sweep): Call struct free slot.
666
667 * keywords.c, keywords.h (scm_c_make_keyword): New function.
668 (We should remove the use of the prefix '-'.)
669
670 * snarf.h (SCM_KEYWORD, SCM_GLOBAL_KEYWORD): New macros.
671
672 * libguile.h: #include "objects.h"
673
674 1999-06-22 Marius Vollmer <mvo@zagadka.ping.de>
675
676 * dynl.c (DYNL_GLOBAL): New.
677 (sysdep_dynl_link): Added `flags' argument.
678 (kw_global, sym_global): New.
679 (scm_dynamic_link): Handle keyword arguments. Pass suitable flags
680 to sysdep_dynl_link.
681 * dynl-dl.c (sysdep_dynl_link): Handle new `flags' argument by
682 conditrionally adding RTLD_GLOBAL to DLOPEN_MODES.
683 * dynl-shl.c (sysdep_dynl_link): Add and ignore new flags
684 argument.
685 * dynl-dld.c (sysdep_dynl_link): Add and ignore new flags
686 argument.
687 * dynl.h (scm_dynamic_link): Added rest argument.
688
689 1999-06-21 Marius Vollmer <mvo@zagadka.ping.de>
690
691 * dynl.c (sysdep_dynl_unlink, sysdep_dynl_func): Use const
692 qualifier for char* argument, to match prototypes. Thanks to Mark
693 Elbrecht.
694
695 1999-06-21 Jim Blandy <jimb@savonarola.red-bean.com>
696
697 * dynl.c (no_dynl_error, sysdep_dynl_link, sysdep_dynl_unlink,
698 sysdep_dynl_func): Use ANSI declarations, and const char *
699 pointers. (Thanks to Mark Elbrecht.)
700
701 1999-06-19 Jim Blandy <jimb@savonarola.red-bean.com>
702
703 Patch from Greg Harvey:
704 * eq.c, eval.c, list.c, ramap.c, vectors.c: Always write parens
705 around the condition of an `if', `while', etc., even if the
706 condition is a macro invocation that expands to something
707 surrounded by parens. It's more readable.
708
709 * eval.c (scm_map, scm_for_each): Verify that all arguments are
710 proper lists, and of the appropriate lengths.
711 (check_map_args): New function. (Thanks to Greg Harvey for the
712 bug report.)
713
714 1999-06-19 Michael Livshin <mike@olan.com>
715
716 * guardians.c (guardian_t): `next' - new field to be used for
717 chaining the live guardians in a single-linked list during the GC
718 mark phase.
719 (GUARDIAN_NEXT): convenience macro to access the `next' field.
720 (guardians, guardians_size, n_guardians): deleted.
721 (first_live_guardian, current_link_field): new globals used to
722 point to the head of the live guardian list and current `next'
723 field, respectively.
724 (g_mark): append the guardian to the live guardian list.
725 (scm_guardian_gc_init): zero the live guardian list.
726 (scm_guardian_zombify): iterate through the live guardian list.
727
728 (Applied by Jim Blandy.)
729
730 1999-06-16 Jim Blandy <jimb@savonarola.red-bean.com>
731
732 * gc.c (scm_mallocated): Just make this signed.
733 (scm_igc): Check for underflow by seeing if this is negative.
734 Much cleaner.
735 * gc.h (scm_mallocated): Fix declaration.
736 (Thanks to Greg Harvey.)
737
738 * ports.h: #include <sys/types.h>, to get a definition for `off_t'.
739
740 1999-06-15 Jim Blandy <jimb@savonarola.red-bean.com>
741
742 * stime.c (bdtime2c): Initialize lt->gmtoff and lt->tm_zone from
743 sbd_time. (Thanks to Eric Hanchrow.)
744
745 Fix from Ken Raeburn <raeburn@raeburn.org>:
746 * weaks.c (scm_make_weak_vector): Add another extra slot before
747 vector contents, to be used only during garbage collection.
748 * weaks.h (SCM_WVECT_GC_CHAIN): New macro to access it.
749 * gc.c (scm_weak_vectors): Now a SCM instead of a SCM*, and now
750 static.
751 (scm_weak_size, scm_n_weak): Deleted.
752 (scm_igc): Use SCM_WVECT_GC_CHAIN to build up a chain of weak
753 vectors without allocating new storage during GC, using
754 scm_weak_vectors as the head of the chain.
755 (scm_mark_weak_vector_spines): Walk SCM_WVECT_GC_CHAIN chain
756 instead of stepping through an array.
757 (scm_gc_sweep): Update offset used to find start of weak vector to
758 free it.
759 (scm_init_storage): Set scm_weak_vectors to EOL.
760
761 Fix from Ken Raeburn <raeburn@raeburn.org>:
762 * gc.c (already_in_gc): New variable.
763 (scm_igc): Set and clear already_in_gc; abort if it's set at
764 entry.
765
766 1999-06-14 Jim Blandy <jimb@savonarola.red-bean.com>
767
768 Fix from Gary Houston:
769 * fports.c (local_seek): Signal an error if the seek fails.
770 * ports.c (scm_lseek): Don't check return value of port's seek
771 function; it's its job to signal an error if there's a problem.
772
773 1999-06-12 Jim Blandy <jimb@savonarola.red-bean.com>
774
775 * strports.c (scm_call_with_output_string): Don't include the
776 extra character at the end of the string in the result.
777
778 * ioext.c (scm_read_line): Switch to reading properly.
779
780 * fports.c, fports.h, gc.c, gdbint.c, ioext.c, ports.c, ports.h,
781 scmsigs.c, strports.c, vports.c: Install the sources which
782 actually correspond to the changes described below. I got the
783 ChangeLog entries and the patch from two different places...
784
785 1999-06-09 Jim Blandy <jimb@savonarola.red-bean.com>
786
787 * gc.c (scm_igc): Check for scm_mallocated underflow. Otherwise,
788 it shows up as terrible performance, as we GC constantly.
789
790 * ioext.c (scm_do_read_line): Rewritten to use memchr to find the
791 newline. A bit faster, and definitely hairier.
792 (scm_read_line): Count newlines here instead.
793
794 * strings.c (scm_take_str): New function.
795 (scm_take0str): Reimplement in terms of scm_take_str. * strings.h
796 (scm_take_str): New declaration. * ioext.c (scm_read_line): Use
797 scm_take_str, to avoid copying the string.
798
799 Add some simple-minded support for line buffered ports.
800 * ports.h (SCM_BUFLINE): New flag for ports.
801 * init.c (scm_init_standard_ports): Request line-buffering on
802 the standard output port.
803 * * ports.c (scm_mode_bits): Recognize 'l' as a request for line
804 buffering.
805 (scm_putc, scm_puts, scm_lfwrite): If the port is line-buffered,
806 and there's a newline to be written, flush the port.
807
808 Gary Houston's open-buffer port patches:
809
810 1999-04-26 Gary Houston <ghouston@easynet.co.uk>
811
812 * ports.c: (scm_lseek): clear buffers even if just reading current
813 position.
814
815 * fports.c (local_fclose): call local_fflush unconditionally.
816 (various): don't use the scm_must... memory procs.
817
818 1999-04-25 Gary Houston <ghouston@easynet.co.uk>
819
820 * ports.h (scm_port): make read_pos a pointer to const.
821 strports.c: take care of rw_active and rw_randow.
822 fports.c: scm_fport_drain_input: removed. do it all in ports.c.
823 strports.c (scm_mkstrport): check that pos is reasonable.
824 ioext.c (scm_ftell, scm_fseek): use lseek.
825 (SCM_CLEAR_BUFFERS): macro deleted.
826 ioext.c (redirect_port: use ptob fflush, read_flush.
827 ports.h (scm_ptobfuns): add ftruncate.
828 ports.c (scm_newptob): set ftruncate.
829 adjust ptob tables.
830 * ports.c (scm_ftruncate): new procedure.
831 fports.c (local_ftrunate), strports.c (str_ftruncate): new procs.
832 strports.c (st_seek, st_grow_port): new procs.
833 fports.h (scm_port): change size types from int to off_t.
834 ports.c (scm_init_ports): initialise the seek symbols here
835 instead of in ioext.c.
836 strports.c (scm_call_with_output_string): start with an empty
837 string, so seek and ftruncate can be used.
838
839 gdbint.c: adjust string port usage.
840
841 1999-04-24 Gary Houston <ghouston@easynet.co.uk>
842
843 * ports.h (scm_ptobfuns): add a read_flush procedure which is the
844 equivalent to fflush for the read buffer.
845 * ports.c (scm_newptob): set read_flush.
846 ports.c (void_port_ptob): set read_flush.
847 fports.c (local_read_flush): new proc. add to ptob.
848 strport.c (st_read_flush): likewise.
849 vport.c (sf_read_flush): likewise.
850 fports.h (struct scm_fport): remove random member. there's nothing
851 left but fdes. leaving it as a struct to allow for future changes.
852 fports.c: replace usage of scm_fport::random with scm_port::rw_random.
853 ports.c: (scm_putc, scm_puts, scm_lfwrite): call the read_flush
854 ptob proc if the read buffer is filled.
855
856 1999-04-23 Gary Houston <ghouston@easynet.co.uk>
857
858 * ports.h (scm_port): add a rw_random member and replace
859 reading and writing members with rw_active member.
860 SCM_PORT_READ/SCM_PORT_WRITE: new values.
861
862 1999-04-22 Gary Houston <ghouston@easynet.co.uk>
863
864 * ports.h (struct scm_port_table): add writing and reading members
865 to replace write_needs_seek: it isn't good enough for non-fports.
866 ports.c, ioext.c, fports.c: corresponding changes.
867 (struct scm_port_table): give it a typedef and rename to scm_port.
868 ports.c, fports.c, strports.c, vports.c, ioext.c, ports.h:
869 corresponding changes.
870
871 1999-04-20 Gary Houston <ghouston@easynet.co.uk>
872
873 * ports.c (scm_newptob): bugfix: set seek member.
874 * * (scm_lseek): new procedure, using code from ioext.c:scm_fseek
875 and generalised to all port types.
876
877 1999-04-18 Gary Houston <ghouston@easynet.co.uk>
878
879 * scmsigs.c (scm_init_scmsigs): set the SA_RESTART flag for all
880 signals (it was only being done for handlers installed from Scheme).
881 Otherwise (for example) SIGSTOP followed by SIGCONT on an interpreter
882 waiting for input caused an EINTR error from read.
883
884 1999-04-07 Gary Houston <ghouston@easynet.co.uk>
885
886 * ports.h (struct scm_port_table): make all the char members
887 unsigned, so they convert to int without becoming negative if large.
888
889 1999-03-14 Gary Houston <ghouston@easynet.co.uk>
890
891 * fports.c (scm_fdes_wait_for_input): forgot to check compilation
892 with threads enabled. rename this procedure to
893 fport_wait_for_input and take a port instead of a fdes.
894 use scm_fport_input_waiting_p instead of scm_fdes_waiting_p.
895
896 * readline.c (scm_readline): Applied a patch from Greg Harvey to
897 get readline support working again: use fdopen to get FILE objects.
898
899 1999-02-26 Gary Houston <ghouston@easynet.co.uk>
900
901 * gc.c (scm_init_storage): install an atexit proc to flush the
902 ports.
903 (cleanup): the new proc. it sets a global variable which can be
904 checked by the ptob flush procs to avoid trying to throw
905 exceptions during exit. not very pleasant but it seems more reliable.
906 * fports.c (local_fflush): check terminating variable and if set
907 don't throw exception.
908 * CHECKME: that the atexit proc is installed if unexec used.
909
910 * throw.c (scm_handle_by_message): don't flush all ports here.
911 it still causes bus errors.
912
913 * fports.h (SCM_FPORT_CLEAR_BUFFERS): rename to SCM_CLEAR_BUFFERS
914 and move to ioext.c.
915
916 * fports.c (scm_fdes_waiting_p): merged into fport_input_waiting_p.
917
918 * ports.c (scm_char_ready_p): check the port buffer and call the
919 ptob entry if needed.
920
921 * ports.h (scm_ptobfuns): input_waiting_p added. change all the
922 ptob initialisers. use it in char-ready
923
924 * ioext.c (scm_do_read_line): moved from ports.c. make it static.
925
926 * vports.c (sfflush): modified to write a char (since softports
927 currently use shortbuf.)
928
929 * fports.c (scm_standard_stream_to_port): moved to init.c and
930 made static.
931
932 * init.c (scm_init_standard_ports): make stdout and stderr
933 unbuffered if connected to a terminal. with stdio they
934 were line-buffered by default.
935
936 (scm_ptobfuns): fputc, fputs, fwrite, fgetc, fgets removed.
937 update ptob tables.
938
939 * ports.h (scm_ptobfuns): change fflush return to void.
940 change flush proc definitions.
941
942 * strports.c (scm_call_with_output_string): get size from
943 buffer instead of port stream.
944 (st_flush): new proc.
945
946 * ports.h (struct scm_port_table): added write_end member,
947 as an optimisation. set it where write_buf_size is set.
948
949 * ports.h (struct scm_port_table): change stream from void *
950 back to SCM. SCM presumably must be large enough to hold a
951 pointer (and probably vice versa but who knows.)
952 (SCM_SSTREAM): deleted. change users back to SCM_STREAM.
953
954 (scm_puts): rewritten
955 * fports.c (local_ffwrite, local_fputs): removed.
956 * strports.c (stputc, stputs, stwrite): dyked out (FIXME)
957 * vports.c (sfputc, sfputs, sfwrite) likewise.
958 * ports.c (write_void_port, puts_void_port): removed.
959 (putc_void_port, getc_void_port, fgets_void_port): likewise.
960
961 * ports.c (scm_lfwrite): rewritten using fport.c version.
962
963 * fports.c (local_fputc): deleted.
964
965 * ports.c (scm_add_to_port_table): initialise write_needs_seek.
966
967 * ports.h (scm_ptobfuns): add seek function pointer.
968 * fports.c: set it to local_seek, new procedure.
969
970
971 * fports.h (SCM_MAYBE_DRAIN_INPUT): moved to ports.c.
972 use ptob for seek. take ptob instead of fport arg.
973
974 * ports.h (struct scm_port_table): new member write_needs_seek,
975 replaces reading member in fport struct.
976
977 * vports.c (sfgetc): store the getted char into the buffer.
978 rename to sf_fill_buffer and install it for fill-buffer in ptob.
979 the Scheme interface is still a procedure that gets a char.
980 (scm_make_soft_port): set up the port buffer (shortbuf).
981
982 * fports.c (local_fgetc, local_fgets): deleted.
983 * strports.c (stgetc): likewise.
984 * ports.c: scm_generic_fgets: likewise.
985
986 * ports.h (scm_ptobfuns): add fill_buffer.
987 * ports.c (scm_newptob): assign it.
988 * strports.c (scm_mkstrport): set up the buffer.
989 put just the string into the stream, not cons (pos stream).
990 (stfill_buffer): new proc.
991
992 * ports.h: fport buffer moved into port table: to be
993 used for all port types.
994
995 1998-12-20 Gary Houston <ghouston@easynet.co.uk>
996
997 * throw.c (scm_handle_by_message): flush ports at exit.
998
999 * socket.c (scm_sock_fd_to_port): use scm_fdes_to_port.
1000 (scm_getsockopt, scm_setsockopt, scm_shutdown, scm_connect,
1001 scm_bind, scm_listen, scm_accept, scm_getsockname,
1002 scm_getpeername, scm_recv, scm_send, scm_recvfrom,
1003 scm_sendto,
1004 use SCM_FPORT_FDES. use SCM_OPFPORTP not SCM_FPORTP.
1005
1006 * posix.c (scm_getgroups): use SCM_ALLOW/DEFER_INTS.
1007 (scm_ttyname): use SCM_FPORT_FDES.
1008 (scm_tcgetpgrp, scm_tcsetpgrp): likewise.
1009
1010 * filesys.c (scm_chown): use SCM_FPORT_FDES.
1011 (scm_chmod, scm_stat, scm_truncate_file: likewise.
1012
1013 * ioext.c (scm_isatty_p): use SCM_FPORT_FDES.
1014 (scm_fdes_to_ports): modified.
1015 (scm_fdopen): use scm_fdes_to_port.
1016
1017 * ports.c (scm_init_ports): don't try to flush ports using
1018 atexit(). it's too late, errors will cause SEGV.
1019
1020 * fports.c (scm_fport_buffer_add): new procedure.
1021
1022 * fports.h (SCM_FDES_RANDOM_P): new macro. use it in
1023 scm_fdes_to_port and scm_redirect_port.
1024
1025 * ioext.c (scm_redirect_port): use setvbuf to set buffers in the
1026 new port. reset fp->random.
1027
1028 * fports.c (scm_fdes_to_port), ports.c (scm_void_port),
1029 filesys.c (scm_opendir):
1030 restore defer interrupts while the port is constructed.
1031 * (scm_setvbuf): if mode is _IOFBF and size is not supplied,
1032 derive buffer size from fdes or use a default.
1033 (scm_fdes_to_port): use setvbuf instead of creating the buffers
1034 directly.
1035
1036 vports.c (various places): use SCM_SSTREAM.
1037 strports.c: likewise.
1038 * gdbint.c: likewise.
1039 * ports.h (SCM_SSTREAM): new macro.
1040
1041 * fports.c (scm_input_waiting_p): use scm_return_first, since port
1042 may be removed from the stack by the tail call to scm_fdes_waiting_p.
1043
1044 * fports.h (SCM_CLEAR_BUFFERS): new macro.
1045
1046 * filesys.c (scm_fsync): use SCM_FDES.
1047
1048 * ports.c (scm_force_output): call scm_fflush.
1049
1050 * print.c (scm_newline): don't check errno for EPIPE (it wouldn't
1051 * reach this point.) don't flush port (if scm_cur_outp).
1052
1053 * fports.h (SCM_FPORT_FDES): new macro.
1054
1055 * filesys.c (scm_fcntl): get fdes from fport.
1056 (set_element, get_element): likewise.
1057
1058 * vports.c (sfflush): don't need to set errno.
1059
1060 * ports.c: install scm_flush_all_ports to be run on exit.
1061
1062 * filesys.c (scm_open): adjust port_mode for O_APPEND and O_CREAT.
1063
1064 ports.c fports.c ioext.c posix.c socket.c net_db.c filesys.c:
1065 removed all uses of SCM_DEFER/ALLOW ints for now. they were mainly
1066 just protecting errno. some may need to be put back.
1067
1068 * scmsigs.c (take_signal): save and restore errno while this
1069 proc runs.
1070
1071 *fports.c (print_pipe_port, local_pclose, scm_pipob): deleted.
1072 * open-pipe, close-pipe are emulated in (ice-9 popen)
1073 ports.c (scm_ports_prehistory): don't init scm_pipob.
1074 ports.h (scm_tc16_pipe): deleted.
1075 posix.c (scm_open_pipe, scm_close_pipe): deleted.
1076
1077 * ioext.c (scm_primitive_move_to_fdes): use fport.
1078 * fport.c (scm_fport_fill_buffer): flush write buffer if needed.
1079 change arg type from scm_fport to SCM port.
1080 fport.h (SCM_SETFDES): removed.
1081 (SCM_MAYBE_DRAIN_INPUT): new macro.
1082
1083 * fport.h (struct scm_fport): added 'random'.
1084 fport.c (scm_open_file): set random if lseek works.
1085
1086 * ioext.c (scm_dup_to_fdes): use SCM_FSTREAM.
1087 (scm_ftell): always use lseek and account for the buffer.
1088 (scm_fileno): use fport buffer.
1089 (scm_fseek): clear fport buffers. always use lseek.
1090
1091 * posix.c (scm_pipe): use fport buffer.
1092 * unif.c: include fports.h instead of genio.h.
1093 * fports.c (scm_fdes_wait_for_input, scm_fport_fill_buffer): new
1094 procedures.
1095 (local_fgetc): use them.
1096 (local_ffwrite): use buffer.
1097 (local_fgets): use buffer.
1098 (scm_setbuf0): deleted.
1099 (scm_setvbuf): set the buffer.
1100 (scm_setfileno): deleted.
1101 (scm_evict_ports): set fdes directly.
1102 * (scm_freopen): deleted. doesn't seem useful in Guile.
1103 (scm_stdio_to_port): deleted.
1104 fports.h (struct scm_fport): add shortbuf member to avoid separate
1105 code for unbuffered ports.
1106 (SCM_FPORTP, SCM_OPFPORTP, SCM_OPINFPORTP, SCM_OPOUTFPORTP): moved
1107 from ports.h.
1108
1109 * genio.c, genio.h: move contents into ports.c, ports.h. The
1110 division wasn't useful.
1111
1112 * fports.c, fports.h (scm_fport_drain_input): new procedure.
1113 * ports.c (scm_drain_input): call scm_fport_drain_input.
1114 * scm_fdes_waiting_p: new procedure.
1115 * fports.c (scm_fdes_to_port): allocate read and/or write buffers.
1116 (scm_input_waiting_p): check the buffer.
1117 (local_fgetc, local_fflush, local_fputc): likewise.
1118
1119 * fports.h (scm_fport): read/write_buf,_pos,_buf_end,,_buf_size:
1120 new members.
1121 * init.c (scm_init_standard_ports): pass fdes instead of FILE *.
1122
1123 * * ports.c (scm_drain_input): new procedure.
1124 ports.h: prototype.
1125 * fports.c (FPORT_READ_SAFE, FPORT_WRITE_SAFE, FPORT_ALL_OKAY,
1126 pre_read, pre_write): removed.
1127 (local_fputc, local_fputs, local_ffwrite): use write, not stdio.
1128 (scm_standard_stream_to_port): change first arg from FILE * to
1129 int fdes.
1130 (local_fflush): flush fdes, not FILE *.
1131 * fports.h (SCM_NOFTELL): removed.
1132 * genio.c, ports.c: don't include filesys.h.
1133 * genio.c (scm_getc): don't use scm_internal_select if FPORT.
1134 do it in fports.c:local_fgetc.
1135 * genio.c: don't use SCM_SYSCALL when calling ptob procedures.
1136 do it where it's needed in the port smobs.
1137 * filesys.c (scm_input_waiting_p): moved to fports.c, stdio
1138 buffer support removed. take SCM arg, not FILE *.
1139 * filesys.h: prototype moved too.
1140 * fports.c (scm_fdes_to_port): new procedure.
1141 (local_fgetc): use read not fgetc.
1142 (local_fclose): use close, not fclose.
1143 (local_fgets): use read, not fgets
1144 * fports.h: prototype for scm_fdes_to_port.
1145 * fports.h (scm_fport): new struct.
1146 * fports.c (scm_open_file): use open, not fopen.
1147 #include fcntl.h
1148 * ports.h (struct scm_port_table): change stream from SCM to void *.
1149 * ports.c (scm_add_to_port_table): check for memory allocation error.
1150 (scm_prinport): remove MSDOS hair.
1151 (scm_void_port): set stream to 0 instead of SCM_BOOL_F.
1152 (scm_close_port): don't throw errors: do it in fports.c.
1153
1154 1999-06-04 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
1155
1156 * numbers.c: Added #include "feature.h".
1157
1158 1999-05-23 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1159
1160 * smob.c, smob.h (scm_make_smob_type): New interface to smob
1161 types (supersedes scm_newsmob).
1162 (scm_set_smob_mark, scm_set_smob_free, scm_set_smob_print,
1163 scm_set_smob_equalp): New functions. Sets smob functions.
1164 (SCM_NEWSMOB): New macro. Creates smob objects.
1165 (scm_make_smob): New function. Creates smob objects and
1166 mallocates memory.
1167 (scm_smob_free, scm_smob_print): Default free and print
1168 functions.
1169
1170 * Makefile.am: Removed markers.c, markers.x, markers.h.
1171
1172 * markers.c, markers.h: Removed. (Contents moved to smob.c,
1173 smob.h.)
1174
1175 * arbiters.c, async.c, regex-posix.c: Use new smob interface.
1176
1177 * eval.c, fports.c, libguile.h, ports.c: Removed #include
1178 "markers.h".
1179
1180 * fluids.c, guardians.c, srcprop.c, threads.c: Added #include
1181 "genio.h".
1182
1183 * regex-posix.c, regex-posix.h: Renamed scm_tc16_regex_t -->
1184 scm_tc16_regex.
1185
1186 1999-05-09 Jim Blandy <jimb@savonarola.red-bean.com>
1187
1188 * strop.c (scm_string_capitalize_x): Use the SCM object `s' in
1189 error messages, not the uninitialized string `str'. Love that
1190 typechecking.
1191
1192 * strop.c (scm_substring_move_x): New function, which can handle
1193 arbitrary overlapping substrings.
1194 (substring-move-left!, substring-move-right!): These are
1195 now just synonyms for substring-move!.
1196 * strop.h (scm_substring_move_x): New prototype.
1197 (scm_substring_move_left_x, scm_substring_move_right_x):
1198 #define these as synonyms for scm_substring_move_x.
1199
1200 Fixes, cleanups, and new functions from Greg Harvey.
1201
1202 1999-05-03 Greg Harvey <Greg.Harvey@thezone.net>
1203
1204 * strop.c (scm_string_capitalize_x, scm_string_capitalize): new
1205 functions; capitalize the first letter of each word in the
1206 argument string, and downcase the rest.
1207 (scm_string_ci_to_symbol): string->symbol, such that the same
1208 symbol is returned for any argument where the only difference
1209 between strings is in capitalization.
1210 (scm_string_upcase, scm_string_downcase): non-destructive
1211 versions.
1212
1213 1999-01-13 Greg Harvey <Greg.Harvey@thezone.net>
1214
1215 * strop.c (scm_substring_move_left_x, scm_substring_move_right_x):
1216 changed to use memmove.
1217 * strop.c (scm_i_index): removed the pos arguments (it's only
1218 called twice, and each time it's SCM_ARG1, SCM_ARG2, SCM_ARG3,
1219 SCM_ARG4).
1220
1221 1999-01-11 Greg Harvey <Greg.Harvey@thezone.net>
1222
1223 * strop.h: fixed prototypes.
1224
1225 * strop.c (scm_substring_move_left_x, scm_substring_move_right_x):
1226 changed to have 5 required args, rather than 2 required, and 3 required
1227 rest args. Also modified to allow str1 & str2 to overlap.
1228 (scm_substring_fill_x): changed to 4 args, rather than 2 args and
1229 2 required rest args.
1230
1231 1999-05-02 Jim Blandy <jimb@savonarola.red-bean.com>
1232
1233 * procs.h: Doc fix.
1234
1235 * Makefile.am (modinclude_HEADERS): Add kw.h, so the new version
1236 gets installed.
1237 * Makefile.in: Regenerated.
1238
1239 * numbers.c: If we're supporting floating-point, provide the
1240 feature "inexact".
1241
1242 * scmconfig.h.in: Regenerated; see today's change to
1243 ../configure.in.
1244
1245 1999-04-17 Jim Blandy <jimb@savonarola.red-bean.com>
1246
1247 * Makefile.in: Regenerated.
1248
1249 Remove readline support, to avoid copyright confusion.
1250 * Makefile.am: Remove readline files from lists.
1251 * init.c: Don't initialize readline.
1252 * scmconfig.h.in: Regenerated.
1253
1254 * numbers.c (s_bignum): Renamed to s_bignum, and made static.
1255 Libguile should not be exporting random little strings.
1256 * numbers.h (s_bignum): Extern declaration removed.
1257
1258 More const changes from Ken Raeburn.
1259 * numbers.c (scm_s_bignum, fx): Now const.
1260 (scm_logtab, scm_ilentab, s_adjbig): Now static and const.
1261 * numbers.h (scm_s_bignum): Update declaration.
1262 * eval.c (bodycheck): Argument WHAT now points to const.
1263 * snarf.h (SCM_SYNTAX): Name is const.
1264
1265 * eval.c (scm_i_let): Make this globally visible, to avoid dynamic
1266 linking crashes on NetBSD. (Thanks to Ken Raeburn.)
1267
1268 1999-03-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1269
1270 * numbers.c (isfinite): Define this macro if not defined: Return a
1271 non-zero value if X is finite. (From ISO C 9x standard.)
1272 (scm_inexact_to_exact): Bugfix: Don't pass NaNs to scm_dbl2big.
1273 (Thanks to Jon Trowbridge and Greg Harvey.)
1274
1275 1999-03-22 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1276
1277 * keywords.c (scm_tc16_kw): Added for backward compatibility.
1278 Will be removed in next release.
1279
1280 * Makefile.am (modinclude_HEADERS): Added kw.h;
1281
1282 * kw.h: New file.
1283
1284 * libguile.h: #include "libguile/kw.h"
1285
1286 1999-03-22 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1287
1288 * pairs.c (scm_set_car_x, scm_set_cdr_x): Return SCM_UNSPECIFIED.
1289
1290 1999-03-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1291
1292 * print.c (scm_isymnames): Added #@dispatch and #@hash-dispatch.
1293
1294 * hashtab.c, hashtab.h (scm_hash_fold, scm_internal_hash_fold):
1295 Place the table argument last.
1296
1297 1999-03-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1298
1299 * modules.c: #include "procprop.h"
1300 (scm_system_module_env_p): Assume root environment is no lookup
1301 closure is found.
1302
1303 * debug.c, eval.c, evalext.c, gdbint.c stacks.c:
1304 #include "modules.h".
1305
1306 * modules.c, modules.h, eval.c, eval.h (scm_env_top_level,
1307 scm_top_level_env, scm_system_module_env_p): Moved to modules.c.
1308
1309 * eval.c, eval.h (scm_top_level_lookup_closure): Removed.
1310
1311 1999-03-18 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1312
1313 * error.c (scm_wta): Pass SCM_LIST1 (arg) instead of SCM_EOL to
1314 scm_misc_error when pos is a string. This allows for dispatching
1315 arbitrary error messages with one argument via SCM_ASSERT:
1316 SCM_ASSERT (<cond>, obj, "Undigestable object: %S", <subr>);
1317
1318 1999-03-17 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1319
1320 * list.c (scm_reverse): Report an error if given a circular list
1321 instead of filling memory.
1322 * list.c (scm_reverse_x): Check args.
1323
1324 1999-03-14 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1325
1326 Most of this batch of changes is about how to deal with extended
1327 types when an object system is loaded into Guile. A nice object
1328 system is capable of representing Guile's types as class objects.
1329
1330 For example, we want a regular expression to be of class <regex>.
1331 But regular expressions are smobs which aren't under direct
1332 control of the object system, so there has to be some mechanism
1333 which informs the object system that a new class should be created
1334 which can represent the smob type. I call this a "wrapper class".
1335
1336 * objects.c: #include "smob.h";
1337 (scm_class_keyword): Removed. (Class is automatically created by
1338 make_smob_classes.)
1339 (scm_smob_class): Array of smob classes indexed by smobnum.
1340 (scm_make_extended_class): "Plugin" function pointer for creation
1341 of wrapper classes for smob and struct types.
1342 (scm_class_of): Handle compiled closures. (Currently regarded as
1343 <procedure>.);
1344 Use scm_smob_class to handle smob types;
1345 Handle scm_tc16_bigpos, scm_tc16_bigneg, and, scm_tc16_keyword
1346 through scm_smob_class;
1347 Handle structs.
1348
1349 * smob.c (scm_newsmob): Also create a wrapper class if
1350 scm_smob_class has been initialized.
1351
1352 * smob.h (SCM_TC2SMOBNUM): New macro for conversion between tc16
1353 type code and smobnum.
1354
1355 * struct.c: #include "alist.h", "weaks.h", "hashtab.h";
1356 (scm_struct_table): Weak key table with auxilliary information for
1357 struct types. Currently used for names and wrapper classes.
1358 (scm_struct_ihashq): Hash function for structs.
1359 (scm_struct_create_handle): Get/create entry in scm_struct_table.
1360 (scm_struct_vtable_name, scm_set_struct_vtable_name_x): Procedures
1361 for accessing names of vtables. The record implementation in
1362 boot-9.scm currently uses the setter to record the name of record
1363 types. When the object system is initialized, it can use this
1364 information to create wrapper classes with suitable names.
1365 (scm_init_struct): Allocate scm_struct_table.
1366 (scm_alloc_struct): Don't initialize scm_struct_i_tag here.
1367 (struct tags are a finite resource and we might want to restrict
1368 the use of tags to vtables only. E.g., Goops only uses tags for
1369 classes.)
1370 (scm_make_struct): Use scm_struct_entity_n_extra_words instead of
1371 magic number 5.
1372 (scm_struct_vtable_tag): Use scm_struct_i_tag instead of magic
1373 number -1.
1374
1375 * struct.h (SCM_STRUCT_TABLE_NAME, SCM_SET_STRUCT_TABLE_NAME,
1376 SCM_STRUCT_TABLE_CLASS, SCM_SET_STRUCT_TABLE_CLASS): New macros.
1377 Used for access of struct table entries.
1378
1379 * hashtab.c, hashtab.h (scm_internal_hash_fold): New function.
1380 (scm_hash_fold): New procedure. Used to process all entries in a
1381 hash table (in no particular order).
1382
1383 Argh! For the umpteenth time I got compilation errors because of
1384 the "intuitive" name `kw'. This has to have an end:
1385
1386 * Makefile.am, init.c, libguile.h, objects.c, root.h: Replaced
1387 "kw" --> "keywords" everywhere.
1388 (I doubt that this will cause big compatibility problems since the
1389 application interface is unaffected.)
1390
1391 * keywords.c, keywords.h: Files renamed from kw.c, kw.h.
1392
1393 1999-03-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1394
1395 * srcprop.c (scm_set_source_property_x): Bugfix: Convert line and
1396 column inums to native form.
1397
1398 Improvement of backtraces: Introduces a new stack narrowing
1399 specifier, #t, for the inner cut. (See further in the comments in
1400 stacks.c:narrow_stack ().)
1401
1402 * procprop.c, procprop.h (scm_sym_system_procedure): New symbol.
1403 (Used to flag certain system procedures which shouldn't turn up in
1404 backtraces.)
1405
1406 * eval.c (scm_sym_system_module): New symbol. (Used to flag
1407 modules which aren't "user" modules and the code of which
1408 shouldn't turn up in backtraces.)
1409
1410 * eval.c, eval.h (scm_top_level_lookup_closure): New function:
1411 Extract the lookup closure from an environment.
1412 (scm_system_module_env_p): New function: Return non-#f if MODULE
1413 is a system module.
1414
1415 * stacks.c: #include "eval.h"; #include "procprop.h";
1416 (narrow_stack): Handle new narrowing specifier #t.
1417
1418 * debug.c (scm_procedure_name): Use name property in the default
1419 case.
1420
1421 * gc.c, gc.h (scm_object_address): Renamed from scm_object_addr ().
1422
1423 * objects.h (scm_si_redefined, scm_si_hashsets): Shifted.
1424
1425 * eval.c, procs.c, procs.h, procprop.c: Renamed getter ->
1426 procedure throughout.
1427
1428 * print.c (scm_iprin1): Removed extraneous space when printing
1429 procedure-with-setters.
1430
1431 Entity and operator setter slots were introduced as a complement
1432 to the <procedure-with-setter> type in order to support entities
1433 and operators with setters in a reasonable and efficient way.
1434 * procs.c (scm_procedure, scm_setter): Handle entity and operator
1435 setter slots.
1436
1437 * objects.h (SCM_OPERATOR_SETTER, SCM_ENTITY_SETTER): New macros.
1438 (struct scm_metaclass_operator): New setter slot.
1439
1440 * gc.c (scm_gc_mark): Mark struct setter slot.
1441
1442 * struct.c (scm_make_struct): Allocate one word more for
1443 entities and initialize the new slot.
1444
1445 * struct.h (scm_struct_i_setter): New constant.
1446
1447 1999-03-08 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1448
1449 * objects.h (SCM_OBJ_CLASS_REDEF): New macro: Find class slots
1450 directly through the instance.
1451
1452 * objects.c (scm_class_of): Use SCM_OBJ_CLASS_REDEF.
1453
1454 * gc.c (scm_gc_sweep): Bugfix: Look for SCM_STRUCT_F_LIGHT flag at
1455 scm_struct_i_flags instead of scm_vtable_index_layout!
1456
1457 * list.c (scm_list_star): New procedure.
1458
1459 1999-02-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1460
1461 * debug.c (scm_init_debug): Added scheme level constant
1462 SCM_IM_DISPATCH.
1463
1464 1999-02-12 Jim Blandy <jimb@savonarola.red-bean.com>
1465
1466 * __scm.h (SCM_FENCE): Fix `asm volatile' warnings for EGCS.
1467
1468 * gc.c (scm_gc_sweep): Properly properly record the size of a
1469 freed structure. (Thanks to Greg Harvey.)
1470
1471 1999-02-07 Jim Blandy <jimb@savonarola.red-bean.com>
1472
1473 * gc.c (scm_gc_sweep): Properly record the size of a freed
1474 structure. (Thanks to Michael Livshin.)
1475
1476 1999-02-06 Jim Blandy <jimb@savonarola.red-bean.com>
1477
1478 Readline paren matching from Greg Harvey, with modifications from
1479 Mikael Djurfeldt:
1480
1481 * readline.c (in_readline, reentry_barrier_mutex): Make these
1482 static.
1483
1484 * readline.c: #include <sys/time.h> and "iselect.h", so we can
1485 control how long we're paused, and threads will run while we're
1486 paused.
1487 (match_paren, find_matching_paren, init_bouncing_parens): New
1488 functions.
1489 (scm_init_readline): Call init_bouncing_parens.
1490 (scm_readline_opts): Add the bounce-parens option.
1491 * readline.h (SCM_READLINE_BOUNCE_PARENS): New readline option.
1492 (SCM_N_READLINE_OPTIONS): Adjust.
1493
1494 1999-02-06 Jim Blandy <jimb@zwingli.cygnus.com>
1495
1496 All the below are changes from Ken Raeburn, to get Guile to use
1497 const where it can.
1498
1499 * chars.c (scm_lowers, scm_uppers, scm_charnames, scm_charnums),
1500 eval.c (s_expression, s_test, s_body, s_bindings, s_variable,
1501 s_clauses, s_formals): Variables now const.
1502
1503 * eval.c (promsmob): Now const.
1504 * macros.c (macrosmob): Now const.
1505 * smob.c (scm_newsmob): Smobfuns argument now points to const.
1506 (freecell, flob, bigob): Now const.
1507
1508 * dynl.c (scm_make_argv_from_stringlist, scm_coerce_rostring),
1509 error.c (scm_error, scm_syserror, scm_syserror_msg,
1510 scm_num_overflow, scm_out_of_range, scm_wrong_type_arg,
1511 scm_memory_error, scm_misc_error, scm_wta), macros.c
1512 (scm_make_synt), feature.c (scm_add_feature), filesys.c
1513 (scm_input_waiting_p), gc.c (scm_gc_start, scm_igc,
1514 scm_must_malloc, scm_must_realloc), gsubr.c (scm_make_gsubr),
1515 numbers.c (scm_num2dbl, scm_two_doubles, scm_num2long,
1516 scm_num2long_long, scm_num2ulong),
1517 options.c (scm_options), posix.c (scm_convert_exec_args,
1518 environ_list_to_c), procs.c (scm_make_subr_opt, scm_make_subr),
1519 ramap.c (scm_ramapc), read.c (scm_flush_ws), socket.c
1520 (scm_sock_fd_to_port, scm_fill_sockaddr, scm_addr_vector), stime.c
1521 (setzone, restorezone, bdtime2c), strop.c (scm_i_index),
1522 strports.c (scm_mkstrport), symbols.c (scm_intern_obarray_soft,
1523 scm_intern_obarray, scm_intern, scm_intern0,
1524 scm_sysintern0_no_module_lookup, scm_sysintern, scm_sysintern0,
1525 scm_symbol_value0), unif.c (scm_aind, scm_shap2ra): Argument
1526 indicating calling subr, error message text, reason for error,
1527 symbol name or feature name are now pointer to const.
1528 * snarf.h (SCM_PROC, SCM_PROC1): String variables are now const.
1529
1530 * procs.c (scm_init_iprocs): iproc argument now points to const.
1531 * pairs.c (cxrs): Now const.
1532
1533 * chars.h, error.h, feature.h, filesys.h, gc.h, gsubr.h, macros.h,
1534 numbers.h, options.h, procs.h, ramap.h, read.h, smob.h,
1535 strports.h, symbols.h, unif.h: Update variable declarations and
1536 function prototypes for above changes.
1537
1538 * dynl.c, dynl-dld.c, dynl-dl.c, dynl-shl.c (sysdep_dynl_link,
1539 sysdep_dynl_unlink, sysdep_dynl_func): Arguments FNAME, SUBR, and
1540 SYMB now point to const.
1541
1542 1999-01-30 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1543
1544 * print.c (scm_iprin1): Use scm_procedure_name instead of
1545 scm_procedure_property for compiled closures.
1546
1547 * tags.h (scm_tc7_pws): New procedure type. Four representations
1548 for procedure-with-setters were considered before selecting this
1549 one:
1550
1551 1. A closure where the CODE and ENV slots are used to represent
1552 the getter and a new SETTER slot is used for the setter. The
1553 original getter is stored as a `getter' procedure property. For
1554 closure getters, the CODE and ENV slots contains a copy of the
1555 getter's CODE and ENV slots. For subr getters, the CODE contains
1556 a call to the subr.
1557
1558 2. A compiled closure with a call to the getter in the cclo
1559 procedure. The getter and setter are stored in slots 1 and 2.
1560
1561 3. An entity (i.e. a struct with an associated procedure) with a
1562 call to the getter in the entity procedure and the setter stored
1563 in slot 0. The original getter is stored in slot 1.
1564
1565 4. A new primitive procedure type supported in the evaluator. The
1566 getter and setter are stored in a GETTER and SETTER slot. A call
1567 to this procedure type results in a retrieval of the getter and a
1568 jump back to the correct eval dispatcher.
1569
1570 Representation 4 was selected because of efficiency and
1571 simplicity.
1572
1573 Rep 1 has the advantage that there is zero penalty for closure
1574 getters, but primitive getters will get considerable overhead
1575 because the procedure-with-getter will be a closure which calls
1576 the getter.
1577
1578 Rep 3 has the advantage that a GOOPS accessor can be a subclass of
1579 <procedure-with-setter>, but together with rep 2 it suffers from a
1580 three level dispatch for non-GOOPS getters:
1581
1582 cclo/struct --> dispatch proc --> getter
1583
1584 This is because the dispatch procedure must take an extra initial
1585 argument (cclo for rep 2, struct for rep 3).
1586
1587 Rep 4 has the single disadvantage that it uses up one tc7 type
1588 code, but the plan for uniform vectors will very likely free tc7
1589 codes, so this is probably no big problem. Also note that the
1590 GETTER and SETTER slots can live directly on the heap, using the
1591 new four-word cells.
1592
1593 * procs.c, procs.h (SCM_PROCEDURE_WITH_SETTER_P, SCM_GETTER,
1594 SCM_SETTER): New macros.
1595 (scm_procedure_with_setter_p, scm_make_procedure_with_setter,
1596 scm_getter, scm_setter): New procedures.
1597
1598 * eval.c, print.c (scm_iprin1): Added entries for scm_tc7_pws.
1599
1600 * gc.c (scm_gc_mark, scm_gc_sweep): Added case labels for
1601 scm_tc7_pws.
1602
1603 * objects.c, objects.h (scm_class_of,
1604 scm_class_procedure_with_setter): Added.
1605
1606 * procprop.c (scm_i_procedure_arity), procs.c (scm_thunk_p): Added
1607 entry for scm_tc7_pws.
1608
1609 * procs.c (scm_procedure_p): Added case label for scm_tc7_pws.
1610
1611 1999-01-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1612
1613 * evalext.c, evalext.h (scm_m_generalized_set_x): New memoizing
1614 macro.
1615 (scm_init_evalext): Call scm_make_gsubr for
1616 scm_m_generalized_set_x.
1617
1618 * eval.c, debug.c, tags.h (SCM_IM_SET_X): Renamed from SCM_IM_SET.
1619
1620 * eval.h: Declare scm_s_set_x, scm_sym_set_x;
1621
1622 * eval.c: Renamed "set" --> "set_x" in various names for
1623 consistency of name correspondence between Scheme and C;
1624 Renamed scm_i_set_x --> scm_sym_set_x and made global.
1625 Renamed s_set_x --> scm_s_set_x and made global.
1626
1627 1999-01-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1628
1629 * random.c (scm_i_random_bignum): Made independent of endianness.
1630
1631 1999-01-22 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1632
1633 * eval.c (SCM_CEVAL): Added ENTER_APPLY in code for SCM_IM_APPLY.
1634 (Thanks to Eric Hanchrow.)
1635
1636 1999-01-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1637
1638 * objects.c, objects.h (SCM_CLASS_REDEF): Renamed from CLASS_REDEF.
1639
1640 * random.c: Bugfix: Retrieve and store most significant 32 bits in
1641 different order if the machine is bigendian.
1642 (scm_init_random): Added safety check for bignum digit size.
1643
1644 1999-01-21 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1645
1646 * random.c, random.h (scm_i_make_rstate): New function: Makes
1647 scm_rstate from seed.
1648 (scm_copy_random_state, scm_seed_to_random_state): New functions.
1649 (scm_make_random_state): Removed.
1650
1651 * random.c (scm_make_random_state): Use scm_i_make_rstate().
1652
1653 1999-01-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1654
1655 * random.c: Bugfix: Retrieve and store most significant 32 bits in
1656 different order if the machine is bigendian.
1657 (scm_init_random): Added safety check for bignum digit size.
1658
1659 1999-01-11 Roland Orre <mdj@mdj.nada.kth.se>
1660
1661 * sort.c (scm_merge, scm_merge_list_x): Bugfix: Place elements
1662 from first arg before equal elements in second arg in result.
1663 (scm_merge_list_step): Bugfix: Don't presume that arguments in a C
1664 function call are executed in a well defined order.
1665
1666 1999-01-11 Jim Blandy <jimb@zwingli.cygnus.com>
1667
1668 * alloca.c (alloca): Cast value returned by malloc. (Thanks to
1669 Christian Lynbech.)
1670
1671 1999-01-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1672
1673 * random.c: Removed alloca includes.
1674
1675 1999-01-11 Jim Blandy <jimb@zwingli.cygnus.com>
1676
1677 * Makefile.in: This changed, for some reason I don't really
1678 understand, when I ran automake in the top level directory. This
1679 may be contamination by Cygnus internal releases. If you re-run
1680 automake and this change gets reverted, don't worry about it.
1681
1682 1999-01-10 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1683
1684 * sort.c, sort.h: New files: Implement slib's and scsh's sort
1685 interfaces. Author: Roland Orre.
1686
1687 * Makefile.am: Added sort.c, sort.h, sort.x.
1688
1689 * init.c: #include "sort.h";
1690 (scm_boot_guile_1): Call scm_init_sort ().
1691
1692 * numbers.h: Added #include "libguile/print.h".
1693
1694 * numbers.c: Formatted according to Guile conventions;
1695 Renamed s_bignum --> scm_s_bignum.
1696
1697 * random.c, random.h: New files: Random number support.
1698 Interface same as slib's.
1699
1700 * Makefile.am: Added random.c, random.h, random.x.
1701
1702 * init.c: #include "random.h";
1703 (scm_boot_guile_1): Call scm_init_random ().
1704
1705 1998-12-23 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1706
1707 * Makefile.am: New files: guardians.c, guardians.x, guardians.h
1708
1709 * guardians.c, guardians.h (scm_make_guardian,
1710 scm_guardian_gc_init, scm_guardian_zombify, scm_guard,
1711 scm_get_one_zombie, scm_init_guardian): This is an implementation
1712 of guardians as described in R. Kent Dybvig, Carl Bruggeman, and
1713 David Eby (1993) "Guardians in a Generation-Based Garbage
1714 Collector" ACM SIGPLAN Conference on Programming Language Design
1715 and Implementation, June 1993 ftp://ftp.cs.indiana.edu
1716 /pub/scheme-repository/doc/pubs/guardians.ps.gz
1717 Author: Michael N. Livshin.
1718
1719 * gc.h (SCM_MARKEDP, SCM_NMARKEDP): New macros.
1720
1721 * gc.c (scm_igc): Call scm_guardian_gc_init and
1722 scm_guardian_zombify.
1723
1724 * init.c (scm_boot_guile_1): Call scm_init_guardian.
1725
1726 1998-12-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1727
1728 * macros.c (scm_makacro, scm_makmacro, scm_makmmacro): Added
1729 argument checking.
1730
1731 1998-12-15 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1732
1733 Move the procedure slots of entities to invisible slots (so that
1734 we can have operator class objects which themselves are entities).
1735 * struct.h (scm_struct_i_proc, scm_struct_i_flags,
1736 SCM_STRUCTF_ENTITY): New constants.
1737
1738 * struct.c (scm_make_struct): Allocate "invisible" room for
1739 procedures if SCM_STRUCTF_ENTITY is set in vtable.
1740
1741 * gc.c (scm_gc_mark): Mark entity procedures.
1742
1743 * struct.c, struct.h (scm_alloc_struct): Renamed from alloc_struct
1744 and made global.
1745 (scm_struct_init): Renamed from init_struct and made global.
1746
1747 * objects.h (SCM_ENTITY, scm_entity): Removed.
1748 (SCM_ENTITY_PROC_0, SCM_ENTITY_PROC_0, SCM_ENTITY_PROC_0,
1749 SCM_ENTITY_PROC_3): Adjusted for new location of procedure slots.
1750
1751 Mon Dec 14 18:10:12 1998 Maciej Stachowiak <mstachow@mit.edu>
1752
1753 * snarf.h (SCM_SYNTAX): New macro to allow convenient declaration
1754 of syntactic forms, similar to SCM_PROC.
1755 * debug.c, eval.c, evalext.c: use SCM_SYNTAX to declare all special
1756 forms, and SCM_SYMBOL or SCM_GLOBAL_SYMBOL to delcare C variables
1757 for the name symbols when needed.
1758
1759 1998-12-14 Jim Blandy <jimb@zwingli.cygnus.com>
1760
1761 * Makefile.in: Regenerated.
1762
1763 1998-12-05 Jim Blandy <jimb@zwingli.cygnus.com>
1764
1765 * pairs.h (SCM_NEWCELL): When DEBUG_FREELIST is defined, don't
1766 take the address of _into; it might be a register. Just have
1767 scm_debug_newcell return the new cell.
1768 * gc.c (scm_debug_newcell): Just return the new cell, instead of
1769 taking the address of a place to store it as an argument.
1770 * gc.h (scm_debug_newcell): Change declaration.
1771 (Thanks to Greg Harvey.)
1772
1773 1998-12-08 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1774
1775 * ramap.c (array-copy-in-order!, array-map-in-order): New names.
1776 Replaces old names serial-array-copy! and serial-array-map!.
1777
1778 * evalext.c (map-in-order): New name. Replaces serial-map.
1779
1780 1998-12-05 Jim Blandy <jimb@totoro.red-bean.com>
1781
1782 * smob.c (freeprint): New function.
1783 (freecell): Use it to print freed objects, for slightly easier
1784 debugging.
1785
1786 1998-12-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1787
1788 * backtrace.c (display_frame): Made more robust. Doesn't throw an
1789 error if no source properties can be found for a frame. (Thanks
1790 to Christian Lynbech.)
1791
1792 1998-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1793
1794 * objects.h: Removed slots direct_supers and direct_slots from the
1795 definitions of the rudimentary classes described by objects.h.
1796
1797 * objects.c, objects.h (scm_entity_p): New procedure. Together
1798 with the predicates scm_procedure_p and scm_struct_p, this
1799 predicate makes it possible to differ between structs, entities
1800 and operators.
1801
1802 * modules.c, modules.h (scm_resolve_module): New function.
1803
1804 1998-11-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1805
1806 * objects.h (SCM_METACLASS_STANDARD_LAYOUT,
1807 SCM_METACLASS_OPERATOR_LAYOUT): Removed slots `direct_supers' and
1808 `direct_slots'.
1809
1810 * objects.c (scm_entity_p): New procedure.
1811
1812 * procprop.c (scm_i_procedure_arity): Bugfix: Return correct value
1813 for asubrs, rpsubrs, lsubrs and lsubr_2s.
1814
1815 1998-11-26 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1816
1817 * procprop.h (scm_i_procedure_arity): Added declaration.
1818
1819 * procprop.c (scm_i_procedure_arity): Made global; New code to
1820 handle operators and entities.
1821 (scm_procedure_property): No need to call scm_procedure_p since
1822 scm_i_procedure_arity now does all necessary type checking.
1823 Added #include "objects.h".
1824
1825 * feature.c (scm_remove_hook_x): Bugfix: Changed reference to
1826 s_add_hook_x --> s_remove_hook_x.
1827 (scm_add_hook_x, scm_remove_hook_x): Hooks now takes arguments.
1828 Added #include "procprop.h"
1829
1830 * feature.c, feature.h (scm_reset_hook_x): New procedure.
1831 (scm_make_hook): Optional argument defines number of arguments to
1832 the hook.
1833 (scm_make_named_hook): Take number of args as second arg.
1834 (scm_run_hook): Renamed from scm_run_hooks (old name defined in
1835 boot-9.scm for a while); First arg is the hook. The rest are
1836 arguments passed on to the hook procedures.
1837
1838 1998-11-23 Jim Blandy <jimb@zwingli.cygnus.com>
1839
1840 * numbers.c (scm_logand, scm_logior, scm_logxor, scm_logtest,
1841 scm_logbit_p): Do the computation in ulongs. This is not as nice
1842 as doing it in bignums, but at least it's good enough for
1843 manipulating flags in 32-bit words. (Thanks to Jim Wilson.)
1844
1845 * regex-posix.c (scm_regexp_exec): Reliably mark unmatched
1846 subexpressions. (Thanks to Charbel Jacquin.)
1847
1848 1998-11-23 Mikael Djurfeldt <mdj@kenneth>
1849
1850 * feature.c, feature.h (scm_make_hook, scm_add_hook_x,
1851 scm_remove_hook_x, scm_run_hooks): Moved from ice-9/boot-9.scm.
1852 (scm_make_named_hook): New function.
1853
1854 * feature.c: Added #include "eval.h".
1855
1856 * modules.c (scm_make_module): Beautify the module.
1857
1858 1998-11-22 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1859
1860 * modules.c, modules.h: New files: C interface to modules. (This
1861 is necessary in order to interface the object system to Guile
1862 properly. The guts of these modules will be replaced by the new
1863 module system in the future.)
1864
1865 * init.c: Added #include "modules.h"
1866 (scm_boot_guile_1): Call scm_init_modules.
1867 (invoke_main_func): Call scm_post_boot_init_modules.
1868
1869 * Makefile.am: Added modules.c, modules.x, modules.h.
1870
1871 1998-11-22 Mikael Djurfeldt <mdj@kenneth>
1872
1873 * procs.c: #include "objects.h"
1874 (scm_procedure_p): Return #t also on structs which are operators.
1875
1876 * objects.c (scm_init_objects): Renamed <standard-metaclass>,
1877 <operator-metaclass> and <entity-class> to <standard-class>,
1878 <operator-class> and <entity> in order to conform with STKlos
1879 naming conventions.
1880
1881 * eval.c (SCM_CEVAL): Jump to badfun if trying to apply a struct
1882 which isn't an operator.
1883 (SCM_APPLY): Ditto, but jump to badproc.
1884
1885 1998-11-21 Mikael Djurfeldt <mdj@kenneth>
1886
1887 * eval.c (SCM_CEVAL): Allow structs implanted in code.
1888 Previously, structs implanted in code were interpreted as forms
1889 the operator of which was a gloc. We solve this by checking for
1890 the zero in the emulated vcell in the struct vtable. Since
1891 implanted structs always will look like forms with a gloc
1892 operator, execution will only be slowed down by maximally one
1893 extra test-and-branch per application.
1894
1895 * evalext.c (scm_definedp): Removed check for isyms; Added a
1896 second optional argument: It is now possible to supply an
1897 evaluation environment in which to look for the symbol.
1898
1899 1998-11-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1900
1901 * readline.c (scm_init_readline): Set
1902 rl_basic_word_break_characters. (Thanks to Ian Grant.)
1903
1904 * coop.c (coop_condition_variable_wait): Removed
1905 (coop_condition_variable_wait_mutex): Folded logic of
1906 coop_mutex_unlock into coop_condition_variable_wait_mutex to
1907 prevent condvar signal lossage. Previously, another thread could
1908 start to run after unlocking the mutex but before putting the
1909 current thread on the wait queue. If that thread then would
1910 signal the first, the signal would be lost. (Thanks to Christian
1911 Lynbech.)
1912
1913 1998-11-17 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1914
1915 * eval.c (SCM_CEVAL): Added missing case for cclo. (Thanks to
1916 Christian Lynbech.)
1917
1918 1998-11-14 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1919
1920 * objects.c (scm_i_make_class_object): Renamed from
1921 make_class_object; exported; error checking moved to
1922 scm_make_class_object and scm_make_subclass_object.
1923 (scm_make_class_object, scm_make_subclass_object): Use
1924 scm_i_make_class_object.
1925 (scm_make_subclass_object): Let the subclass have same metaclass
1926 as the superclass.
1927
1928 1998-11-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1929
1930 * debug.c (scm_debug_options): Bugfix: Set the value of
1931 scm_stack_checking_enabled_p after setting debug options;
1932 #include "stackchk.h". (Thanks to Richard Polton.)
1933
1934 1998-11-13 Radey Shouman <rshouman@metro2000.com>
1935
1936 * unif.c (scm_array_contents): removed unnecessary test for 0
1937 base.
1938
1939 1998-11-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1940
1941 * evalext.c, evalext.h (scm_m_sequence_to_list): Removed.
1942 Replaced by macro `collect' in boot-9.scm.
1943
1944 1998-11-10 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1945
1946 * eval.c (scm_copy_tree): Copy source properties if existent.
1947
1948 * debug.c (scm_start_stack): Copy source when evaluating. (If we
1949 don't, we may end up passing memoized source to a transformer.)
1950
1951 1998-11-10 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1952
1953 * stack.c (get_applybody): Help function which lookups the first
1954 body form of the apply closure.
1955 (read_frames): Prevent the source of the first form of the apply
1956 closure from being recorded. This would only be confusing.
1957
1958 * debug.h (SCM_SET_MACROEXP, SCM_CLEAR_MACROEXP, SCM_MACROEXPP):
1959 Replaces SCM_MACROFRAME, SCM_MACROFRAMEP.
1960
1961 * eval.c (SCM_CEVAL): Use SCM_SET/CLEAR_MACROEXP.
1962
1963 * stacks.c (read_frame): Bugfix: Removed lingering `else'
1964 statement.
1965 (read_frames): Use SCM_MACROEXPP.
1966
1967 1998-11-10 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1968
1969 * stacks.c (read_frames): Skip gsubr frames in backtraces. (They
1970 don't contain interesting information since all arguments are
1971 present in the frame which applies the compiled closure anyway.);
1972 Skip the transformer application frames.
1973
1974 * print.c (scm_iprin1): Print gsubrs as primitives.
1975
1976 1998-11-09 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1977
1978 * debug.h (SCM_MACROFRAME, SCM_MACROFRAMEP): New frame type.
1979
1980 * eval.c (SCM_CEVAL): Mark macro frames at `handle_a_macro' so
1981 that we can identify these in a backtrace. (This change doesn't
1982 introduce any significant speed penalty.)
1983
1984 * eval.c: Added note about `serial-map' using scm_map.
1985
1986 * read.c, read.h (scm_read_options, scm_read_opts): Removed
1987 readline options. They should reside in their own options array.
1988
1989 * readline.c, readline.h (scm_readline_options,
1990 scm_readline_opts): Moved readline options here.
1991
1992 1998-11-07 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1993
1994 * readline.c (scm_read_history, scm_write_history): Bugfix: Use
1995 SCM_ROCHARS instead of SCM_CHARS.
1996
1997 * ports.c (scm_unread_string): Bugfixes: Check for SCM_STRINGP,
1998 not SCM_ROSTRINGP; use SCM_ROUCHARS instead of SCM_UCHARS.
1999
2000 1998-11-06 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2001
2002 * ports.h (SCM_CUC): #define as ~SCM_CRDY instead of 0x001fffffL.
2003 This is quite important since the latter clears the
2004 FPORT_READ_SAFE and FPORT_WRITE_SAFE flags causing flushes at
2005 every single character read...
2006
2007 1998-11-03 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2008
2009 * print.c (scm_iprin1): Removed suspect looking (and indeed
2010 malevolent) semicolon after test for user supplied closure print
2011 procedure. (Thanks to Telford Tendys.)
2012
2013 * list.c (scm_sloppy_memq): Removed sloppy_mem_check.
2014 (scm_memq, scm_memv, scm_member): Do argument checking *before*
2015 starting to search the list. Removed call to sloppy_mem_check.
2016
2017 * list.c, list.h (scm_delq1_x, scm_delv1_x, scm_delete1_x): New
2018 procedures: Same as scm_delq_x et al, but delete maximally one
2019 element.
2020
2021 * options.c (scm_options, scm_init_options): GC-protect option
2022 values of type SCM. (Thanks to Telford Tendys.)
2023
2024 1998-11-01 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2025
2026 * eval.c: Don't #define scm_lookupcar to scm_lookupcar1. Instead
2027 make sure that there always is a "real" scm_lookupcar.
2028
2029 1998-11-01 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2030
2031 * read.c, read.h (scm_read_opts): New read options
2032 "history-length" and "history-file".
2033 (scm_read_options): Stifle history to history length.
2034
2035 * readline.c (scm_read_history, scm_write_history): New procedures.
2036
2037 1998-10-31 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2038
2039 * eval.h (scm_macro_eval_x): Removed declaration.
2040
2041 * eval.c (scm_s_expression, scm_s_test, scm_s_body,
2042 scm_s_bindings, scm_s_variable, scm_s_clauses, scm_s_formals):
2043 Renamed and made global.
2044
2045 * eval.c, eval.h (SCM_EVALIM): Renamed from EVALIM.
2046 (SCM_XEVAL, SCM_XEVALCAR): Renamed from XEVAL, XEVALCAR.
2047
2048 * evalext.c, evalext.h: New files. Contain non-R5RS things
2049 having to do with evaluation.
2050
2051 * evalext.c (scm_serial_map): New procedure: Version of `map'
2052 which guarantees that the procedure is applied to the lists in
2053 serial order.
2054 (scm_m_sequence_to_list): New syntax: Version of `begin' which
2055 returns a list of the results of the body forms instead of the
2056 result of the last body form.
2057 (scm_definedp, scm_m_undefine): Moved from eval.c
2058
2059 * evalext.h (scm_m_sequence_to_list): Added declaration.
2060
2061 * macros.c, macros.h: New files.
2062 (scm_procedure_to_syntax, scm_procedure_to_macro,
2063 scm_procedure_to_memoizing_macro, scm_macro_p, scm_macro_type,
2064 scm_macro_name, scm_macro_transformer): Moved from eval.c
2065 (scm_make_synt): Moved from eval.c
2066
2067 * procs.c, procs.h (scm_procedure_documentation): Moved from eval.c.
2068
2069 * init.c (scm_boot_guile_1): Added calls to scm_init_macros and
2070 scm_init_evalext.
2071
2072 * Makefile.am: Added evalext.c, evalext.h, macros.c, macros.h.
2073
2074 * debug.c, print.c: Added #include "macros.h".
2075
2076 1998-10-29 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2077
2078 This change adds the ability to use `unread-char' multiple times
2079 without interspersed reads and adds the new procedure
2080 `unread-string'. The change is optimized for the common case of
2081 unreading a single character. This is also the reason behind the
2082 choice to store characters in the port itself: in most cases no
2083 extra malloc is required.
2084
2085 The amount of code in some macros in ports.h has been increased to
2086 the extent that they would fit better as C functions, but, since
2087 this code belongs to the port representation, such functions
2088 should be placed in ports.c which would cause calls back and forth
2089 between ports.c and genio.c. That is not good for performance.
2090 Also, keeping them as macros allows the compiler to do some
2091 optimizations which are needed to make the current interface
2092 (SCM_CRDYP, SCM_CGETUN, SCM_TRY_CLRDY) efficient.
2093
2094 One benchmark (Guile startup time) indicates an increase of
2095 loading speed of 1%. Another (reading (using `read') boot-9.scm
2096 10 times) shows no change in performance.
2097
2098 (Caveat: Since Gary is redesigning I/O anyway, no big efforts were
2099 made to find a beautiful solution.)
2100
2101 * ports.h (SCM_CLRDY, SCM_CUNGET, SCM_CGETUN): Rewritten.
2102 (SCM_TRY_CLRDY): New macro: Only clear the first unread
2103 character. (SCM_CLRDY clears all.)
2104 (SCM_N_READY_CHARS): New macro: Returns number of unread
2105 characters in a port. Returns wrong answer if SCM_CRDYP is false.
2106 (struct scm_port_table): New fields: `entry' contains port table
2107 index, `cp' points to last unread char, `cbuf' is the buffer for
2108 unread chars, `cbufend' points after end of the character buffer.
2109
2110 * ports.h, ports.c (scm_unread_string): New procedure.
2111 (scm_grow_port_cbuf): New function.
2112
2113 * ports.c (scm_add_to_port_table, scm_remove_from_port_table):
2114 Handle new fields.
2115 (scm_generic_fgets), fports.c (local_fgets): Use a loop
2116 to read unread characters. Use SCM_TRY_CLRDY instead of
2117 SCM_CLRDY.
2118
2119 * ioext.c (scm_ftell): Use SCM_N_READY_CHARS to correct position.
2120
2121 * genio.c (scm_getc): Use SCM_TRY_CLRDY instead of SCM_CLRDY.
2122
2123 * genio.c, genio.h (scm_ungets): New function.
2124
2125 * genio.c (scm_puts): Removed mysterious TRANSCRIPT_SUPPORT code
2126 sections.
2127
2128 1998-10-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2129
2130 * threads.h (scm_thread_sleep, scm_thread_usleep): Fixed
2131 declarations. (Thanks to Russ McManus.)
2132
2133 1998-10-26 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2134
2135 * numbers.c (num2long): As a software archeologist, I'm proud of
2136 this finding! :) Preliminary dating suggests an almost 4 year old
2137 remnant from the SCM ancestor. The sample has been removed from
2138 the finding site and is now safely stored in the repository.
2139
2140 * numbers.h: Removed prototype for num2long.
2141
2142 * unif.c (scm_array_set_x): Use scm_num2long instead of num2long.
2143
2144 * gh_data.c (gh_scm2doubles): Make it possible to pass result
2145 array as second arg.
2146 (gh_chars2byvect, gh_shorts2svect, gh_floats2fvect, gh_scm2chars,
2147 gh_scm2shorts, gh_scm2longs, gh_scm2floats): New functions.
2148 * gh.h: Updated and added prototypes.
2149
2150 * gh_data.c (gh_ints2scm): Handle integers outside INUM limits.
2151
2152 1998-10-24 Jim Blandy <jimb@zwingli.cygnus.com>
2153
2154 * gc.h: Remove all uses of SCM_P. (Thanks to Richard Polton.)
2155
2156 * guile-snarf.in: Never generate an empty file. (Thanks to
2157 Richard Polton.)
2158
2159 * gh.h (gh_enter, gh_new_procedure0_0, gh_new_procedure0_1,
2160 gh_new_procedure0_2, gh_new_procedure1_0, gh_new_procedure1_1,
2161 gh_new_procedure1_2, gh_new_procedure2_0, gh_new_procedure2_1,
2162 gh_new_procedure2_2, gh_new_procedure3_0, gh_new_procedure4_0,
2163 gh_new_procedure5_0): Specify argument types, to appease C++
2164 compilers. (Thanks to Brad Bowman.)
2165
2166 Bug reports from Russ McManus:
2167 * guile-snarf.in: If the CPP environment variable is set, use that
2168 as the C preprocessor, instead of the preprocessor autoconf
2169 found.
2170 * snarf.h (SCM_PROC): Cast the function pointer passed to
2171 scm_make_gsubr, to satisfy C++.
2172
2173 * gh_eval.c (gh_eval_str_with_catch, gh_eval_file_with_catch):
2174 Use the handler passed, instead of ignoring it and using
2175 gh_standard_handler. (Thanks to Etienne Bernard.)
2176
2177 1998-10-20 Jim Blandy <jimb@zwingli.cygnus.com>
2178
2179 * ports.h: Put text after #endif in comment. (Thanks to Nicolas
2180 Neuss.)
2181
2182 1998-10-19 Jim Blandy <jimb@zwingli.cygnus.com>
2183
2184 * __scm.h, alist.c, async.c, async.h, backtrace.h, chars.c,
2185 continuations.c, debug.c, debug.h, dynl-dl.c, dynl.c, dynl.h,
2186 dynwind.c, dynwind.h, eq.c, error.c, error.h, eval.c, eval.h,
2187 feature.c, filesys.c, filesys.h, fports.c, fports.h, gc.c, gc.h,
2188 genio.c, genio.h, gh.h, gh_data.c, gsubr.c, gsubr.h, hash.c,
2189 hashtab.c, init.c, init.h, ioext.c, ioext.h, kw.c, libguile.h,
2190 list.c, list.h, load.c, load.h, mallocs.c, markers.c,
2191 mit-pthreads.c, net_db.c, numbers.c, numbers.h, options.c,
2192 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
2193 procprop.h, procs.c, procs.h, ramap.c, ramap.h, regex-posix.c,
2194 regex-posix.h, root.c, root.h, scmsigs.c, scmsigs.h, script.c,
2195 script.h, simpos.c, simpos.h, smob.c, smob.h, snarf.h, socket.c,
2196 srcprop.c, stackchk.c, stackchk.h, stacks.c, stime.c, stime.h,
2197 strings.c, strings.h, strports.c, struct.c, struct.h, symbols.c,
2198 symbols.h, tags.h, threads.c, throw.h, unif.c, variable.c,
2199 vectors.c, vectors.h, version.h, vports.c, weaks.c: Update
2200 copyright years.
2201
2202 * script.c (scm_compile_shell_switches): Define
2203 use-emacs-interface in the root module, so the repl code can see
2204 it. See today's change to top-repl in ice-9/boot-9.scm.
2205
2206 * filesys.c (set_element, get_element): Make sure that `element'
2207 is a cell before applying SCM_FPORTP to it. (Thanks to Jost
2208 Boekemeier and Jorgen "forcer" Schaefer.)
2209
2210 1998-10-18 Jim Blandy <jimb@zwingli.cygnus.com>
2211
2212 * chars.c (scm_charnames): In ASCII character name table, make
2213 newlines print as #\newline by default, not #\nl.
2214
2215 * Makefile.am (libguile_la_SOURCES, BUILT_SOURCES): Put these in
2216 alphabetical order. Oh thrills. But it helps me know how far
2217 along in the compilation I am.
2218 * Makefile.in: Regenerated.
2219
2220 1998-10-18 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2221
2222 * unif.c (scm_raprin1): Changed print syntax for byte vectors from
2223 #bytes(...) to #y(...), and syntax for short vectors from
2224 #short(...) to #h(...). This may seem nutty, but, like the other
2225 uniform vectors, byte vectors and short vectors want to have the
2226 same print and read syntax (and, more basic, want to have read
2227 syntax!). Changing the read syntax to use multiple characters
2228 after the hash sign breaks with the conventions used in R5RS and
2229 the conventions used for the other uniform vectors. It also
2230 introduces complexity in the current reader, both on the C and
2231 Scheme levels. (The Right solution is probably to change the
2232 syntax and prototypes for uniform vectors entirely.)
2233
2234 1998-10-17 Jim Blandy <jimb@savonarola.red-bean.com>
2235
2236 Don't use local_fgets on sockets; ftell doesn't work on sockets.
2237 (Thanks to Jorgen "forcer" Schaefer.)
2238 * ports.h (SCM_NOFTELL): New flag.
2239 * fports.c (local_fgets): If it's set, use the generic fgets.
2240 * socket.c (scm_socket): Set SCM_NOFTELL on the ports we produce.
2241
2242 1998-10-17 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2243
2244 * script.c (scm_compile_shell_switches): Add handling of -q switch
2245 (inhibit loading of user init file).
2246 (scm_shell_usage): Add usage text for -q switch.
2247 (scm_compile_shell_switches): Always load user init file first if
2248 it is loaded at all.
2249
2250 1998-10-16 Jim Blandy <jimb@zwingli.cygnus.com>
2251
2252 * stime.c: The CPP hair to determine a value for CLKTCK is weird,
2253 and is now broken under NetBSD. I can't fathom what it's trying
2254 to do, so I've replaced it with something that I do understand,
2255 which seems to work, and which isn't broken on NetBSD. "Progress?
2256 You Decide." (Thanks to Perry Metzger.)
2257
2258 * regex-posix.c (scm_regexp_exec): Add a cast to remove a
2259 signed/unsigned comparison.
2260
2261 1998-10-15 Jim Blandy <jimb@zwingli.cygnus.com>
2262
2263 Warning fixes from Greg Harvey:
2264 * unif.c (scm_array_set_x): initializer for pos
2265 * throw.c (scm_ithrow): added initializer for jmpbuf (SCM_UNDEFINED)
2266 * struct.c (scm_struct_ref, scm_struct_set_x): Added
2267 initializers for field_type, since EGCS so desparately wants to
2268 play dumb
2269 * debug.h (scm_make_gloc, scm_gloc_p, scm_make_iloc, scm_memcons,
2270 scm_mem_to_proc, scm_proc_to_mem, scm_debug_hang): Added prototypes
2271 when GUILE_DEBUG is defined.
2272 * dynwind.h (scm_wind_chain): Same.
2273 * ports.h (scm_pt_size, scm_pt_member): Same.
2274 * print.h (scm_current_pstate): Same.
2275 * procs.h (scm_make_cclo): Same.
2276
2277 1998-10-14 Jim Blandy <jimb@zwingli.cygnus.com>
2278
2279 Handle short and long long uniform arrays properly. (Thanks to
2280 Clark McGrew.)
2281 * ramap.c (scm_ra_matchp, scm_array_fill_int, scm_array_index_map_x,
2282 raeql_1): Add cases for scm_tc7_svect (short vectors) and
2283 scm_tc7_llvect (long long vectors).
2284
2285 Change the way libguile and boot-9.scm are timestamped, to try to
2286 get rid of these spurious mismatch warnings. Now both
2287 libguile/versiondat.h and ice-9/version.scm are generated directly
2288 by the configuration process, rather than having version.scm
2289 generated directly, and libguile/versiondat.h generated by the
2290 Makefile, which is generated by configure. It seems that
2291 sometimes the Makefile would change, but versiondat.h depends on
2292 Makefile.in, not Makefile, so it wouldn't get rebuilt.
2293 * Makefile.am (versiondat.h): Target removed; this is generated
2294 directly by the configure script now.
2295 (BUILT_SOURCES): Remove versiondat.h.
2296 * versiondat.h.in: New file, transformed by the configure script
2297 into versiondat.h.
2298 * Makefile.in: Regenerated.
2299
2300 * (__scm.h, alist.c, eval.c, feature.c, gsubr.c, numbers.c,
2301 options.c): Rename RECKLESS -> SCM_RECKLESS, CAUTIOUS ->
2302 SCM_CAUTIOUS; this way, 1) there's only one version of each flag
2303 to define (we used to have both RECKLESS and SCM_RECKLESS), and 2)
2304 if we want to use them in a header file some day, we can. (Thanks
2305 to Michael Livshin.)
2306
2307 * stime.c (scm_get_internal_real_time): Do the arithmetic using
2308 SCM numbers, so we won't have rollover problems; the range of a
2309 signed long in milliseconds is about 25 days. (Thanks to Karl
2310 Hegbloom.)
2311
2312 Don't redefine sleep and usleep; fix this problem now.
2313 * coop.c (sleep, usleep): Remove declarations; we don't use or
2314 redefine these any more.
2315 (scm_thread_usleep, scm_thread_sleep): New functions which do the
2316 job of usleep and sleep in a thread-friendly way. We can use
2317 these in the rest of Guile. Define versions for systems both with
2318 and without iselect.
2319 * threads.h (scm_thread_usleep, scm_thread_sleep): New declarations.
2320 * scmsigs.c (usleep): Clean up oddities declaring usleep; since
2321 we're just using it, not redefining it, we can use a K&R style
2322 declaration here.
2323 (sleep): Declare this, too, if the system hasn't.
2324 (scm_sleep, scm_usleep): Use scm_thread_sleep and
2325 scm_uthread_sleep if they're available; otherwise, just call the
2326 system functions.
2327 * scmconfig.h.in: Regenerated.
2328
2329 * coop.c (scm_thread_sleep): Make `slept' an unsigned long.
2330
2331 * coop.c (coop_sleephelp): Remove ANSI #ifdef hair.
2332
2333 1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
2334
2335 * threads.c: Doc fix.
2336
2337 The argument type of usleep varies from system to system,
2338 as does the return type. We really shouldn't be redefining usleep
2339 at all, but I don't have time to clean that up before the 1.3.
2340 release. It's on the schedule for afterwards. (Thanks to Julian
2341 Satchell.)
2342 * coop.c (usleep): Use USLEEP_ARG_TYPE in prototype and
2343 definition.
2344 * scmsigs.c (usleep): Use USLEEP_ARG_TYPE in prototype.
2345 * scmconfig.h: Regenerated.
2346
2347 * simpos.c (scm_software_type): Procedure deleted. This isn't the
2348 right way to handle system variation. Autoconf's approach is the
2349 way and the light.
2350 * simpos.h (scm_software_type): Declaration deleted.
2351
2352 * script.c (scm_find_executable): Don't test if unix is #defined
2353 here; first, NetBSD doesn't #define it, and second, it's the wrong
2354 way to go about these things. (Thanks to Perry Metzger.)
2355 (dld_find_executable): Delete this MSDOS support code. This isn't
2356 the way we want to support this; it needs to be rethunk at a
2357 larger scale.
2358
2359 * genio.c (scm_do_read_line): Don't just politely check that the
2360 line was either non-empty or EOF. Abort if it's empty and not
2361 EOF.
2362
2363 1998-10-11 Jim Blandy <jimb@zwingli.cygnus.com>
2364
2365 * scmconfig.h.in: Regenerated.
2366
2367 * libguile.h: Don't omit the dynamic linking functions. (Thanks
2368 to Greg Badros.)
2369
2370 * genio.c (scm_do_read_line): Count lines correctly when the file
2371 doesn't end in a newline.
2372
2373 1998-10-10 Jim Blandy <jimb@zwingli.cygnus.com>
2374
2375 * genio.c (scm_do_read_line): Maintain the line count correctly.
2376 (Thanks to Harvey J. Stein and Greg Harvey.)
2377
2378 * gc.c (scm_return_first): Remove #ifdef __STDC__ garbage; Guile
2379 requires ANSI now.
2380
2381 * numbers.c (big2str): Protect t from garbage collection until
2382 we're done. (Thanks to Gary Houston.)
2383
2384 1998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
2385
2386 * Makefile.am (libguile_la_LDFLAGS): Increment shared library
2387 version number.
2388 * Makefile.in: Regenerated.
2389
2390 * fports.h (scm_setbuf0, scm_setvbuf, scm_setfileno,
2391 scm_evict_ports, scm_open_file, scm_stdio_to_port): Get rid of
2392 SCM_P macro.
2393
2394 Do magic to mix reads and writes on stdio FILE-based ports.
2395 (Thanks to Christian Lynbech.)
2396 * fports.c (FPORT_READ_SAFE, FPORT_WRITE_SAFE, FPORT_ALL_OKAY):
2397 New macros.
2398 (pre_read, pre_write): New functions.
2399 (local_fgetc, local_fgets, local_ffwrite, local_fputc,
2400 local_fputs): Call them.
2401 (local_fflush): Mark the port as ready for reading and writing.
2402 (scm_stdio_to_port): Set the FPORT_READ_SAFE, FPORT_WRITE_SAFE
2403 flags on new port objects. This might not be accurate --- who
2404 knows what state the FILE * is in when we get it --- but it won't
2405 do extraneous calls to fflush or fseek, so it's no worse than the
2406 behavior before this change.
2407 * ports.h: Add comment.
2408
2409 Centralize the creation of port objects based on stdio FILE * in
2410 fports.c; don't just throw them together anywhere.
2411 * fports.c (scm_stdio_to_port): Make NAME a SCM value, which is
2412 what the rest of Guile wants. Don't set the revealed count;
2413 that's only appropriate for stdin, stdout, stderr.
2414 (scm_standard_stream_to_port): This function does set the revealed
2415 count.
2416 * init.c (scm_init_standard_ports): Use scm_standard_stream_to_port,
2417 not scm_stdio_to_port.
2418 * filesys.c (scm_open): Call scm_stdio_to_port; don't write it out.
2419 * fports.c (scm_open_file): Same.
2420 * posix.c (scm_pipe): Same.
2421 * socket.c (scm_sock_fd_to_port): Same.
2422 * ioext.c (scm_fdopen): Same.
2423 (scm_freopen): Moved from here to...
2424 * fports.c (scm_freopen): ... here. This is really something that
2425 munges the internals of an fport, so it should go here.
2426 * fports.h (scm_stdio_to_port): Adjust prototype.
2427 (scm_standard_stream_to_port, scm_freopen): New protoypes.
2428 * ioext.h (scm_freopen): Prototype removed.
2429
2430 * filesys.c (set_element, get_element): This can work on both pipe
2431 and file ports, so use SCM_FPORTP to typecheck, instead of testing
2432 for scm_tc16_fport.
2433
2434 * scmconfig.h.in: Regenerated.
2435
2436 Change the definition of the functions in scm_ptobfuns so that
2437 they get passed the port object, not the port's stream.
2438 * ports.h (scm_ptobfuns): Rename all `stream' arguments to `port'.
2439 * gc.c (scm_gc_sweep): Pass the port itself to the free function.
2440 * genio.c (scm_putc, scm_puts, scm_lfwrite, scm_fflush, scm_getc):
2441 Pass the port itself to the scm_ptobs function.
2442 * ports.c (scm_close_port, scm_force_output, scm_flush_all_ports,
2443 scm_generic_fgets): Same.
2444 (putc_void_port, puts_void_port, write_void_port, flush_void_port,
2445 getc_void_port, fgets_void_port, close_void_port): Just change the
2446 argument names; these functions don't really do anything.
2447 * fports.c (local_fgetc, local_fgets, local_fclose, local_fflush,
2448 local_fputc, local_fputs, local_ffwrite, local_pclose): Take the
2449 port as an argument, and use SCM_STREAM to get the stdio FILE *.
2450 Also, use prototyped definitions, and get rid of the extra
2451 declarations.
2452 (scm_fptob, scm_pipob): We don't need casts here any more.
2453 * strports.c (prinstpt): Use prototype declarations.
2454 (stputc, stwrite, stputs, stgetc): Take the port as an argument,
2455 and use SCM_STREAM to get the string info. Also, use prototyped
2456 definitions, and get rid of the extra declarations.
2457 * vports.c (sfputc, sfwrite, sfputs, sfflush, sfgetc, sfclose,
2458 noop0): Same.
2459
2460 * ports.h (scm_ptobfuns): Replace uses of SCM_P with a straight
2461 prototype; it's okay (preferred, even!) to use ANSI C in Guile.
2462
2463 * fports.c (local_fgetc, local_fgets): Renamed from scm_fgetc and
2464 scm_fgets, for consistency.
2465 (scm_fptop, scm_pipob): References updated.
2466
2467 1998-10-08 Jim Blandy <jimb@zwingli.cygnus.com>
2468
2469 Include the source location in error messages for scripts.
2470 * init.c (scm_boot_guile_1): Use scm_internal_lazy_catch, so the
2471 stack is still there when we catch the error.
2472 * throw.c (handler_message): If we are handling an error with a
2473 message, then put together the proper arguments and call
2474 scm_display_error, instead of scm_display_error_message. That
2475 displays source location, if it can find it.
2476
2477 1998-10-07 Jim Blandy <jimb@zwingli.cygnus.com>
2478
2479 * gc.c (scm_unprotect_object): Change this so that calls to
2480 scm_protect_object and scm_unprotect_object nest properly.
2481 (scm_protect_object): Doc fixes.
2482
2483 * strings.c (scm_string_set_x): Require the argument to be a
2484 writable string, not a substring or a symbol.
2485 * strings.h (SCM_RWSTRINGP, SCM_NRWSTRINGP): New predicates.
2486 (Thanks to John Redford and Charbel Jacquin.)
2487
2488 * scmconfig.h.in: Regenerated; ../acconfig.h has changed.
2489
2490 1998-10-07 Jim Blandy <jimb@totoro.red-bean.com>
2491
2492 * eval.c (safe_setjmp): Remove this misunderstanding.
2493 (ENTER_APPLY, SCM_CEVAL, SCM_APPLY): Replace with references to
2494 ordinary setjmp.
2495
2496 1998-10-06 Jim Blandy <jimb@zwingli.cygnus.com>
2497
2498 * libguile.h: Mark these as C declarations, for compilation by C++
2499 compilers.
2500
2501 * snarf.h (SCM_PROC, SCM_PROC1): Remove very odd code in #ifdef
2502 __cplusplus clause. I seriously doubt this ever worked the way
2503 the author seems to have intended.
2504
2505 1998-10-05 Jim Blandy <jimb@zwingli.cygnus.com>
2506
2507 Utterly needless cleanups to hopelessly messy code.
2508 * ports.c: Doc fixes.
2509 (scm_fflush): Moved to ...
2510 * genio.c (scm_fflush): ... here, amongst all the other port
2511 method invocation functions.
2512 * genio.h, ports.h: The prototype moves too.
2513
2514 1998-10-04 Jim Blandy <jimb@zwingli.cygnus.com>
2515
2516 * backtrace.c (display_error_body): The current frame does not
2517 always have a parent frame; consider a function called directly
2518 from the MAIN_FUNC passed to scm_boot_guile. (Thanks to Maciej
2519 Stachowiak.)
2520
2521 * alloca.c (alloca): Undo yesterday's changes, and simply call
2522 malloc directly for storage, and abort if we don't get what we
2523 want. The situation is much simpler --- just call malloc. Emacs
2524 has bizarre/evil requirements (signal handlers might malloc unless
2525 you set this global flag, so you have to set the flag around all
2526 calls to malloc) which we are certainly not going to conform to,
2527 so we can do the simple and obvious thing.
2528
2529 * coop.c (coop_condition_variable_wait): Make this function
2530 static. It's only useful internally --- you should never just
2531 wait on a condition variable.
2532 * coop-defs.h (coop_condition_variable_wait): Delete prototype.
2533
2534 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
2535
2536 * unif.c (scm_array_set_x): Accept any kind of number as an
2537 element for a uniform vector of doubles. This is more consistent
2538 with Scheme's view of numbers. (Thanks to Miroslav Silovic.)
2539
2540 * alloca.c: Use scm_must_malloc to obtain storage. Hopefully this
2541 works; I can't conveniently test it myself. (Thanks to Dvid
2542 Tillman for the bug report.)
2543
2544 * init.c: Doc fixes.
2545
2546 * init.c (invoke_main_func): Load the startup files (boot-9.scm)
2547 from here, not from scm_compile_shell_switches (which is a pretty
2548 dumb place to do it).
2549 (scm_load_startup_files): New function.
2550 (scm_ice_9_already_loaded): Variable moved to here from script.c.
2551 * script.c (scm_compile_shell_switches): Don't load the startup
2552 files here.
2553 (scm_ice_9_already_loaded): Variable moved.
2554 * init.c (scm_load_startup_files): Prototype for new function.
2555 * gh_init.c (gh_enter): Doc fix.
2556
2557 1998-10-03 Jim Blandy <jimb@savonarola.red-bean.com>
2558
2559 Some anti-warning changes from Greg Harvey.
2560 * gh_data.c (gh_scm2doubles): Initialize m, to avoid compiler
2561 warnings when it doesn't understand our NORETURN declarations in
2562 error.h.
2563 * posix.c (scm_mknod): Similar.
2564
2565 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
2566
2567 * posix.c (scm_getpwuid): If we can't find an entry, return our
2568 own message, instead of using scm_syserror --- the getpwMUMBLE
2569 functions don't set `errno' to anything interesting.
2570
2571 1998-10-03 Jim Blandy <jimb@savonarola.red-bean.com>
2572
2573 Get rid of warnings from the cooperative threading system.
2574 * threads.h (scm_single_thread_p, scm_yield,
2575 scm_call_with_new_thread, scm_join_thread, scm_make_mutex,
2576 scm_lock_mutex, scm_unlock_mutex, scm_make_condition_variable,
2577 scm_wait_condition_variable, scm_signal_condition_variable): Add
2578 prototypes for these Scheme-visible functions.
2579 * coop-defs.h (coop_next_runnable_thread,
2580 coop_wait_for_runnable_thread_now, coop_wait_for_runnable_thread):
2581 Prototypes for these here, even though they're from iselect.c.
2582 (coop_condition_variable_wait, coop_join): Add prototypes.
2583 * coop-threads.c (scm_threads_free_thread, scm_threads_free_mutex,
2584 scm_threads_free_condvar): Make these smob functions static.
2585 * coop-threads.h (coop_init): Give this a real prototype.
2586 * coop.c: #include <unistd.h>, if we have it, for `usleep' and `sleep'.
2587 (coop_next_runnable_thread): No need to provide prototype; it's in
2588 coop-defs.h.
2589
2590 * scmconfig.h.in: .detarenegeR
2591
2592 * iselect.c, threads.c: Doc fixes.
2593
2594 1998-10-03 Jim Blandy <jimb@zwingli.cygnus.com>
2595
2596 * Makefile.in: Regenerated with a patched automake, to get
2597 dependency generation right when using EGCS.
2598
2599 * inet_aton.c (inet_aton): Add prototype, to remove compiler
2600 warning. (Thanks to Robert Pluim.)
2601
2602 * inet_aton.c (inet_aton): Reassure the compiler that the
2603 arguments to the <ctype.h> macros are all unsigned characters, not
2604 signed characters.
2605
2606 1998-10-03 Jim Blandy <jimb@savonarola.red-bean.com>
2607
2608 Getting rid of more warnings...
2609 * iselect.c: Test for MISSING_BZERO_DECL, not DECLARE_BZERO; see
2610 today's change to ../configure.in.
2611 * scmsigs.c: Test for MISSING_USLEEP_DECL, not DECLARE_USLEEP.
2612 * scmconfig.h.in: Regenertaded.de.,.__
2613 * stime.c (strptime): Declare this, #ifdef MISSING_STRPTIME_DECL.
2614 (scm_localtime, scm_mktime): Use a const char * to manipulate the
2615 time zone name.
2616
2617 * readline.c: Doc fix.
2618 (rl_cleanup_after_signal, rl_free_line_state): Make these static.
2619 * readline.h (scm_filename_completion_function): Add prototype.
2620 (scm_init_readline): Make this into a prototype.
2621
2622 * readline.c (scm_filename_completion_function): Use SCM_PROC to
2623 declare this, instead of calling scm_make_subr manually.
2624
2625 1998-10-02 Jim Blandy <jimb@savonarola.red-bean.com>
2626
2627 * readline.h (scm_init_readline): Add prototype for this.
2628 (scm_init_readline): Make this a real prototype.
2629
2630 1998-09-30 Jim Blandy <jimb@zwingli.cygnus.com>
2631
2632 Warning fixes from Maciej Stachowiak:
2633 * backtrace.h (scm_display_application, scm_backtrace): Add
2634 prototypes.
2635 * debug.c (scm_m_start_stack): Make this function static.
2636 * fluids.h (scm_fluid_p): Add prototype.
2637 * procprop.c (scm_i_procedure_arity): Make this function static.
2638 * regex-posix.c (scm_regexp_error_msg): Make this function static.
2639 * regex-posix.h (scm_init_regex_posix): Use prototype, not K&R decl.
2640 * root.h (scm_dynamic_root): Add external prototype.
2641 * scmsigs.h (scm_usleep): Add external prototype.
2642 * script.h (scm_init_script): Use prototype, not K&R decl.
2643 * stacks.h (scm_stack_id): Add external prototype.
2644 * symbols.h (scm_sysintern0_no_module_lookup): Add external prototype.
2645
2646 1998-09-30 Mark Galassi <rosalia@cygnus.com>
2647
2648 * gh.h: took out the definitions of vset and vref, since they are
2649 replaced by the proper vector routines that correspond to the R4RS
2650 procedures.
2651
2652 1998-09-29 Jim Blandy <jimb@totoro.red-bean.com>
2653
2654 * snarf.h (SCM_VCELL_INIT, SCM_GLOBAL_VCELL_INIT): New macros;
2655 these are analogous to SCM_VCELL and SCM_GLOBAL_VCELL but take a
2656 third argument, a C expression that should result in a SCM value,
2657 which is used to initialize the variable. Reimplemented
2658 SCM_CONST_LONG in terms of SCM_VCELL_INIT. (Thanks to Maciej
2659 Stachowiak.)
2660
2661 * version.h (scm_libguile_config_stamp): Add prototype.
2662 (From Maciej Stachowiak.)
2663
2664 1998-09-26 Jim Blandy <jimb@zwingli.cygnus.com>
2665
2666 * eval.c (scm_force): Assert that x is SCM_NIMP to fix segv when
2667 (force 9) is tried. (Thanks to Karl M. Hegbloom.)
2668
2669 1998-09-06 Jim Blandy <jimb@zwingli.cygnus.com>
2670
2671 * print.c (scm_iprin1): Rather than having one i, and using it in
2672 several places, declare a fresh i local to each block where it is
2673 used, and give it a signedness appropriate to its use in each case.
2674 (scm_iprlist): Same.
2675
2676 * print.c (scm_iprin1): Add cast to avoid unsigned/signed
2677 comparison warnings.
2678
2679 * print.c (ENTER_NESTED_DATA): Make i an unsigned long, to avoid
2680 signed/unsigned clashes.
2681
2682 * posix.h (scm_tmpnam): Added prototype.
2683
2684 * objects.h (scm_set_object_procedure_x, scm_make_class_object,
2685 scm_make_subclass_object): Add external prototypes.
2686
2687 * numbers.c (scm_mkbig): Add cast, and note that signed/unsigned
2688 comparison is okay here.
2689
2690 * numbers.c (scm_istr2int): Add cast; len is known to be positive.
2691
2692 * numbers.c (scm_bigcomp): Clarify logic, and avoid relying on the
2693 (true, but confusing) fact that -1 == ((unsigned) 0 - 1).
2694
2695 * numbers.c (scm_adjbig): Make nsiz an scm_sizet, to avoid mixing
2696 signed/unsigned.
2697
2698 * load.c (swap_port): Make this function static.
2699
2700 * load.c (scm_search_path): Make max_path_len and max_ext_len
2701 unsigned, since they're compared against string sizes.
2702
2703 * load.c (init_build_info): Make i unsigned.
2704
2705 * ioext.h (scm_read_line): Add prototype.
2706
2707 * hashtab.c (scm_hash_fn_get_handle, scm_hash_fn_create_handle_x,
2708 scm_hash_fn_remove_x): Make hash bucket index local variable k
2709 unsigned. Use scm_ulong2num to pass it to SCM_ASSERT as
2710 accurately as possible.
2711
2712 * gh_data.c (gh_set_substr): Add casts to avoid signed/unsigned
2713 comparisons, and range checking to make sure those casts are
2714 harmless.
2715
2716 * stackchk.h (SCM_STACK_OVERFLOW_P): Change definition to avoid
2717 signed/unsigned comparisons.
2718
2719 * smob.c (scm_numsmob): Make this an int, not an scm_sizet, to
2720 avoid signed/unsigned comparisons.
2721 * smob.h (scm_numsmob): Change extern declaration to match.
2722
2723 * ports.c (scm_numptob): Make this an int, not an scm_sizet, to
2724 avoid signed/unsigned comparisons.
2725 * ports.h (scm_numptob): Change extern declaration to match.
2726 (scm_current_load_port, scm_set_port_line_x,
2727 scm_set_port_column_x): New prototypes.
2728
2729 * gsubr.c (GSUBR_TEST): Don't #define this. Nobody's using the
2730 test code, and it causes warnings.
2731
2732 * gh.h (gh_int2scmb, gh_uniform_vector_length,
2733 gh_uniform_vector_ref): Added prototypes.
2734
2735 * Makefile.am (libguile_la_SOURCES): Include Scheme-level
2736 debugging support unconditionally. That's backtrace.c, stack.c,
2737 debug.c, and srcprop.c.
2738 (EXTRA_libguile_la_SOURCES): Omit those from here.
2739 * Makefile.in: Regenerated.
2740
2741 1998-08-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2742
2743 * options.c (scm_options): Bugfix: Allow empty list of options!
2744
2745 * debug.c, debug.h (scm_single_step): Removed.
2746 (scm_with_traps): New procedure. This procedure could easily be
2747 written in Scheme but needs to be highly optimized.
2748
2749 * eval.h, eval.c: New evaluator trap flag: SCM_TRAPS_P.
2750
2751 * eval.c (SCM_CEVAL, SCM_APPLY): Removed resetting of trap flags.
2752 Check SCM_TRAPS_P before trapping.
2753
2754 1998-07-30 Jim Blandy <jimb@zwingli.cygnus.com>
2755
2756 Changes to avoid signed/unsigned comparison warnings.
2757 * gc.c (scm_mtrigger, scm_heap_size): Make these unsigned longs.
2758 (scm_gc_sweep): Make n and j local to the blocks they're used in,
2759 so they can have appropriate types for each application. Make i
2760 signed. Use initializers in some spots. I'll probably pay for
2761 all this tweaking.
2762 (scm_must_malloc, scm_must_realloc): Use scm_sizet for size args.
2763 (scm_must_realloc): Make nm unsigned.
2764 (init_heap_seg): Make new_seg_index and n_new_objects signed.
2765 (scm_init_storage): Use prototype-style definition, and make the
2766 argument unsigned.
2767 * gc.h (scm_heap_size, scm_mtrigger, scm_must_malloc,
2768 scm_must_realloc, scm_init_storage): Adjust prototype accordingly.
2769
2770 * filesys.c (scm_readlink): Make local vars rv and size ints, to
2771 avoid signed/unsigned comparison warnings, and because the return
2772 value of readlink may be -1. Don't bother casting the third
2773 argument to readlink.
2774
2775 * filesys.c (scm_dirname, scm_basename): Move these to their own
2776 page, at the end of the file.
2777 * filesys.h (scm_dirname, scm_basename): Add prototypes for these.
2778
2779 * eval.h (scm_eval_options_interface): Add external prototype for this.
2780 * eval.c (scm_eval_options_interface): Use prototype-style def'n.
2781
2782 * eval.c (scm_lookupcar1): Make this static.
2783
2784 * dynl.h (scm_registered_modules, scm_clear_registered_modules):
2785 Make these prototype declarations, not K&R-style.
2786
2787 * chars.c (scm_tables_prehistory): Add cast, to remove signed/
2788 unsigned comparison warning.
2789
2790 * appinit.c: File removed. It had a single function in it, empty,
2791 whose reason for existence is explained in no documentation or
2792 comment. I think it's there as a default for some Tcl-style
2793 initialization, but Tcl abandoned that approach a while ago.
2794 * Makefile.am (libguile_la_SOURCES): Remove appinit.c.
2795 (BUILT_SOURCES): Remove appinit.x.
2796 * Makefile.in: Regenerated.
2797
2798 1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
2799
2800 * Makefile.in: Regenerated using the last public version of
2801 automake, not the hacked Cygnus version.
2802
2803 1998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
2804
2805 Remove Totoro kludge.
2806 * Makefile.in, scmconfig.h.in: Regenerated.
2807 * init.c, readline.c: Don't check if TOTORO is #defined.
2808
2809 1998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
2810
2811 * Makefile.am: Adjust for new thread configuration system.
2812 (INCLUDES): Include the value of THREAD_CPPFLAGS.
2813 (guile_LDADD, check_ldadd): THREAD_LIBS_LOCAL has been renamed from
2814 THREAD_LIBS.
2815 (THREAD_LIBS): Definition deleted; automake will generate such
2816 things automatically.
2817 * Makefile.in: Regenerated.
2818
2819 1998-07-23 Jim Blandy <jimb@zwingli.cygnus.com>
2820
2821 Simplify smob and port marking; set the mark bit in the generic
2822 marking code, and make marker routines only responsible for
2823 turning up outgoing pointers.
2824 * gc.c (scm_gc_mark): Set the mark bit on ports and smobs here,
2825 before calling the marking function. Don't call the marking
2826 function if it's zero.
2827 * markers.c (scm_mark0): Just return #f. This function isn't
2828 necessary at all now, but it's harmless to call it. We'll leave
2829 it in so other folks' code doesn't croak at link time.
2830 (scm_markcdr): Don't call SCM_SETGC8MARK.
2831 * async.c (mark_async): Don't call SCM_SETGC8MARK.
2832 * dynl.c (mark_dynl_obj): Same.
2833 * root.c (mark_root): Same.
2834 * srcprop.c (marksrcprops): Same.
2835 * unif.c (markra): Same.
2836 * variable.c (scm_markvar): Same.
2837 * ports.c (scm_markstream): Same.
2838 (void_port_ptob): Specify zero for our marking function.
2839 * debug.c (debugobjsmob): Same.
2840 * dynwind.c (guardsmob): Same.
2841 * filesys.c (dir_smob): Same.
2842 * fluids.c (fluid_smob): Same.
2843 * fports.c (scm_fptob, scm_pipob): Same.
2844 * mallocs.c (mallocsmob): Same.
2845 * regex-posix.c (regex_t_smob): Same.
2846 * smob.c (freecell, flob, bigob): Same.
2847 * threads.c (thread_smob, mutex_smob, condvar_smob): Same.
2848 * throw.c (jbsmob, lazy_catch_funs): Same.
2849
2850 1998-07-17 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2851
2852 * eval.c (scm_copy_tree): Reverted last change: `eval' uses
2853 scm_copy_tree on code in order not to let memoized code to leak
2854 out. Thus, scm_copy_tree needs to copy vectors as well since
2855 quasiquote can introduce evaluated code also inside vector
2856 constants.
2857
2858 1998-07-17 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2859
2860 * eval.c (scm_copy_tree): Removed ability to copy vectors.
2861
2862 * gh_data.c, gh.h (gh_ints2scm, gh_longs2ivect,
2863 gh_ulongs2uvect): New procedures. (Complements gh_doubles2scm and
2864 gh_doubles2dvect.)
2865
2866 * unif.c: Say that ivect and uvect are of type signed and unsigned
2867 long instead of int in commentary so that it correctly describes
2868 the implementation.
2869
2870 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2871
2872 * stime.c: Removed declaration of strptime. (It should be
2873 declared by the system headers. If it turns out that some systems
2874 don't, we'll handle that then.) (Thanks to Greg Troxel.)
2875
2876 * stime.h: Renamed TIMEH --> STIMEH
2877
2878 * backtrace.c (scm_display_error, scm_display_backtrace): In order
2879 to increase portability, don't use structure assignment.
2880 (Thanks to Nicolas Neuss.)
2881
2882 * iselect.c: Use LONG_MAX instead of ULONG_MAX for increased
2883 portability.
2884 (finalize_fd_sets): Added empty statement after last case label.
2885 (Thanks to Nicolas Neuss.)
2886
2887 * gc.c (scm_igc): Changed //-comment into /*-comment. (Thanks to
2888 Nicolas Neuss.)
2889
2890 Sat Jul 11 22:08:21 1998 Mikael Djurfeldt <mdj@totoro.red-bean.com>
2891
2892 * init.c, readline.c: OK, I won't have these readline.x bug
2893 reports anymore. We've had them since April. The current reason
2894 is a completely unintelligible failure of totoro.red-bean.com to
2895 do the test for rl_getc_function in libreadline correctly. This
2896 kludge overrides the test if we're on totoro so that the snapshot
2897 generation process can work.
2898
2899 * readline.c: Define a strdup replacement if not existent on system.
2900
2901 1998-07-12 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2902
2903 * vectors.c, vectors.h (scm_make_vector): Removed third argument.
2904 This change makes scm_make_vector R5RS compatible. We cannot keep
2905 the third argument since people want to be able to deduce the form
2906 of the C function call only by looking at R5RS. (At the same time
2907 we have removed some unnecessary complexity!)
2908
2909 * eval.c, filesys.c, fluids.c, gc.c, gh_data.c, init.c, kw.c,
2910 net_db.c, posix.c, print.c, regex-posix.c, scmsigs.c, socket.c,
2911 stime.c, symbols.c, unif.c, vectors.c, weaks.c: Removed third
2912 argument in call to scm_make_vector.
2913
2914 1998-07-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2915
2916 * numbers.h (SCM_NUM2DBL): New macro. Complements SCM_NUMBERP.
2917 This macro is useful in applications.
2918
2919 1998-06-21 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2920
2921 * load.c (scm_internal_parse_path): Renamed from scm_parse_path.
2922 (scm_parse_path, scm_search_path): New Scheme level procedures.
2923
2924 * load.h (scm_internal_parse_path, scm_parse_path,
2925 scm_search_path): Declared.
2926
2927 1998-06-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2928
2929 * filesys.c (dirname, basename): New procedures.
2930
2931 * init.c (scm_boot_guile_1): Removed condition around
2932 scm_init_options.
2933
2934 * dynwind.c: #include "genio.h"; #include "smob.h"; Implemented a
2935 new data type (guards) for representation of C level guards and
2936 data on the wind chain.
2937 (scm_internal_dynamic_wind): New function.
2938
2939 * dynwind.h: Declare scm_internal_dynamic_wind.
2940
2941 * root.h (scm_root_state): Added scm_cur_loadp.
2942
2943 * root.c (mark_root): Added comment about cur_loadp.
2944
2945 * load.c: #include "dynwind.h";
2946 (scm_primitive_load): Use scm_inner_dynamic_wind to update
2947 scm_cur_loadp.
2948
2949 * init.c (scm_init_standard_ports): Initialize scm_def_loadp.
2950
2951 * ports.c (current-load-port): New procedure.
2952
2953 1998-06-09 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2954
2955 * ioext.c (scm_isatty_p): Accept any kind of data as argument. If
2956 not a tty, return #f.
2957
2958 * regex-posix.c (scm_regexp_exec): Free malloced memory. (Thanks
2959 to Julian Satchell and Roland Kaufmann.)
2960
2961 * gh.h (gh_memv, gh_member): Fixed typos in macro definitions.
2962 (gh_write): Added declaration. (Thanks to Eiichi Takamori.)
2963
2964 1998-06-07 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2965
2966 * debug.h, debug.c (scm_start_stack): New function. Implements
2967 the guts of old scm_m_start_stack.
2968
2969 * debug.c (scm_m_start_stack): Use scm_start_stack.
2970
2971 * init.c (scm_start_stack, scm_restart_stack): Renamed to
2972 start_stack and restart_stack. (These have static scope.)
2973
2974 1998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2975
2976 * readline.c (rl_cleanup_after_signals, rl_free_line_state): New
2977 readline functions to come in release 2.3. (Thanks to Chet
2978 Ramey.)
2979 (handle_errors): Use the above functions.
2980
2981 1998-05-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2982
2983 * readline.c: Improvements for readline support: Handle errors
2984 better; Implement before-read-hook.
2985
2986 1998-05-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2987
2988 * init.c (scm_boot_guile_1), readline.c: Test for
2989 HAVE_RL_GETC_FUNCTION instead of HAVE_LIBREADLINE. (Need to
2990 assure that we have version >= 2.1.)
2991
2992 1998-05-11 Mikael Djurfeldt <mdj@kenneth>
2993
2994 * readline.c (scm_readline): Defer interrupts while we're calling
2995 readline.
2996
2997 * readline.c (scm_add_history): Bugfix: Do strdup before giving
2998 away the string to add_history.
2999 (completion_function): Do completion for readline. (Thanks to
3000 Andrew Archibald.)
3001 (scm_filename_completion_function): New procedure: Filename
3002 completer.
3003 (current_input_getc): New function. Use this one instead of
3004 standard getc from readline.
3005
3006 * throw.c, throw.h (scm_handle_by_throw): New function: This
3007 handler throws errors to next handler on the dynwind chain.
3008
3009 1998-05-09 Mikael Djurfeldt <mdj@kenneth>
3010
3011 * scmsigs.c (scm_usleep): Bugfix: Don't define j if it isn't
3012 used.
3013
3014 1998-05-03 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3015
3016 * procprop.c (scm_i_procedure_arity): New function. Returns arity
3017 of procedure.
3018 (scm_procedure_properties): Modified to return arity together with
3019 other properties.
3020 (scm_procedure_property): Added the read-only property `arity'.
3021 (scm_set_procedure_property_x): It is an error to set the `arity'
3022 property.
3023
3024 * gsubr.h, gsubr.c: Moved macros from gsubr.c to gsubr.h and added
3025 prefix SCM_; Made f_gsubr_apply global and added prefix scm_.
3026
3027 * procprop.h (scm_sym_arity): New symbol.
3028
3029 * objects.c (scm_set_object_procedure_x): New procedure: Use this
3030 to set the dispatch procedure of an operator or entity object.
3031
3032 * objects.h (SCM_METACLASS_OPERATOR_LAYOUT, SCM_ENTITY_LAYOUT):
3033 Made procedure slots read-only.
3034
3035 * eval.c (SCM_CEVAL): Moved scm_tc7_contin case above
3036 scm_tcs_cons_gloc case in zero args switch; Fixed args
3037 construction for operators in scm_tcs_cons_gloc case in two args
3038 switch.
3039
3040 1998-05-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3041
3042 * fluids.c: Removed use of assert.h (in order to avoid
3043 __eprintf).
3044
3045 * Makefile.am (libguile_la_LDFLAGS): Added -export-dynamic.
3046
3047 * dynl.c (maybe_drag_in_eprintf): Disabled through #ifdef 0.
3048
3049 * eval.c (SCM_CEVAL): Do more thorough argument checking. This
3050 change makes the evaluator safer at the cost of evaluation speed.
3051 It handles the case when the user has added a non-immediate
3052 improper end of the application form, e.g., `(+ 0 . x)'.
3053 (Earlier only cases like `(+ 0 . 0)' were handled.) I've tried to
3054 minimize the extra cost as much as possible. The new code is
3055 enclosed in #ifdef CAUTIOUS regions. NOTE: This also fixes the
3056 problem with structs planted directly in the code (e.g. by a
3057 macro). This no longer causes segmentation fault. (Thanks to
3058 Eric Hanchrow.)
3059
3060 * eval.c, eval.h (scm_eval_args, scm_deval_args): Take one extra
3061 arg `proc' in order to be able to throw errors; New argument
3062 checking code.
3063
3064 * Removed extra #include "debug.h"
3065
3066 1998-04-25 Mikael Djurfeldt <mdj@kenneth>
3067
3068 * scmsigs.c: Declare usleep as returning void on some systems.
3069 (scm_usleep): Return SCM_INUM0 on those systems. (Thanks to Julian
3070 Satchell.)
3071
3072 * coop.c (usleep): Return void on some systems.
3073
3074 1998-04-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3075
3076 * Makefile.am (libguile_la_LDFLAGS): Removed redundant -rpath.
3077
3078 * coop.c: Changed return type of usleep to int.
3079
3080 * scmsigs.c (scm_usleep): New procedure; Declare usleep if it
3081 isn't found in the OS.
3082
3083 * iselect.h: #define scm_internal_select select if GUILE_ISELECT
3084 isn't enabled. (Thought that I had made this change ages ago...)
3085
3086 * iselect.c: Declare bzero if not defined by OS.
3087
3088 1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3089
3090 * dynl.c (scm_must_free_argv): Fixed memory leak due to negated
3091 condition. (Thanks to John Tobey.)
3092
3093 * continuations.c (scm_make_cont), debug.c (scm_make_memoized,
3094 scm_make_debugobj), eval.c (scm_makprom): SCM_DEFER/ALLOW_INTS -->
3095 A section.
3096
3097 * __scm.h: Start the long-term project of moving to POSIX threads.
3098 Phase 1: Classification of all critical sections.
3099 (SCM_ENTER_A_SECTION, SCM_EXIT_A_SECTION): New macros: Delimiters
3100 for A sections. (See comments in __scm.h for details.)
3101
3102 * dynl.c: Only check that HAVE_DLOPEN is defined before loading
3103 dynl-dl.c; Test on HAVE_LIBDLD instead of HAVE_DLD.
3104
3105 1998-04-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3106
3107 * Makefile.am (BUILT_SOURCES): Added cpp_err_symbols.c,
3108 cpp_sig_symbols.c, libpath.h and versiondat.h to BUILT_SOURCES
3109 (libpath.h, versiondat.h): Replaced dependency on Makefile with
3110 dependencies on $(srcdir)/Makefile.in
3111 $(top_builddir)/config.status in order to avoid circularity.
3112
3113 * script.c (scm_compile_shell_switches): Bugfix: Don't discount i
3114 from argc if argc was 0 initially.
3115
3116 * Makefile.am (Makefile.am): Replaced THREAD_LIBS --> GUILE_LIBS
3117 in generation of libpath.h.
3118
3119 1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
3120
3121 * Makefile.am (libguile_la_LDFLAGS): Bumped version number of
3122 libguile from 2 to 3.
3123
3124 1998-04-14 Mikael Djurfeldt <mdj@nada.kth.se>
3125
3126 * Makefile.am: Added .x-dependencies to variable BUILT_SOURCES.
3127
3128 1998-04-13 Mikael Djurfeldt <mdj@kenneth>
3129
3130 * ports.c (scm_port_line, scm_set_port_line_x, scm_port_column,
3131 scm_set_port_column_x, scm_port_filename,
3132 scm_set_port_filename_x): Removed optional arguments. Added
3133 proper argument checking.
3134
3135 * eval.c, eval.h, coop.c (scm_eval_stack, SCM_EVAL_STACK): Measure
3136 stack size in machine words.
3137
3138 * unif.c (scm_uniform_vector_ref, scm_cvref, scm_array_set_x,
3139 rapr1): Use SCM_UCHARS instead of SCM_CHARS for strings. (Thanks
3140 to Ole Myren Röhne.)
3141
3142 1998-04-12 Mikael Djurfeldt <mdj@kenneth>
3143
3144 * socket.c: Check for HAVE_UNIX_DOMAIN_SOCKETS instead of
3145 UNIX_DOMAIN_SOCKETS. (Thanks to Lauri Alanko.)
3146
3147 * gc.c (scm_gc_sweep): Count cells correctly. (Thanks to Ben
3148 Caradoc-Davies.)
3149
3150 * eval.c (SCM_CEVAL, SCM_APPLY): In SCM_IM_APPLY and in the
3151 procedure apply: Copy argument lists before pushing them unto the
3152 environment so that the environment won't get mutated due to
3153 manipulation of procedure arguments. This should perhaps be
3154 regarded as a temporary solution until someone finds a more
3155 efficient one. (Thanks to Maciej Stachowiak.)
3156
3157 1998-04-10 Mikael Djurfeldt <mdj@kenneth>
3158
3159 * script.c (scm_compile_shell_switches): Use "guile" as default
3160 zero arg if argc is NULL.
3161
3162 1998-04-02 Mikael Djurfeldt <mdj@nada.kth.se>
3163
3164 * script.c (scm_compile_shell_switches): Allow NULL argv if argc
3165 is zero. (Thanks to Dirk Herrmann.)
3166
3167 1998-03-30 Mikael Djurfeldt <mdj@nada.kth.se>
3168
3169 * ports.c (scm_add_to_port_table): First line is now line 0
3170 (was 1). (Interface changed according to suggestion by Per
3171 Bothner.)
3172
3173 * backtrace.c (display_header): Add 1 to line and column numbers
3174 when presenting them to the user.
3175
3176 * eval.h, eval.c, debug.h, debug.c (scm_evaluator_traps): Moved
3177 from debug.c --> eval.c
3178
3179 * eval.h, eval.c (scm_eval_options_interface): New options
3180 interface.
3181 (SCM_EVAL_STACK): New option: Size of newly created stacks,
3182 i.e. stacks for new threads.
3183
3184 * coop.c (COOP_STKSIZE): Use SCM_EVAL_STACK.
3185
3186 * eval.c (unsafe_setjmp): Removed with #if 0.
3187
3188 * gsubr.c (scm_gsubr_apply): Added dummy return to avoid compiler
3189 warning.
3190
3191 * eval.c, numbers.c, unif.c, srcprop.c: Added a few curly braces
3192 to avoid compiler warnings.
3193
3194 * dynl-dl.c (sysdep_dynl_func): Only define usymb if needed.
3195
3196 1998-03-28 Mikael Djurfeldt <mdj@nada.kth.se>
3197
3198 * throw.c (handler_message): Print message on current error port
3199 instead of default error port. (Thanks to Maciej Stachowiak.)
3200
3201 Mon Mar 2 21:35:02 1998 Gary Houston <ghouston@actrix.gen.nz>
3202
3203 * ports.c (scm_add_to_port_table): allocate in units of
3204 struct scm_port_table *, not struct scm_port_table.
3205 * posix.c (scm_close_pipe): remove the port from the port table
3206 and mark as closed.
3207 Thanks to Rob Engle for both fixes.
3208
3209 1998-02-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3210
3211 * iselect.h, iselect.c, coop.c, coop-threads.c, coop-threads.h,
3212 coop-defs.h, throw.c, backtrace.c: Added new copyright year 1998.
3213
3214 1998-02-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3215
3216 * throw.h: Removed jmpbuf arg in scm_catch_body_t.
3217
3218 * backtrace.c (display_error_body, display_backtrace_body),
3219 coop-threads.c (scheme_body_bootstrip, c_body_bootstrip),
3220 gh_eval.c (eval_str_wrapper, eval_file_wrapper), init.c
3221 (invoke_main_func), root.c (cwdr_body), throw.c (cwss_body,
3222 scm_body_thunk, hbpca_body): Removed the second jmpbuf arg on body
3223 functions.
3224
3225 * throw.c (scm_internal_catch, scm_internal_lazy_catch): Bodies
3226 don't receive the jmpbuf arg anylonger.
3227 (scm_catch): Don't accept a #f tag.
3228 (scm_throw): Check that key is a symbol.
3229 (scm_ithrow): Don't take a jmpbuf as key. Don't check key arg.
3230
3231 Fri Jan 30 22:28:07 1998 Mikael Djurfeldt <mdj@kenneth>
3232
3233 * async.c (async_pending): Removed declaration.
3234
3235 1998-01-30 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3236
3237 * dynwind.c (scm_wind_chain): New debug function.
3238
3239 * coop-threads.c (scheme_launch_data, scheme_body_bootstrip,
3240 scheme_handler_bootstrip, scheme_launch_thread, c_launch_data,
3241 c_body_bootstrip, c_handler_bootstrip, c_launch_thread): Add an
3242 extra layer of functions around the body and handler of a thread.
3243 This extra layer makes sure that the handler is called in the
3244 dynamic context of the surround (= empty dynwind list), but under
3245 the *dynamic root* of the body. We can not use the dynamic root
3246 of the surround since that root belongs to another thread => stack
3247 is not handled correctly. It may seem ugly to use this extra
3248 layer, but the extra cost in terms of execution time is really
3249 negligible compared to the total amount of time required to create
3250 a thread, and it would reduce maintainability to duplicate the
3251 crucial and complicated steps performed by cwdr.
3252
3253 * __scm.h (SCM_ASYNC_TICK): Removed thread switching code.
3254 (SCM_ALLOW_INTS): Added thread switching code before interrupts
3255 get re-enabled. The important effect of this is that interrupts
3256 are blocked during thread switching so that thread data structures
3257 don't risk getting messed up by an unfortunate signal.
3258 (SCM_REDEFER_INTS, SCM_REALLOW_INTS): It turned out that gcc-2.8.0
3259 seems to do more aggressive optimization which actually move
3260 instructions around in these macros in a fatal way. Therefore:
3261 Introduce Anthony's SCM_FENCE macro! (And I who thought he was
3262 just superstitious...)
3263 (SCM_TICK): Maybe do a context switch and take care of asyncs.
3264 This macro should be used instead of SCM_ASYNC_TICK since the
3265 latter doesn't do context switches any more.
3266
3267 * eval.c (scm_eval, scm_deval), eq.c (scm_equal_p): Use SCM_TICK
3268 instead of SCM_ASYNC_TICK.
3269
3270 * coop.c, iselect.c: Since thread switches are now performed with
3271 interrupts masked, we can't use the old mechanism of delivering
3272 signals immediately when they arrive. Signals must instead be
3273 delivered when the asyncs run *after* the end of the critical
3274 section in scm_internal_select. But this also means after context
3275 switch so that the signal will be delivered to a different thread.
3276 To avoid this, I have changed the protocol of
3277 coop_wait_for_runnable_thread and friends so that they are allowed
3278 to return the original thread. So, if a signal arrives during
3279 scm_internal_select, we won't any longer be forced do a context
3280 switch, but can remain in the same thread and deliver the signal
3281 to it.
3282
3283 * async.c, async.h (asyncs_pending): Renamed asyncs_pending -->
3284 scm_asyncs_pending and made it global.
3285
3286 * iselect.c: Small fixes.
3287
3288 * coop.c (coop_mutex_init, coop_mutex_lock, coop_mutex_unlock,
3289 coop_condition_variable_init, coop_condition_variable_wait,
3290 coop_condition_variable_signal): Changed return type from `void'
3291 to `int'. This is to adhere closer to the pthreads interface.
3292 This, in turn, is part of an attempt to provide C versions of the
3293 mutex and condition variable primitives which can be part of a
3294 frontend to COOP or pthreads.
3295
3296 * coop.c (coop_mutex_destroy, coop_condition_variable_wait_mutex,
3297 coop_condition_variable_destroy): New functions.
3298
3299 * coop-threads.c (scm_wait_condition_variable): Use
3300 coop_condition_variable_wait_mutex.
3301
3302 * coop-threads.h, coop-defs.h (coop_q_t, coop_m, coop_c):
3303 Definitions moved to coop-defs.h.
3304
3305 * coop-defs.h (scm_mutex_init, scm_mutex_lock, scm_mutex_unlock,
3306 scm_mutex_destroy, scm_cond_init, scm_cond_wait, scm_cond_signal,
3307 scm_cond_destroy): New C interface to mutecis and cond vars.
3308
3309 1998-01-24 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3310
3311 * error.c (scm_wta): Added support for SCM_ARG6 and SCM_ARG7.
3312
3313 * iselect.c: Now several threads can wait on the same file
3314 descriptor. The behaviour is compatible with OS select: All
3315 threads waiting for the fd return with the same status.
3316
3317 1998-01-23 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3318
3319 * coop-threads.c, threads.h (scm_spawn_thread): New function.
3320 Can spawn a thread from application C code.
3321
3322 1998-01-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3323
3324 * gh.h, gh_data.c (gh_doubles2scm, gh_doubles2dvect,
3325 gh_doubles2scm): New functions.
3326
3327 1998-01-15 Mark Galassi <rosalia@nis.lanl.gov>
3328
3329 * gh_eval.c (gh_eval_str): cleanup -- threw out the old
3330 commented-out version of gh_eval_str()
3331
3332 Sun Jan 4 02:23:36 1998 Gary Houston <ghouston@actrix.gen.nz>
3333
3334 * socket.c (scm_bind): free soka after use.
3335
3336 Sat Jan 3 20:55:07 1998 Gary Houston <ghouston@actrix.gen.nz>
3337
3338 * stime.c (tzvar): new variable.
3339 (setzone, restorezone, scm_localtime, scm_mktime, scm_strftime):
3340 avoid memory leaks when allocating.
3341
3342 1998-01-03 Jim Blandy <jimb@totoro.red-bean.com>
3343
3344 * iselect.h: Some systems require <sys/types.h> to get the FD_SET
3345 macro definitions.
3346
3347 * gc.c, tags.h: Doc fixes.
3348
3349 1998-01-02 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3350
3351 * eval.c (macro-eval!): Removed. This function was a design bug.
3352 It allowed memoized code to leak out to the scheme level. Most
3353 things that you could do with `macro-eval!' can be done with
3354 `local-eval'.
3355
3356 1997-12-20 Tim Pierce <twp@skepsis.com>
3357
3358 * fports.c (scm_pipob): Use scm_generic_fgets for line i/o, since
3359 scm_fgets now depends on ftell(3) to know how many bytes were
3360 read. Sigh.
3361
3362 1997-12-15 Tim Pierce <twp@skepsis.com>
3363
3364 * gh_data.c (gh_scm2newstr, gh_get_substr): Use RO macros for
3365 dealing with strings.
3366
3367 1997-12-13 Tim Pierce <twp@skepsis.com>
3368
3369 Make %read-line more suitable for implementing read-line efficiently.
3370 * ioext.c (scm_read_line): Strip the terminating newline from a
3371 string, and return a cons of the string and its terminator.
3372
3373 * fports.c, fports.h (scm_fgets): Add `len' argument. The length
3374 of the string that is read is stored in this memory location.
3375 * ports.c, ports.h (scm_generic_fgets, fgets_void_port): Same.
3376 * genio.c, genio.h (scm_do_read_line): Update caller.
3377 * ports.h (scm_ptobfuns): Update typedef.
3378 * fports.c (scm_fptob, scm_pipob): Update struct.
3379
3380 1997-12-08 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3381
3382 * filesys.c (set_element): Return file descriptor.
3383 (fill_select_type): Return the highest file descriptor.
3384 (scm_select): Tell select about the highest file descriptor. On
3385 some systems the SELECT_SET_SIZE can be as much as 128 bytes.
3386 Therefore the extra overhead for calculating the maximum fd seems
3387 to be more than compensated. Is this correct? In any case,
3388 scm_internal_select will be much faster with this info.
3389 (scm_select, fill_select_type, set_element): Don't accept any kind
3390 of object in the file descriptor list or vector.
3391
3392 1997-12-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3393
3394 * iselect.c (finalize_fd_sets): Bugfix.
3395
3396 1997-12-06 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3397
3398 * filesys.c (scm_select): Don't use SCM_DEFER_INTS/SCM_ALLOW_INTS
3399 when using scm_internal_select (since we might switch to another
3400 thread).
3401
3402 Sun Dec 7 01:43:56 1997 Gary Houston <ghouston@actrix.gen.nz>
3403
3404 * simpos.c (scm_system): always define: use sysmissing if not
3405 available. Check for HAVE_SYSTEM instead of _Windows (does
3406 Windows lack system or does it have an unusable one?).
3407 Check for error conditions -1 and 127. Use SCM_DEFER_INTS.
3408 Let the argument be optional: if not supplied, call system(NULL).
3409
3410 * ports.c (scm_close_port): relax the type check from OPPORTP to
3411 PORTP; closing a closed port is allowed.
3412
3413 1997-12-04 Tim Pierce <twp@ppp39.Nantucket.net>
3414
3415 * fports.c (scm_fgets): Return if the last char in a chunk is
3416 newline. When fgets returns a string whose length is `size-1', it
3417 is ambiguous whether a whole line was retrieved, so we must check
3418 explicitly whether a line terminator is present.
3419
3420 1997-12-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3421
3422 * print.h (SCM_COERCE_OUTPORT): Check that the object is a pair
3423 before taking the CDR. (Thanks to Harald Meland.)
3424
3425 * filesys.c (scm_stat): Slightly optimized.
3426
3427 Wed Dec 3 12:23:06 1997 Jim Blandy <jimb@totoro.red-bean.com>
3428
3429 * ports.c (scm_close_port): Make sure the port is open before
3430 trying to close it.
3431
3432 * guile-snarf.in: Pass args through to gcc in a way that preserves
3433 whitespace boundaries. (Thanks to Greg Badros.)
3434
3435 1997-12-02 Tim Pierce <twp@skepsis.com>
3436
3437 * stacks.c (scm_frame_procedure): Reverse the logic in the return
3438 statement. (Thanks to Doug Evans for pointing this out.)
3439
3440 1997-12-01 Tim Pierce <twp@skepsis.com>
3441
3442 * scmconfig.h.in: Regenerated for USCORE change in ../acconfig.h.
3443
3444 Sun Nov 30 11:29:18 1997 Mikael Djurfeldt <mdj@kenneth>
3445
3446 * coop-defs.h (struct coop_t): Renamed errno --> _errno to prevent
3447 errno macro expansion of this field name. (errno is a C
3448 preprocessor macro on some systems.)
3449
3450 1997-11-29 Tim Pierce <twp@skepsis.com>
3451
3452 * iselect.c: Doc fix.
3453
3454 Sat Nov 29 01:16:53 1997 Mikael Djurfeldt <mdj@kenneth>
3455
3456 * init.c (scm_start_stack): Removed initialization of
3457 scm_the_last_stack_var.
3458
3459 * backtrace.h: Declare scm_the_last_stack_var.
3460
3461 * backtrace.c: Define scm_the_last_stack_var.
3462
3463 * root.c (mark_root): Don't mark the_last_stack_var.
3464
3465 * root.h (scm_root_state): Removed the_last_stack_var.
3466
3467 * throw.c: Added #include "fluids.h"
3468 (ss_handler): `the-last-stack' is now a fluid.
3469
3470 * (backtrace.h, backtrace.c, throw.c): Renamed the_last_stack_var
3471 --> the_last_stack_fluid.
3472
3473 * backtrace.c: Added #include "fluids.h"
3474 (scm_init_backtrace): Initialize `the-last-stack' to a fluid.
3475 (scm_backtrace): `the-last-stack' is now a fluid.
3476
3477 * init.c (scm_boot_guile_1): Moved call to scm_init_backtrace
3478 after scm_init_fluids.
3479
3480 1997-11-28 Tim Pierce <twp@skepsis.com>
3481
3482 * iselect.c: #ifdef USE_THREADS around thread-related includes.
3483
3484 * dynl-dl.c (sysdep_dynl_func): Check both USCORE and
3485 DLSYM_ADDS_USCORE to decide whether to add an underscore.
3486
3487 1997-11-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3488
3489 * iselect.c (coop_next_runnable_thread,
3490 coop_wait_for_runnable_thread): Disable interrupts so that no
3491 async is executed before a potential error_revive.
3492 (scm_internal_select): Disable interrupts during the parts of the
3493 code which manipulate the sleep queue and the file descriptors.
3494
3495 1997-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3496
3497 * Makefile.am: Added iselect.c and iselect.h.
3498
3499 * coop.c (coop_qinit): Initialize fields used by
3500 scm_internal_select.
3501 (coop_qget, coop_qget, coop_tmp_queue): Made global.
3502 (coop_next_runnable_thread): If GUILE_ISELECT enabled, use
3503 replacement in iselect.c.
3504 (coop_mutex_lock, coop_condition_variable_wait, coop_abort,
3505 coop_join): If GUILE_ISELECT enabled, use
3506 coop_wait_for_runnable_thread instead of
3507 coop_next_runnable_thread.
3508 (usleep, sleep): New replacements for system functions if
3509 GUILE_ISELECT is enabled.
3510
3511 * coop-threads.h: Declare coop_wait_for_runnable_thread.
3512
3513 * coop-defs.h (coop_t): Added fields used by scm_internal_select.
3514
3515 * filesys.c: Added #include "iselect.h". Moved FD-macros to
3516 iselect.h. Implement Scheme level `select' using
3517 scm_internal_select. (See NEWS.)
3518
3519 * genio.c (scm_getc): Block with scm_internal_select. (See NEWS.)
3520
3521 * init.c: Call scm_init_iselect.
3522
3523 * iselect.h, iselect.c: New files. Implements
3524 scm_internal_select. (See NEWS.)
3525
3526 1997-11-27 Tim Pierce <twp@skepsis.com>
3527
3528 Fix a memory leak in scm_read_line and a type cast bug in the ptob.
3529 * fports.c (scm_fgets): Use malloc/free rather than scm_must_malloc
3530 and scm_must_free, since ultimately the string returned will be copied
3531 by scm_makfrom0str anyway. Also, read any characters that may have
3532 been pushed onto the port with scm_ungetc.
3533 * ports.c (scm_generic_fgets): Same as for scm_fgets.
3534 * ioext.c (scm_read_line): Free string after Guilifying it.
3535 * ports.h (scm_ptobfuns): fgets method returns a char *, not a char.
3536
3537 1997-11-26 Anthony Green <green@hoser.cygnus.com>
3538
3539 * gh_data.c (gh_set_substr): Strings can be longer than 256 bytes.
3540
3541 * gh.h: Safely wrap prototypes for c++ usage.
3542
3543 1997-11-25 Mark Galassi <rosalia@cygnus.com>
3544
3545 * gh_test_repl.c (main_prog): changed invocation of gh_repl() to
3546 gh_repl (argc, argv).
3547
3548 1997-11-24 Mark Galassi <rosalia@nis.lanl.gov>
3549
3550 * gh_init.c (gh_repl): modified gh_repl() to accept argc and argv
3551 and to invoke scm_shell().
3552 (gh_launch_pad): took out the loading of boot-9.scm from here,
3553 since it is probably best to let the user control that. In fact,
3554 gh_repl() now invokes scm_shell() which does that.
3555
3556 1997-11-23 Mark Galassi <rosalia@cygnus.com>
3557
3558 * gh_test_repl.c (main_prog): added argc and argv to the gh_repl()
3559 invocation.
3560
3561 1997-11-22 Tim Pierce <twp@twp.tezcat.com>
3562
3563 * dynl-dl.c (sysdep_dynl_func): Fix memory leak created by
3564 yesterday's underscore patch. (Thanks to Marius Vollmer for
3565 spotting this.)
3566
3567 1997-11-21 Tim Pierce <twp@twp.tezcat.com>
3568
3569 * dynl-dl.c (sysdep_dynl_func): Prepend symb with underscore if
3570 DLSYM_ADDS_USCORE is not defined.
3571
3572 1997-11-17 Mark Galassi <rosalia@nis.lanl.gov>
3573
3574 * gh_data.c (gh_uniform_vector_length):
3575 (gh_uniform_vector_ref): started implementing the uniform types in
3576 the gh_ interface.
3577
3578 1997-11-06 Mikael Djurfeldt <mdj@nada.kth.se>
3579
3580 * regex-posix.c (scm_free_regex_t): Return size of regex_t instead
3581 of 0; size_t --> scm_size_t. Thanks to Bernard Urban.
3582
3583 1997-10-26 Mikael Djurfeldt <mdj@nada.kth.se>
3584
3585 * scmconfig.h.in: Updated (HAVE_LIBTERMCAP was added when
3586 configure.in was changed).
3587
3588 Sun Oct 26 02:20:11 1997 Jim Blandy <jimb@totoro.red-bean.com>
3589
3590 * Makefile.am (modinclude_HEADERS): Include readline.h here.
3591 * Makefile.in: Regenerated.
3592
3593 1997-10-25 Marius Vollmer <mvo@zagadka.ping.de>
3594
3595 * print.h (SCM_COERCE_OPORT): Renamed to SCM_COERCE_OUTPORT. An
3596 OPORT is an `open' port, not an output port.
3597
3598 * filesys.c (scm_close, set_element, get_element, scm_chown,
3599 scm_chmod, scm_stat, scm_truncate_file, scm_fcntl, scm_fsync): Use
3600 SCM_COERCE_OUTPORT to cope with the printstate/port magic.
3601 * ports.c (scm_port_revealed, scm_set_port_revealed_x,
3602 scm_close_port, scm_port_line, scm_set_port_line_x,
3603 scm_port_column, scm_set_port_column_x, scm_port_filename,
3604 scm_set_port_filename_x, scm_port_mode,
3605 scm_close_all_ports_except, scm_set_current_output_port,
3606 scm_set_current_error_port): Likewise
3607 * ioext.c (scm_redirect_port, scm_dup_to_fdes, scm_freopen,
3608 scm_ftell, scm_fileno, scm_isatty_p, scm_primitive_move_to_fdes):
3609 Likewise
3610 * posix.c (scm_ttyname, scm_tcgetpgrp, scm_tcsetpgrp): Likewise
3611 * backtrace.c (display_backtrace_body): Likewise
3612 * fports (scm_setvbuf): Likewise
3613 * socket.c (scm_getsockopt, scm_setsockopt, scm_shutdown,
3614 scm_connect, scm_bind, scm_listen, scm_accept, scm_getsockname,
3615 scm_getpeername, scm_send, scm_sendto): Likewise
3616 * unif.c (scm_uniform_array_write): Likewise
3617
3618 Sat Oct 25 02:52:58 1997 Jim Blandy <jimb@totoro.red-bean.com>
3619
3620 Minor problems with substring-related tag changes.
3621 * symbols.h (SCM_SUBSTRP): Don't mask off the S bit; that's
3622 exactly what we want to leave in to detect substrings.
3623 (SCM_ROSTRINGP, ROUCHARS): Formatting tweaks.
3624 * tags.h: Fix diagrams and comments describing the S tag bit;
3625 remove vestigial remarks about the D tag bit.
3626 (SCM_TYP7, SCM_TYP7S): Rephrased for readability.
3627 * strings.c: Formatting tweaks.
3628
3629 * load.c (scm_init_load_path): Check GUILE_LOAD_PATH environment
3630 variable first; then SCHEME_LOAD_PATH, with a warning message.
3631 (scm_parse_path): New function.
3632 * script.c: Doc fixes.
3633
3634 Thu Oct 23 01:02:03 1997 Jim Blandy <jimb@totoro.red-bean.com>
3635
3636 Readline support, from Daniel Risacher.
3637 * readline.c, readline.h: New files.
3638 * init.c: #include "readline.h".
3639 (scm_boot_guile_1): Call scm_init_readline, if we have it.
3640 * Makefile.am (libguile_la_SOURCES): Include readline.c.
3641 * Makefile.in: Regenerated.
3642 * scmconfig.h.in: Regenerated, after change to ../configure.
3643
3644 1997-10-20 Mark Galassi <rosalia@nis.lanl.gov>
3645
3646 * gh.h: gh_vector_set -> gh_vector_set_x
3647
3648 1997-10-20 Mark Galassi <rosalia@nis.lanl.gov>
3649
3650 * gh_data.c (gh_vector_set_x): changed name to make it consistent
3651 with the ! -> _x mapping when going from Scheme to C.
3652
3653 1997-10-19 Mark Galassi <rosalia@cygnus.com>
3654
3655 * gh.h (gh_reverse):
3656 (gh_list_tail):
3657 (gh_list_ref):
3658 (gh_memq):
3659 (gh_memv):
3660 (gh_member):
3661 (gh_assq):
3662 (gh_assv):
3663 (gh_assoc): added these gh_ functions implemented as macros.
3664
3665 * gh_predicates.c (gh_null_p):
3666 (gh_string_equal_p): added these two missing predicates.
3667
3668 * gh_list.c (gh_append):
3669 (gh_append2):
3670 (gh_append3):
3671 (gh_append4):
3672 (gh_set_car_x):
3673 (gh_set_cdr_x): added these routines as I go through and try to
3674 complete the picture R4RS functions that should be mirrored in the
3675 gh_ interface.
3676
3677 Sat Oct 18 01:52:51 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3678
3679 * tags.h (scm_tc7_substring): Changed the comment and code to
3680 conform with the changes below. Folks! We have suddenly two new
3681 free tc7 codes!!! Jummy, jummy!
3682
3683 Tue Oct 14 22:03:06 1997 Tom Tromey <tromey@cygnus.com>
3684
3685 * Makefile.in: Rebuilt.
3686 * Makefile.am (libguile_la_SOURCES): Removed extchrs.c,
3687 mbstrings.c.
3688 (modinclude_HEADERS): Removed extchrs.h, mbstrings.h.
3689 * unif.c (scm_vector_set_length_x): Don't handle multibyte
3690 strings.
3691 * tag.c (scm_utag_mb_string, scm_utag_mb_substring): Removed.
3692 (scm_tag): Don't handle multibyte strings.
3693 * read.c: Don't include mbstrings.h.
3694 (scm_lreadr): Don't handle multibyte ports.
3695 * kw.c: Don't include mbstrings.h.
3696 * init.c: Don't include mbstrings.h.
3697 (scm_boot_guile_1): Don't init mbstrings module.
3698 * hash.c (scm_hasher): Don't handle mbstrings.
3699 * gscm.c (gscm_run_scm): Don't init mbstrings module.
3700 * gc.c (scm_gc_mark): Don't handle mbstrings.
3701 (scm_gc_sweep): Likewise.
3702 * eval.c (SCM_CEVAL): Don't handle mbstrings.
3703 * eq.c (scm_equal_p): Use SCM_TYP7S, not SCM_TYP7SD.
3704 * tags.h (SCM_TYP7SD): Removed.
3705 (SCM_TYP7D): Removed.
3706 (scm_tc7_mb_string): Removed.
3707 (scm_tc7_mb_substring): Removed.
3708 * print.c (scm_iprin1): Handle char printing directly. Don't
3709 handle mbstrings.
3710 Don't include "mbstrings.h".
3711 * symbols.c (scm_intern_obarray_soft, scm_string_to_symbol,
3712 scm_string_to_obarray_symbol, msymbolize): Don't set symbol's
3713 multi-byte flag.
3714 Don't include "mbstrings.h".
3715 * symbols.h (SCM_SYMBOL_MULTI_BYTE_STRINGP): Removed.
3716 (SCM_SYMBOL_SLOTS): Define as 4.
3717 (SCM_ROSTRINGP): Use SCM_TYP7S, not SCM_TYP7SD.
3718 * arbiters.c, backtrace.c, debug.c, dynl.c, eval.c, fluids.c,
3719 gc.c, gsubr.c, ioext.c, kw.c, mallocs.c, numbers.c, ports.c,
3720 print.c, read.c, regex-posix.c, root.c, srcprop.c, stackchk.c,
3721 struct.c, threads.c, throw.c, unif.c, variable.c: Use new
3722 ("gen"-less) I/O function names.
3723 * ports.c (scm_add_to_port_table): Don't set port's
3724 representation.
3725 * ports.h (scm_port_representation_type): Removed.
3726 (scm_string_representation_type): Removed.
3727 (struct scm_port_table ): Removed representation field.
3728 (SCM_PORT_REPRESENTATION): Removed.
3729 (SCM_SET_PORT_REPRESENTATION): Removed.
3730 * genio.h: Use new function names.
3731 * genio.c: Don't include "extchrs.h".
3732 (scm_gen_putc, scm_gen_puts, scm_gen_write, scm_get_getc):
3733 Removed.
3734 (scm_putc, scm_puts, scm_lfwrite): No longer static.
3735 (scm_getc): No longer static; handle line and column changes.
3736 (scm_ungetc): Renamed from scm_gen_ungetc.
3737 (scm_do_read_line): Renamed from scm_gen_read_line.
3738 * libguile.h: Don't include "extchrs.h" or "mbstrings.h"
3739 * extchrs.h, extchrs.c, mbstrings.h, mbstrings.c: Removed.
3740
3741 1997-10-12 Mark Galassi <rosalia@cygnus.com>
3742
3743 * gh_test_repl.c (c_vector_test): same as gh_test_c.c
3744
3745 * gh_test_c.c (c_vector_test): some improvements on the vector
3746 routines test.
3747
3748 * gh.h (gh_vector): this used to exist but do the wrong thing.
3749 Now it (almost) does the right thing, though it takes a list
3750 instead of the individual arguments. I need to see how it could
3751 be done right.
3752 (gh_list_to_vector): added this function as a macro. Corresponds
3753 to Scheme's (list->vector ...).
3754 (gh_vector_to_list): added this function as a macro. Corresponds
3755 to Scheme's (vector->list ...).
3756
3757 * gh_data.c (gh_vector_ref): renamed from gh_vref to
3758 gh_vector_ref, so that it resembles the Scheme routines more.
3759 (gh_vector_set): renamed from gh_vset to gh_vector_set, so that it
3760 resembles the Scheme routines more.
3761 (gh_make_vector): this used to be (stupidly) called gh_vector().
3762 This is the right name, since it does the same thing as the Scheme
3763 (make-vector ...) procedure.
3764
3765 Sun Oct 12 14:41:39 1997 Mikael Djurfeldt <mdj@kenneth>
3766
3767 * ports.h: #include "libguile/print.h"
3768
3769 * eval.c (SCM_CEVAL, scm_apply): Completed GOOPS support code;
3770 Some indentation fixes.
3771
3772 * objects.h (SCM_METACLASS_STANDARD_LAYOUT): Printer field is no
3773 longer a user field; New field: class_flags.
3774
3775 * objets.c, objects.h: New metaclass: scm_metaclass_operator.
3776
3777 Tue Oct 7 09:37:24 1997 Mark Galassi <rosalia@cygnus.com>
3778
3779 * gh_data.c (gh_bool2scm): new function which replaces
3780 gh_int2scmb(), which is now tagged as obsolete.
3781
3782 1997-10-03 Mikael Djurfeldt <mdj@nada.kth.se>
3783
3784 * print.h (SCM_PRINT_STATE_P): Removed SCM_NIMP test. (NIMP
3785 macros should by convention not test for NIMPness.)
3786 (SCM_COERCE_OPORT): Adjust indentation.
3787
3788 * print.c (scm_valid_oport_value_p): Adjusted indentation; Added
3789 SCM_NIMP test before SCM_PRINT_STATE_P.
3790
3791 * struct.c, struct.h, gc.c: Renamed:
3792 scm_struct_i_layout --> scm_vtable_index_layout
3793 scm_struct_i_vcell --> scm_vtable_index_vcell
3794 scm_struct_i_vtable --> scm_vtable_index_vtable
3795 scm_struct_i_printer --> scm_vtable_index_printer
3796 scm_struct_i_vtable_offset --> scm_vtable_offset_user
3797
3798 * struct.c (scm_print_struct): Use new printer slot; Default
3799 printing: Also output hex code of vtable so that type identity
3800 will be indicated as well.
3801 (scm_init_struct): Updated required_vtable_fields to "pruosrpw";
3802 Removed struct_printer_var; Removed struct-vtable-offset;
3803 (vtable-index-layout, vtable-index-vtable, vtable-index-printer,
3804 vtable-offset-user): New constants.
3805
3806 * struct.h (scm_struct_i_vtable_offset): Bumped from 3 to 4.
3807 (scm_struct_i_printer, SCM_STRUCT_PRINTER): New slot in vtables.
3808 If this slot contains a procedure, use that to print structures of
3809 the type represented by this vtable.
3810
3811 * print.c (scm_iprin1): Don't print arguments of macro
3812 transformers. (They are always: exp env.); Bugfix: Unmemoize
3813 transformer source with correct environment.
3814
3815 1997-10-02 Marius Vollmer <mvo@zagadka.ping.de>
3816
3817 Streamlining of call-with-dynamic-root:
3818
3819 * root.c (cwdr_inner_body, cwdr_body): Remove "inner" from name,
3820 there is now only one catch.
3821 (cwdr_outer_body): Removed.
3822 (cwdr_handler): New function.
3823 (scm_internal_cwdr): New function to perform the function of cwdr
3824 but take args that are more useful to C code. Also, the handler
3825 is now invoked *outside* of the new dynamic root, like the docs
3826 say. We no longer have to catch absolutely all errors, the caller
3827 is responsible for using a handler that does not throw, if he
3828 wants that.
3829 (cwdr): Reimplemented in terms of scm_internal_cwdr.
3830 * root.h (scm_internal_cwdr): New prototype.
3831
3832 Even more but risky streamlining:
3833
3834 * root.c (USE_STACKJMPBUF): New define to activate a stack-based
3835 allocation of the jumpbuf of a root continuation. The changes
3836 below are controlled by it. They are now deactivated.
3837 (scm_internal_cwdr): Allocate the scm_contregs on the stack. Set
3838 the JMPBUF of the scm_rootcont to NULL before returning.
3839
3840 * gc.c (scm_gc_sweep): Free the SCM_VELTS of a scm_tc7_contin only
3841 when they are non-NULL.
3842 (scm_gc_mark): Likewise, mark only when non-NULL.
3843
3844 Make dynamic linking work on Dec Unix. (Thanks to Clark McGrew)
3845 * dynl.c: Include "dynl-dl.c" also when HAVE_DLOPEN is defined.
3846
3847 * gc.c (scm_done_malloc): New function.
3848 gc.h (scm_done_malloc): New prototype.
3849
3850 * print.h (SCM_PRINT_STATE_P, SCM_COERCE_OPORT): New macros.
3851 (struct scm_print_state) [revealed]: New field.
3852 (scm_print_state_vtable): Make visible to the outside world for
3853 type checking purposes.
3854 (scm_valid_oport_value_p): New prototype.
3855
3856 * print.c (scm_valid_oport_value_p): New function to check whether
3857 a certain value is acceptable as a port argument.
3858 (scm_print_state_vtable): New variable.
3859 (scm_free_print_state): Set `revealed' field to false.
3860 (scm_iprin1): Call user supplied closure printer with
3861 scm_printer_apply. Print in the traditional way when there isn't
3862 one or when it returns #f.
3863 (scm_prin1, scm_display, scm_write, scm_newline, scm_write_char):
3864 Accept a port/print-state pair in addition to just a port.
3865 (scm_prin1): Don't return the print_state to the pool when it has
3866 been `revealed'.
3867 (scm_printer_apply): Set `revealed' field of print_state to true.
3868 (scm_init_print): Set scm_print_state_vtable.
3869 (print_state_fluid, print_state_fluid_num): Removed.
3870
3871 * throw.h (scm_handle_by_proc_catching_all): New prototype
3872 throw.c (scm_handle_by_proc_catching_all): New function
3873
3874 Mon Sep 29 23:54:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
3875
3876 * Makefile.in: Regenerated with automake 1.2c.
3877
3878 Sun Sep 28 21:35:42 1997 Radey Shouman <shouman@zianet.com>
3879
3880 * ramap.c (scm_array_index_map_x): Fixed for zero-rank arguments,
3881 was looping endlessly.
3882
3883 Sun Sep 28 00:04:29 1997 Jim Blandy <jimb@totoro.red-bean.com>
3884
3885 * strports.c (scm_eval_string): Don't close the port.
3886
3887 * stime.c (bdtime2c): Use SCM_LENGTH, not scm_vector_length; the
3888 former returns a nice normal integer. (Thanks to Daniel
3889 Risacher.)
3890
3891 Sat Sep 27 20:19:34 1997 Jim Blandy <jimb@totoro.red-bean.com>
3892
3893 * Makefile.am (libpath.h): Include the value of the THREAD_LIBS
3894 makefile variable as a build parameter called LIBS. The
3895 build-guile program will use this, for the time being.
3896 * Makefile.in: Regenerated.
3897
3898 Thanks to Shiro Kawai:
3899 * gc.c (scm_gc_mark): Pass NULL to scm_wta as the subroutine name.
3900 * ports.h (scm_ptobfuns): The fgets method returns a char *, not
3901 an SCM.
3902
3903 * Makefile.in: Regenerated with automake 1.2a.
3904
3905 * script.c (scm_compile_shell_switches): If we hit the -c or --
3906 arguments, don't set the car of (command-line) to scm_usage_name,
3907 the prettified name of the guile executable; give it the full
3908 path, the way shells usually handle $0.
3909
3910 Wed Sep 24 22:09:52 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3911
3912 * ramap.c (scm_array_map): Renamed to scm_array_map_x. Removed
3913 Scheme-level name `array-map' and renamed `serial-array-map' to
3914 `serial-array-map!'.
3915
3916 * backtrace.c: Introduced exception handlers which now enclose
3917 `display-error' and `display-backtrace' so that error reporting
3918 won't get into infinite loops if an error occurs during displaying
3919 of the error. This can very easily happen with user supplied
3920 print call-back routines.
3921
3922 Tue Sep 23 12:43:17 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3923
3924 * ramap.c: Added alias `array-map!' for `array-map'. (Probably,
3925 the names `serial-array-map' and `array-map' should be removed.)
3926
3927 Mon Sep 22 01:21:54 1997 Mikael Djurfeldt <mdj@kenneth>
3928
3929 * init.c (scm_boot_guile_1): Added scm_init_objects ().
3930 Added #include "objects.h"
3931
3932 * eval.c (scm_makprom): Added SCM_DEFER_INTS and SCM_ALLOW_INTS.
3933 Add #include "feature.h".
3934
3935 * Makefile.am (libguile_la_SOURCES): Added objects.c.
3936 (modinclude_HEADERS): Added objects.h.
3937
3938 * ports.h (SCM_EOF_OBJECT_P): New macro predicate.
3939 This test is needed at many places in the code and should be
3940 abstracted. (Motivated by the need of this test in libguiletk.)
3941
3942 * ports.c (scm_eof_object_p), vports.c (sfgetc), strports.c
3943 (scm_eval_string), load.c (scm_primitive_load,
3944 scm_read_and_eval_x), gh_eval.c (gh_eval_str):
3945 Use SCM_EOF_OBJECT_P.
3946
3947 * eval.c (scm_init_eval): Add feature `delay'.
3948
3949 Tue Sep 16 02:12:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3950
3951 * scmhob.h: Removed.
3952
3953 Mon Sep 15 20:42:03 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3954
3955 * list.h (SCM_LISTn): New macros. Make list creation in C code
3956 prettier. The idea comes from STk.
3957
3958 * sequences.h, sequences.c, append.h, append.c: Removed. These
3959 files implemented non-R4RS operations which would encourage
3960 non-portable programming style and less easy-to-read code.
3961
3962 * Makefile.am (sequences.h, sequences.c, append.h, append.c):
3963 Removed.
3964
3965 * libguile.h, eval.c, init.c, stime.c, unif.c: Removed #include
3966 sequences.h, #include append.h.
3967
3968 * init.c (scm_boot_guile_1): Removed calls to scm_init_append and
3969 scm_init_sequences.
3970
3971 * gh.h, gh_list.c: Renamed gh_list_length --> gh_length.
3972
3973 * list.h, list.c: Renamed scm_list_length --> scm_length, scm
3974
3975 * stime.c (bdtime2c): Changed scm_obj_length --> scm_vector_length.
3976
3977 Sat Sep 13 00:21:41 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3978
3979 * eval.c: Added #include "objects.h"
3980
3981 * tags.h (scm_tc16_object, scm_tc16_entity): Smobtags for objects
3982 and entities.
3983
3984 * smob.c (scm_smob_prehistory): Create two objectsmobs with
3985 adjacent smob numbers.
3986
3987 Thu Sep 11 00:59:17 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3988
3989 * procprop.h: Added declaration of scm_i_inner_name.
3990
3991 * gsubr.c: New global symbol scm_i_inner_name.
3992
3993 * debug.c (scm_procedure_name): Try procedure property
3994 `inner-name' if `name' fails.
3995
3996 * print.c (scm_iprin1): Use scm_macro_name.
3997
3998 * eval.c (scm_m_define): Give names to macros as well; Only the
3999 first top-level definition gives a procedure/macro a name.
4000 Otherwise confusing names can turn up in backtraces.
4001 (SCM_CEVAL): SCM_IM_DEFINE: Set `inner-name' property instead of
4002 `name'; Give names to macros as well.
4003
4004 * procs.c (scm_closure_p), print.c (scm_iprin1), eval.c
4005 (scm_macro_transformer): Use SCM_CLOSUREP instead of
4006 scm_closure_p.
4007
4008 Wed Sep 10 20:52:18 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4009
4010 * eval.c (macro?, macro-type, macro-name, macro-transformer): New
4011 procedures;
4012 (prinmacro): Removed. The code has been moved/merged into print.c
4013 in order to decrease code redundancy. We want macros to print in
4014 a way equivalent to procedures, and it would be silly to duplicate
4015 the required code. (We don't want to maintain two places.)
4016 (macrosmob): Print field is now a NULL pointer.
4017
4018 * eval.h (scm_macro_p, scm_macro_type, scm_macro_name,
4019 scm_macro_transformer): New prototypes.
4020 (scm_tc16_macro): Declared.
4021
4022 * print.c (scm_iprin1): Added code for printing of macros. Macros
4023 are now printed in a way equivalent to procedures.
4024
4025 Sat Sep 6 12:20:42 1997 Mikael Djurfeldt <mdj@kenneth>
4026
4027 * procs.h (scm_closure_p): Added declaration.
4028
4029 Fri Sep 5 13:36:14 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4030
4031 * gc.c (scm_gc_mark): Fixed "rogue pointer in heap" message:
4032 Shouldn't pass "heap" as the subr name.
4033
4034 Tue Sep 2 18:14:30 1997 Jim Blandy <jimb@totoro.red-bean.com>
4035
4036 * gh_predicates.c (gh_boolean_p, gh_symbol_p, gh_char_p,
4037 gh_vector_p, gh_pair_p, gh_number_p, gh_string_p, gh_procedure_p,
4038 gh_list_p, gh_inexact_p, gh_exact_p, gh_eq_p, gh_eqv_p,
4039 gh_equal_p): Use SCM_NFALSEP, instead of testing against
4040 SCM_BOOL_T. Any non-false value is true.
4041
4042 Tue Sep 2 00:27:07 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4043
4044 * symbols.h (scm_builtin_bindings, scm_builtin_weak_bindings,
4045 scm_gensym): Added prototypes.
4046
4047 * symbols.c (scm_gensym): New function. This will speed up
4048 certain types of applications (such as macro systems) which
4049 generate lots of symbols.
4050
4051 Mon Sep 1 22:30:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4052
4053 * numbers.c (logand, logior, logxor): Handle 0 or 1 arguments.
4054
4055 Sat Aug 30 18:56:19 1997 Gary Houston <ghouston@actrix.gen.nz>
4056
4057 * unif.c (scm_shap2ra): tighten the checking of the array dimension
4058 specifier, since (2) or (2 . 3) would cause SEGV.
4059 (scm_transpose_array): more argument checking fixes.
4060
4061 Thu Aug 28 23:48:53 1997 Jim Blandy <jimb@totoro.red-bean.com>
4062
4063 * Makefile.in: Regenerated.
4064
4065 Wed Aug 27 17:44:44 1997 Jim Blandy <jimb@totoro.red-bean.com>
4066
4067 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
4068
4069 Mon Aug 25 13:47:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4070
4071 * error.c, error.h (scm_error_callback): Removed (see NEWS).
4072
4073 Sun Aug 24 01:25:35 1997 Mikael Djurfeldt <mdj@kenneth>
4074
4075 * regex-posix.c: If <regex.h> can't be found, try <rxposix.h> or
4076 <rx/rxposix.h>. (This is in order to accomodate for the GNU Rx
4077 library.)
4078
4079 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp, ramap_1,
4080 ramap_2o, scm_array_index_map_x, raeql_1, scm_array_equal_p),
4081 unif.c (scm_vector_set_length_x, scm_uniform_vector_length,
4082 scm_array_p, scm_array_rank, scm_array_dimensions,
4083 scm_enclose_array, scm_array_in_bounds_p, scm_uniform_vector_ref,
4084 scm_cvref, scm_array_set_x, scm_array_contents, scm_array_to_list,
4085 scm_array_prototype): Added case scm_tc7_wvect.
4086
4087 Sat Aug 23 18:45:44 1997 Gary Houston <ghouston@actrix.gen.nz>
4088
4089 * errno.h: prototype for scm_strerror.
4090 * error.c (scm_strerror): new procedure.
4091
4092 Mon Aug 18 14:58:22 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4093
4094 * list.c (scm_list_append_x): Allow non-pair as last argument.
4095 This is consistent with the R4RS append and is probably the
4096 correct behaviour as specified by R2RS. (Thanks to Radey Shouman)
4097
4098 Sat Aug 16 18:42:15 1997 Gary Houston <ghouston@actrix.gen.nz>
4099
4100 * stime.h: prototype for scm_times.
4101 * stime.c (scm_times): new procedure.
4102 * ioext.c (scm_fseek): if the first argument is a file descriptor
4103 call lseek.
4104 (scm_ftell): if the first argument is a file descriptor call lseek
4105 (sic).
4106 * filesys.h: prototypes for scm_open_fdes, scm_fsync.
4107 * filesys.c (scm_chmod): if the first argument is a file descriptor,
4108 call fchmod.
4109 (scm_chown): if the first argument is a port or file descriptor,
4110 call fchown.
4111 (scm_truncate_file): new procedure.
4112 Add DEFER/ALLOW INTS to a few other procedures.
4113 (scm_fsync): new procedure.
4114 (scm_open_fdes): new procedure.
4115 (scm_open): use scm_open_fdes. If mode isn't specified, 666 will
4116 now be used.
4117 (scm_fcntl): the first argument can now be a file descriptor. The
4118 third argument is now optional.
4119
4120 * posix.c (scm_execl, scm_execlp): make the filename argument
4121 compulsory, since omitting it causes SEGV.
4122 (scm_sync): return unspecified instead of #f.
4123 (scm_execle): new procedure.
4124 (environ_list_to_c): new procedure.
4125 (scm_environ): use environ_list_to_c. disable interrupts.
4126 (scm_convert_exec_args): take pos and subr arguments and
4127 improve error checking.
4128
4129 1997-08-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4130
4131 * stacks.c (scm_make_stack), coop-threads.c, mit-pthreads.c
4132 (scm_call_with_new_thread): Bugfix: SCM_WNA should go as third
4133 argument to SCM_ASSERT. Furthermore, the name of the function
4134 should be passed as first argument when signalling
4135 SCM_WNA. (Thanks to Thomas Morgan)
4136
4137 * gsubr.c (scm_gsubr_apply): From Radey Shouman
4138 <shouman@zianet.com>: "The switch in scm_gsubr_apply that
4139 dispatches on the number of actual args has a default case
4140 reporting an internal error. This is a vestige from a version
4141 that mallocated a SCM vector to hold the arguments. In the
4142 current version this check is too late: if it ever happens we will
4143 have already overstepped the bounds of the array.
4144
4145 Also, the patch [...] adds a check for too many actual arguments."
4146
4147 mdj: Removed check for "internal programming error".
4148
4149 Wed Aug 13 15:38:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4150
4151 * gh_io.c (gh_write): New function.
4152
4153 * gh_eval.c (catch_with_saved_stack): Removed. Replaced by:
4154 throw.c (scm_internal_stack_catch): New sibling to the other catch
4155 functions. Code moved from gh_eval.c.
4156 throw.h: Added header.
4157 gh_eval.c (gh_eval_str_with_stack_saving_handler): Renamed call to
4158 scm_internal_stack_catch.
4159
4160 Tue Jul 29 01:03:08 1997 Gary Houston <ghouston@actrix.gen.nz>
4161
4162 * ioext.h: fix up prototypes.
4163 * ioext.c (scm_dup_to_fdes): renamed from scm_primitive_dup2.
4164 Scheme name is now dup->fdes.
4165 (scm_dup_to_fdes): make the second argument optional and
4166 fold in the functionality of scm_primitive_dup.
4167 (scm_primitive_dup): deleted.
4168
4169 Mon Jul 28 05:24:42 1997 Gary Houston <ghouston@actrix.gen.nz>
4170
4171 * fports.h (SCM_P): prototypes for scm_setvbuf, scm_setfileno.
4172 * fports.c (scm_setbuf0): don't disable the setbuf if MSDOS or
4173 ultrix are defined. Use setvbuf instead of setbuf.
4174 (scm_setvbuf): new procedure.
4175 (scm_init_fports): intern _IOFBF, _IOLBF, _IONBF.
4176 (scm_setfileno): moved from ioext.c.
4177 (scm_fgets): cast SCM_STREAM to (FILE *), remove unused lp variable.
4178 (top of file): Delete 25 lines of probably obsolete CPP hair for MSDOS.
4179
4180 Sun Jul 27 10:54:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
4181
4182 * fluids.c (scm_fluid_p): New function.
4183 * fluids.h (scm_fluid_p): New prototype.
4184
4185 Sat Jul 26 21:33:37 1997 Marius Vollmer <mvo@zagadka.ping.de>
4186
4187 * print.c (scm_iprin1): Enter printed structures into the print
4188 state as nested data while they are printed.
4189 (print_state_fluid, print_state_fluid_num): New variables.
4190 (scm_init_print): Initialize them.
4191 (scm_iprin): If print_state_fluid carries a print_state, use that
4192 instead of creating a new one.
4193 (scm_printer_apply, apply_stub, struct apply_data): New
4194 definitions to help with calling printer functions written in
4195 Scheme.
4196 * print.h (scm_printer_apply): New prototype.
4197
4198 * struct.c (scm_print_struct): Use scm_printer_apply to call the
4199 user defined struct printer.
4200
4201 * dynwind.c (scm_dowinds): Handle fluids on the wind list.
4202 * fluids.h (scm_internal_with_fluids, scm_with_fluids,
4203 scm_swap_fluids, scm_swap_fluids_reverse): New prototypes.
4204 * fluids.c (scm_internal_with_fluids, scm_with_fluids,
4205 scm_swap_fluids, scm_swap_fluids_reverse): New functions.
4206
4207 Fri Jul 25 12:05:46 1997 Marius Vollmer <mvo@zagadka.ping.de>
4208
4209 * fluids.c (scm_fluid_ref, scm_fluid_set_x): Fixed use of
4210 SCM_ASSERT: arg comes before pos.
4211
4212 Fri Jul 25 17:00:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
4213
4214 * eval.c (scm_apply): Handle the case when a tc7_sybr_2 is applied
4215 to a list of length zero correctly.
4216
4217 Wed Jul 23 16:17:46 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
4218
4219 Supply an `fgets' method for port objects to do fast line i/o.
4220 * ioext.c (scm_read_line): New function.
4221 * genio.c (scm_gen_read_line): New function.
4222 * fports.c (scm_fgets): New function.
4223 (scm_fptob, scm_pipob): Add scm_fgets method.
4224 * ports.c (fgets_void_port, scm_generic_fgets): New functions.
4225 (void_port_ptob): Add void fgets method.
4226 (scm_newptob): Initialize fgets method from ptob struct.
4227 * ports.h (scm_ptobfuns): Add fgets method.
4228 * vports.c (scm_sfptob): Supply generic fgets method.
4229 * strports.c (scm_stptob): Supply generic fgets method.
4230
4231 Mon Jul 21 04:03:42 1997 Gary Houston <ghouston@actrix.gen.nz>
4232
4233 * ioext.h: removed scm_duplicate_port prototype.
4234
4235 * ioext.c (scm_primitive_dup2): return the new file descriptor
4236 instead of SCM_UNSPECIFIED, since similarity to scm_primitive_dup
4237 is convenient.
4238 (scm_fdopen): bug fix: don't try to make port unbuffered until its
4239 stream has been set.
4240 (scm_duplicate_port): deleted, there's now an implementation in
4241 boot-9.scm.
4242 (scm_primitive_dup2): do nothing if newfd == oldfd.
4243
4244 Sun Jul 20 03:55:49 1997 Gary Houston <ghouston@actrix.gen.nz>
4245
4246 * filesys.c (scm_close): oops, don't call SCM_INUM twice on the
4247 argument.
4248
4249 * ioext.h: new prototypes.
4250 * ioext.c (scm_primitive_dup, scm_primitive_dup2): new procedures.
4251
4252 * fluids.c (next_fluid_num): don't do
4253 SCM_THREAD_CRITICAL_SECTION_START/END unless USE_THREADS is defined.
4254
4255 * ports.h: prototypes too.
4256 * ports.c (scm_mode_bits, scm_port_mode): moved from fports.c.
4257
4258 * fports.h: prototype too.
4259 * fports.c (scm_evict_ports): moved from ioext.c.
4260
4261 Sat Jul 19 04:56:52 1997 Gary Houston <ghouston@actrix.gen.nz>
4262
4263 * ports.c (scm_close_port): return a boolean instead of unspecified.
4264 throw an error if an error other than EBADF occurs.
4265
4266 * filesys.h: scm_close prototype.
4267 * filesys.c (scm_close): new procedure, can close file descriptors
4268 and ports (scsh compatible).
4269
4270 * ports.c (scm_flush_all_ports): SCM_PROC incorrectly allowed an
4271 optional argument.
4272
4273 Fri Jul 18 11:19:53 1997 Marius Vollmer <mvo@zagadka.ping.de>
4274
4275 * fluids.c, fluid.h: New files.
4276 * Makefile.am (libguile_la_SOURCES): Added "fluids.c".
4277 (modinclude_HEADERS): Added "fluids.h"
4278
4279 * init.c: Include "fluids.h". (scm_boot_guile_1): Added call to
4280 scm_init_fluids to initialize the fluid machine.
4281 (scm_start_stack): Initialize the fluids of the first root with
4282 scm_make_initial_fluids.
4283
4284 * root.h: Added "fluids" member to scm_root_state.
4285 * root.c: Include "fluids.h". (scm_mark_root): Mark "fluids".
4286 (scm_make_root): Call scm_copy_fluids to make fluid bindings
4287 unique for the new root when it has a parent.
4288
4289 * smob.h: Include "libguile/print.h" to make scm_print_state
4290 visible.
4291
4292 * dynl.c (free_dynl_obj): New function to free the dynamic object
4293 data. (dynl_smob): Use it.
4294 * dynl.c (scm_dynamic_link): Moved allocating of the memory for
4295 the dynamic object data below the linking of the object to avoid
4296 memory leak when the linking code throws an error. Now the code
4297 leaks a whole dynamically linked library when must_malloc throws,
4298 but that should be much less likely.
4299
4300 Fri Jul 11 00:19:47 1997 Jim Blandy <jimb@floss.red-bean.com>
4301
4302 Changes to compile under gnu-win32, from Marcus Daniels:
4303 * stime.c (tzset): If tzset isn't provided, make it a NOP.
4304 (scm_localtime): Change SCM_EOF to SCM_EOL.
4305 (scm_mktime): Likewise.
4306 * socket.c: Don't include sys/un.h unless autoconf tells
4307 us Unix domain sockets are available.
4308 (scm_fill_sockaddr): Ignore Unix domain code.
4309 (scm_addr_vector): Likewise.
4310 (scm_init_addr_buffer): Likewise.
4311 (scm_socketpair): Don't include unless socketpair was
4312 found during autoconf.
4313 * simpos.c (SYSTNAME): Treat cygwin like Unix.
4314 * scmsigs.c (scm_pause): Don't include unless pause was found
4315 during autoconf.
4316 * posix.c (scm_getgroups): Don't include unless support function
4317 was found during autoconf (in this case, getgroups).
4318 (scm_setpwent): For setpwent.
4319 (scm_setegid): For setegid.
4320 * net_db.c (scm_inet_netof): Don't include unless support
4321 function was found during autoconf (in this case, inet_netof).
4322 (scm_lnaof): For inet_lnaof.
4323 (scm_inet_makeaddr): For inet_makeaddr.
4324 (scm_getnet): For getnetent, getnetbyname, getnetbyaddr.
4325 (scm_getproto): For getprotoent.
4326 (scm_getserv): For getservent.
4327 (scm_sethost): For sethostent, endhostent.
4328 (scm_setnet): For setnetent, endnetent.
4329 (scm_setproto): For setprotoent, endprotoent.
4330 (scm_setserv): For setservent, endservent.
4331 * scmconfig.h.in: Regenerated.
4332
4333 Thu Jul 10 00:22:24 1997 Jim Blandy <jimb@floss.red-bean.com>
4334
4335 * stime.c (scm_localtime, scm_mktime): Pass SCM_EOL to
4336 scm_misc_error, not SCM_EOF.
4337
4338 * error.c (scm_wta): Pass SCM_EOL to scm_misc_error as the list of
4339 arguments for formatting the error message, not SCM_BOOL_F. I
4340 think this is left over from the (eq? '() #f) days.
4341
4342 * read.c (recsexpr): Give this a dummy definition if
4343 DEBUG_EXTENSIONS isn't #defined.
4344
4345 Fri Jul 4 23:42:17 1997 Marius Vollmer <mvo@zagadka.ping.de>
4346
4347 * coop-threads.c (scm_wait_condition_variable): Lock mutex again
4348 after waiting.
4349
4350 Thu Jul 3 16:31:24 1997 Marius Vollmer <mvo@zagadka.ping.de>
4351
4352 * root.c (cwdr_outer_body): Bugfix: Pass `c' instead of `&c' to
4353 scm_internal_catch.
4354
4355 Sat Jun 28 16:14:09 1997 Tim Pierce <twp@twp.tezcat.com>
4356
4357 * Makefile.am (libguile_la_LIBADD): Remove @ALLOCA@, since
4358 alloca.lo will be included in @LIBLOBJS@. Something better than
4359 this should be possible.
4360 * Makefile.in: Regenerated.
4361
4362 Sat Jun 28 03:40:15 1997 Gary Houston <ghouston@actrix.gen.nz>
4363
4364 * simpos.h: prototype for scm_primitive_exit.
4365 * simpos.c (scm_primitive_exit): new procedure, terminates the
4366 process without unwinding the stack.
4367
4368 Sat Jun 28 03:45:25 1997 Tim Pierce <twp@twp.tezcat.com>
4369
4370 * regex-posix.c (scm_make_regexp): Make `flags' a variable-length
4371 argument and logior its components together, so the user doesn't
4372 have to do this explicitly. Also, if regexp/basic is supplied, then
4373 turn off REG_EXTENDED.
4374 (scm_init_regex_posix): New regexp/basic symbol.
4375 (REG_BASIC): #define this if it is not already present.
4376
4377 Fri Jun 27 20:36:35 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
4378
4379 * Makefile.am (libguile_la_LIBADD): Include @ALLOCA@.
4380 (MOSTLYCLEANFILES): New target, changed from CLEANFILES.
4381 (CLEANFILES): New target, clean versiondat.h, libpath.h.
4382 (DISTCLEANFILES): New target, clean *.x.
4383 * Makefile.in: Regenerated.
4384
4385 Tue Jun 24 00:29:07 1997 Jim Blandy <jimb@floss.red-bean.com>
4386
4387 * script.c (scm_compile_shell_switches): Add 1997 to copyright
4388 years in usage message.
4389
4390 * Makefile.am (libguile_la_LDFLAGS): Bump library version.
4391 * Makefile.in: Regenerated.
4392
4393 * regex-posix.c (scm_init_regex_posix): Delete the regexp/nosub
4394 flag; I don't think we support it.
4395 (scm_make_regexp): Make sure the user doesn't pass the
4396 regexp/nosub flag.
4397
4398 * regex-posix.c (scm_make_regexp, scm_regexp_exec): Add optional
4399 FLAGS arguments.
4400 (scm_init_regex_posix): Define constants for the REG_mumble flags;
4401 name them according to the SCSH convention: regexp/mumble.
4402
4403 * regex-posix.h (scm_make_regexp, scm_regexp_exec): Update prototypes.
4404
4405 Mon Jun 23 18:44:49 1997 Jim Blandy <jimb@floss.red-bean.com>
4406
4407 * Makefile.am (libpath.h): Include the values of all the standard
4408 Makefile directory variables. Print a message, but don't print
4409 all the commands.
4410 (versiondat.h): Print a message, but don't print all the commands.
4411 * load.c: #include "alist.h".
4412 (init_build_info): New function.
4413 (scm_init_load): Call it.
4414 * Makefile.in: Regenerated.
4415
4416 Sun Jun 22 19:12:58 1997 Jim Blandy <jimb@floss.red-bean.com>
4417
4418 * root.c: Establish a reliable catch-all handler for the new root.
4419 After all the Scheme handler function might signal an error too,
4420 and we don't want to lose that.
4421 (cwdr_inner_body): Renamed from cwdr_body.
4422 (cwdr_outer_body): New function, to establish the user's handler,
4423 and pass control to cwdr_inner_body.
4424 (cwdr): Establish the reliable catch-all handler here, and pass
4425 control to cwdr_outer_body.
4426 (struct cwdr_body_data): New field, handler, to allow cwdr to pass
4427 the user's handler through to cwdr_outer_body.
4428 * throw.c (scm_handle_by_message): Move guts into....
4429 (handler_message): New static function.
4430 (scm_handle_by_message_noexit): New function.
4431 * throw.h (scm_handle_by_message_noexit): New prototype.
4432
4433 * __scm.h: (SCM_FENCE): New macro: optimizer will not move code
4434 across this. Only works on GCC. Otherwise, we hope for the best.
4435 (SCM_DEFER_INTS, SCM_ALLOW_INTS): Use FENCE appropriately. I have
4436 the feeling that real thread systems will not need this...
4437
4438 Sun Jun 22 15:46:35 1997 Jim Blandy <jimb@floss.red-bean.com>
4439
4440 Try to detect when people are using one version of libguile and a
4441 different version of ice-9. People have been skewing things and
4442 sending in bug reports.
4443 * Makefile.am (versiondat.h): New file to generate.
4444 * version.c: #include "versiondat.h", to get version info.
4445 (scm_libguile_config_stamp): New function.
4446 * script.c: #include "version.h".
4447 (scm_compile_switches): Call scm_version to get version number.
4448 * scmconfig.h.in, Makefile.in: Regenerated.
4449 * Makefile.in: Regenerated.
4450
4451 * Makefile.am (ETAGS_ARGS): Catch SCM_PROC, etc. so we can find
4452 primitive definitions under their Scheme names.
4453
4454 * Makefile.am (libguile_la_LDFLAGS): Update library version to
4455 1:2. Helps avoid confusion between installed and uninstalled libs.
4456
4457 * scmconfig.h.in: Regenerated. (Needed after June 3 change to
4458 ../configure.in.)
4459
4460 * gdb_interface.h (GDB_INTERFACE): Remove semicolon and trailing
4461 backslash from definition; this should be used like: GDB_INTERFACE;
4462
4463 Sun Jun 22 04:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
4464
4465 * ioext.c (scm_duplicate_port): bug fix: don't try to make the
4466 new port unbuffered until its stream has been set.
4467
4468 Sat Jun 21 18:44:03 1997 Gary Houston <ghouston@actrix.gen.nz>
4469
4470 * ports.h: new prototype.
4471 * ports.c (scm_flush_all_ports): new procedure, scsh compatible.
4472
4473 Sat Jun 21 00:25:03 1997 Jim Blandy <jimb@floss.red-bean.com>
4474
4475 Make things compile neatly under Sun's C compiler.
4476 * dynl.c (scm_dynamic_func): Cast return value from sysdep_dynl_func.
4477 * extchrs.c (xmbtowc): Make the second arg a normal char, not
4478 unsigned, because that's what the ANSI function takes.
4479 * extchrs.h (xmbtowc): Corresponding change to prototype.
4480 * genio.c (scm_gen_getc): Make buf plain chars. Nobody wants
4481 uchars here.
4482 * mbstrings.c (scm_mb_ilength): Use ANSI arg syntax. Make DATA
4483 argument plain char *.
4484 * strings.c (scm_string): Use SCM_ROCHARS, since c is a plain
4485 char.
4486 * tag.c (scm_tag): Remove unreachable statement.
4487 * unif.c (scm_array_to_list): If we want to shift a 1 bit to the
4488 top of the word, it should be unsigned.
4489
4490 * eval.c (scm_lookupcar1): Don't declare var2 unless USE_THREADS
4491 is defined, to avoid warnings; it's only used in the
4492 conflict-checking code. Which might go away anyway.
4493 (SCM_CEVAL): All goto's targeting the `dispatch' label are in
4494 conditionals; put the label definition in an #if too, to stifle
4495 warnings.
4496
4497 * Makefile.am (EXTRA_DIST): Include ChangeLog-gh and
4498 ChangeLog-threads in the distribution.
4499 * Makefile.in: Regenerated.
4500
4501 Fri Jun 20 10:03:41 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
4502
4503 * guile-snarf.in: Changed regexp to support CPPs that insert
4504 whitespace between lexical tokens (which munges the `%%%' snarf
4505 cookie).
4506
4507 Tue Jun 17 13:49:56 1997 Tim Pierce <twpierce@bio-5.bsd.uchicago.edu>
4508
4509 * load.c (scm_init_load_path): Append $(datadir)/guile to
4510 %load-path, so modules do not have to be installed in Guile's
4511 current version directory.
4512
4513 Mon Jun 16 17:20:55 1997 Marius Vollmer <mvo@zagadka.ping.de>
4514
4515 * dynl.c (scm_dynamic_call, scm_dynamic_args_call): Wrap dynamic
4516 function call in SCM_DEFER_INTS/SCM_ALLOW_INTS.
4517 (scm_dynamic_link, scm_dynamic_unlink, scm_dynamic_func): Always
4518 call the sysdep functions with deferred ints.
4519 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c (sysdep_dynl_link,
4520 sysdep_dynl_unlink, sysdep_dynl_func): Expect to be called with
4521 deferred interrupts and insert SCM_ALLOW_INTS before throwing an
4522 error.
4523
4524 * dynl.c (scm_dynamic_unlink, scm_dynamic_call): Return
4525 SCM_UNSPECIFIED.
4526
4527 Sat Jun 14 19:00:58 1997 Gary Houston <ghouston@actrix.gen.nz>
4528
4529 * scmsigs.c (sys_deliver_signals): add a comment about a probable bug.
4530
4531 Wed Jun 11 00:33:00 1997 Jim Blandy <jimb@floss.red-bean.com>
4532
4533 * Makefile.in: Regenerated after xtra_PLUGIN_guile_libs change in
4534 ../configure.in.
4535
4536 Sun Jun 8 14:37:26 1997 Marius Vollmer <mvo@zagadka.ping.de>
4537
4538 * eval.c (scm_lookupcar1): New procedure to cope with a race
4539 condition during lookup (when using threads).
4540 (scm_lookupcar): Implement in terms of scm_lookupcar1.
4541 (SCM_CEVAL): Use scm_lookupcar1 instead of scm_lookupcar in one
4542 place.
4543
4544 Fri Jun 6 19:05:07 1997 Jim Blandy <jimb@totoro.cyclic.com>
4545
4546 * regex-posix.c (scm_regexp_exec): Use the `start' argument if
4547 supplied. (Change from Tim Pierce.)
4548
4549 Thu Jun 5 16:38:19 1997 Marius Vollmer <mvo@zagadka.ping.de>
4550
4551 * struct.c (init_struct): Forget to mention this in the "Wed Jun 4
4552 23:47:01 1997" changelog: Slots are now initialized with `#f' by
4553 default and not `()'. `#f' is the canonical non-value in Scheme,
4554 right?
4555
4556 Wed Jun 4 23:47:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
4557
4558 * struct.c (struct_printer): New variable that holds a handle on
4559 the Scheme variable *struct-printer*. This variable can be set by
4560 Scheme code to override the printing of structures.
4561 (scm_print_struct): If struct_printer is set, call it. If it is
4562 not set, or returns #f, print the structure in the old fashion.
4563 Include "eval.h" for scm_apply.
4564
4565 Tue Jun 3 23:01:39 1997 Marius Vollmer <mvo@zagadka.ping.de>
4566
4567 * struct.c (scm_struct_ref, scm_struct_set_x): Use
4568 scm_struct_i_n_words to get the number of fields, not
4569 -scm_struct_n_extra_words.
4570
4571 On the route to fancier struct printing:
4572 * struct.c (scm_print_struct): New function to print a structure.
4573 Include "genio.h" to support it. This function doesn't do
4574 anything interesting right now, but I think it should be here
4575 anyway.
4576 * struct.h: Include "print.h" and add prototype for
4577 scm_print_struct.
4578 * print.c (scm_iprin1): Call scm_print_struct instead of trying to
4579 print structures ourself.
4580
4581 Sun Jun 1 07:58:41 1997 Gary Houston <ghouston@actrix.gen.nz>
4582
4583 * scmsigs.c (sys_deliver_signals): bug fix: reset got_signal[i]
4584 before applying the handler in case it doesn't return.
4585
4586 Sat May 31 18:57:51 1997 Gary Houston <ghouston@actrix.gen.nz>
4587
4588 * scmsigs.h, async.h: updated.
4589
4590 * _scm.h: if HAVE_RESTARTS is defined then don't use a SYSCALL
4591 loop.
4592
4593 * posix.c (scm_uname): interpret only negative values as an error.
4594 Solaris normally returns a positive value.
4595
4596 * script.c (scm_compile_shell_switches): if we are not going into
4597 an interactive repl, set scm_mask_ints to zero so that asyncs can
4598 run.
4599
4600 * simpos.c (scm_system): don't ignore/unignore signals around
4601 the "system" call.
4602
4603 * posix.c (scm_open_pipe): don't ignore/unignore signals around
4604 the "popen" call.
4605
4606 * init.c (scm_boot_guile_1): don't call scm_init_signals, it's
4607 done in boot-9.scm instead.
4608
4609 * scmsigs.c, async.c: Major rewriting of signal handling code.
4610 (scm_sigaction): new procedure.
4611 (scm_sleep): don't wrap sleep in SCM_SYSCALL, it would mess up the
4612 timing.
4613 (scm_raise): return unspecified, throw error on failure.
4614
4615 Thu May 29 02:47:36 1997 Jim Blandy <jimb@floss.cyclic.com>
4616
4617 * regex-posix.c (scm_init_regex_posix): Register the "regex"
4618 feature, to help boot-9.scm decide whether to import the regex
4619 module.
4620
4621 Thu May 29 02:19:40 1997 Jim Blandy <jimb@floss.cyclic.com>
4622
4623 * eval.c: Include scmconfig.h at the beginning of the file so that
4624 HAVE_ALLOCA_H may properly be defined. Thanks to Bill Janssen for
4625 pointing this out.
4626
4627 * regex-posix.c: #include "_scm.h" before conditionally #including
4628 <regex.h>; the former defines HAVE_REGCOMP.
4629
4630 * regex-posix.c: #include <regex.h> conditionally, so the file is
4631 CPP'able (for dependency scanning) even on systems that don't have
4632 a <regex.h> header.
4633
4634 Tue May 27 23:48:38 1997 Jim Blandy <jimb@floss.cyclic.com>
4635
4636 Add new R4RS-compliant syntax for keywords.
4637 * read.c (scm_lreadr): Recognize `#:' as a prefix for keywords,
4638 regardless of the setting of the `keywords' read option.
4639 * kw.c (prin_kw): Print keywords using the `#:' syntax, so they
4640 can be re-read no matter what the setting of the `keywords' read
4641 option.
4642
4643 Tue May 27 22:47:31 1997 Tim Pierce <twp@twp.tezcat.com>
4644
4645 Add support for POSIX regular expressions.
4646
4647 * regex-posix.c, regex-posix.h: New files. (Some code
4648 is taken liberally from rx/rgx.c in the old Guile dist.)
4649
4650 * init.c: Include regex-posix.h.
4651 (scm_boot_guile_1): Call scm_init_regex_posix.
4652
4653 * Makefile.am (EXTRA_libguile_la_SOURCES, modinclude_HEADERS):
4654 Add regex-posix.[ch] sources.
4655 * Makefile.in: Regenerated.
4656
4657 * scmconfig.h.in: Add HAVE_REGCOMP macro. (automake is supposed
4658 to do this automatically? It didn't for me, bleh.)
4659
4660 Mon May 26 18:51:29 1997 Jim Blandy <jimb@floss.cyclic.com>
4661
4662 * fports.c (print_pipe_port): New function.
4663 (scm_fptob): Use print_pipe_port instead of scm_prinport; the
4664 latter doesn't even take the right arguments.
4665
4666 * Makefile.am: Increment shared lib revision number. I think
4667 sometimes the uninstalled Guile finds the installed shared lib;
4668 Gord says doing this might help. As things turned out, I can't
4669 say whether it does.
4670 * Makefile.in: Regenerated.
4671
4672 * gh_init.c (gh_enter): Cast c_main_prog to a void * before
4673 passing it as the closure argument to scm_boot_guile. (Bill
4674 Janssen)
4675
4676 * ports.c (print_void_port, putc_void_port, puts_void_port,
4677 write_void_port, flush_void_port, getc_void_port, close_void_port,
4678 noop0): Use ANSI prototypes instead of K&R declarations, so the
4679 initialization of void_port_ptob gets aggressively type-checked.
4680 Fix arguments of print_void_port and write_void_port. (Bill
4681 Janssen)
4682
4683 * COPYING, __scm.h, _scm.h, alist.c, alist.h, append.c, append.h,
4684 appinit.c, arbiters.c, arbiters.h, async.c, async.h, backtrace.c,
4685 backtrace.h, boolean.c, boolean.h, chars.c, chars.h,
4686 continuations.c, continuations.h, coop-defs.h, coop-threads.c,
4687 coop-threads.c.cygnus, coop-threads.h, coop-threads.h.cygnus,
4688 coop.c, debug.c, debug.h, dynl-dl.c, dynl-dld.c, dynl-shl.c,
4689 dynl-vms.c, dynl.c, dynl.h, dynwind.c, dynwind.h, eq.c, eq.h,
4690 error.c, error.h, eval.c, eval.h, extchrs.h, feature.c, feature.h,
4691 filesys.c, filesys.h, fports.c, fports.h, fsu-pthreads.h, gc.c,
4692 gc.h, gdbint.c, gdbint.h, genio.c, genio.h, gh.h, gh_data.c,
4693 gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c, gh_list.c,
4694 gh_predicates.c, gh_test_c.c, gh_test_repl.c, gscm.c, gscm.h,
4695 gsubr.c, gsubr.h, guile.c, hash.c, hash.h, hashtab.c, hashtab.h,
4696 init.c, init.h, ioext.c, ioext.h, kw.c, kw.h, libguile.h, list.c,
4697 list.h, load.c, load.h, mallocs.c, mallocs.h, markers.c,
4698 markers.h, mbstrings.c, mbstrings.h, mit-pthreads.c,
4699 mit-pthreads.h, net_db.c, net_db.h, numbers.c, numbers.h,
4700 objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
4701 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
4702 procprop.h, procs.c, procs.h, putenv.c, ramap.c, ramap.h, read.c,
4703 read.h, root.c, root.h, scmhob.h, scmsigs.c, scmsigs.h, script.c,
4704 script.h, sequences.c, sequences.h, simpos.c, simpos.h, smob.c,
4705 smob.h, snarf.h, socket.c, socket.h, srcprop.c, srcprop.h,
4706 stackchk.c, stackchk.h, stacks.c, stacks.h, stime.c, stime.h,
4707 strings.c, strings.h, strop.c, strop.h, strorder.c, strorder.h,
4708 strports.c, strports.h, struct.c, struct.h, symbols.c, symbols.h,
4709 tag.c, tag.h, tags.h, threads.c, threads.h, throw.c, throw.h,
4710 unif.c, unif.h, variable.c, variable.h, vectors.c, vectors.h,
4711 version.c, version.h, vports.c, vports.h, weaks.c, weaks.h: New
4712 address for FSF.
4713
4714 Mon May 26 12:37:30 1997 Jim Blandy <jimb@floss.cyclic.com>
4715
4716 * script.c (scm_find_executable): Use prototype-style definition
4717 here; apparently it's not quite right to have const in a prototype
4718 and then use a K&R declaration. I wonder if stuff like this will
4719 go away if we compile with -Wrequire-prototypes, or whatever that
4720 is... (Bernard URBAN)
4721
4722 * scmhob.h: New text from Bernard URBAN.
4723
4724 Sat May 17 17:14:36 1997 Jim Blandy <jimb@floss.cyclic.com>
4725
4726 * script.c: Don't #define const on hpux. Configure takes care of
4727 this. (Thanks to Larry Schwimmer.)
4728
4729 * script.c: Use the HAVE_UNISTD_H symbol provided by autoconf to
4730 decide whether to #include <unistd.h>, instead of listing a bunch
4731 of systems. Don't #include stdio twice. Removed dyked-out
4732 definition of scm_find_impl_file.
4733
4734 Fri May 16 03:06:08 1997 Jim Blandy <jimb@floss.cyclic.com>
4735
4736 * Makefile.am (libguile_la_LDFLAGS): Update libguile's shared
4737 library version info to 1:0.
4738 * Makefile.in: Regenerated.
4739
4740 * backtrace.c, backtrace.h, debug.c, debug.h, eq.c,
4741 gdb_interface.h, gdbint.c, gdbint.h, gh_data.c, gh_init.c,
4742 gh_io.c, gh_list.c, gh_predicates.c, gh_test_c.c, gh_test_repl.c,
4743 init.c, net_db.c, options.c, options.h, ports.c, print.c, read.c,
4744 script.h, snarf.h, srcprop.c, srcprop.h, stacks.c, stacks.h,
4745 throw.c: Update copyright years; these files have been worked on
4746 significantly in 1997, but only had copyright years for 1996.
4747 Also, change name of copyright holder on some from Mikael
4748 Djurfeldt to Free Software Foundation; he has signed papers
4749 assigning the changes to the FSF.
4750
4751 * script.c (scm_shell_usage): Pass FATAL to exit. There's no
4752 reason not to give the user the option.
4753
4754 * net_db.c (scm_gethost, scm_getnet, scm_getproto, scm_getserv):
4755 Return #f on end-of-file when scanning table (i.e. when called
4756 with no arguments). Try to catch errors, when we can.
4757 * posix.c (scm_getgrgid, scm_getpwuid): Same.
4758
4759 * script.h (scm_shell_usage, scm_compile_shell_switches): New
4760 external declarations. These are useful.
4761
4762 Thu May 15 05:21:36 1997 Gary Houston <ghouston@actrix.gen.nz>
4763
4764 * posix.c: don't include <sys/select.h> or define macros for
4765 select, since they were not used in this file.
4766
4767 * filesys.c (scm_select): make the fifth parameter microseconds,
4768 not milliseconds. let the fourth parameter be either a real value
4769 or an integer or #f. The first, second and third arguments can
4770 now be vectors: the type of the corresponding return set will be
4771 the same.
4772 (set_element, get_element): new static procedures.
4773
4774 Wed May 14 12:18:12 1997 Jim Blandy <jimb@floss.cyclic.com>
4775
4776 * strports.c (scm_eval_string): New function.
4777 (scm_eval_0str): Trivially re-implemented in terms of
4778 scm_eval_string.
4779 * strports.h (scm_eval_string): New extern decl.
4780
4781 * net_db.c (h_errno): Add extern decl for this.
4782
4783 * fports.c (local_pclose): New function.
4784 (scm_pipob): Use it in the initializer here.
4785
4786 From Tim Pierce:
4787 * net_db.c (scm_gethost, scm_getproto, scm_getnet, scm_getserv):
4788 Use a meaningful error message when signalling an error. For
4789 this, scm_gethost must check h_errno rather than errno.
4790
4791 Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
4792
4793 * Makefile.in: Regenerated, using automake-1.1p.
4794
4795 Tue May 13 04:34:52 1997 Gary Houston <ghouston@actrix.gen.nz>
4796
4797 * socket.c (scm_addr_vector): use SCM_UNDEFINED in scm_listify,
4798 not SCM_UNSPECIFIED.
4799
4800 * script.c (scm_compile_shell_switches): don't append (quit) if
4801 interactive.
4802 (scm_shell): call scm_exit_status and exit on the result of the
4803 evaluation.
4804
4805 Mon May 12 17:23:58 1997 Jim Blandy <jimb@floss.cyclic.com>
4806
4807 Ensure that shared substrings are handled properly when passed to
4808 a system call or other foreign function. Many thanks to Tim
4809 Pierce!
4810 * symbols.h (SCM_COERCE_SUBSTR): new macro.
4811 * filesys.c (scm_chmod, scm_rename, scm_delete_file, scm_mkdir,
4812 scm_rmdir, scm_opendir, scm_chdir, scm_symlink, scm_readlink,
4813 scm_lstat), ports.c (scm_sys_make_void_port), posix.c (scm_utime,
4814 scm_putenv, scm_setlocale, scm_mknod), stime.c (setzone,
4815 scm_strftime), vports.c (scm_make_soft_port), backtrace.c
4816 (scm_display_error_message): use RO macros when strings may be RO.
4817 * error.c (scm_error_scm), filesys.c (scm_chown, scm_chmod,
4818 scm_rename, scm_delete_file, scm_mkdir, scm_rmdir, scm_opendir,
4819 scm_chdir, scm_symlink, scm_readlink, scm_lstat), ioext.c
4820 (scm_freopen, scm_duplicate_port, scm_fdopen), net_db.c
4821 (scm_gethost, scm_getnet, scm_getproto, scm_getserv), ports.c
4822 (scm_sys_make_void_port), posix.c (scm_getgrgid, scm_utime,
4823 scm_setlocale, scm_mknod), stime.c (setzone, scm_strptime,
4824 scm_strftime), vports.c (scm_make_soft_port): use
4825 SCM_COERCE_SUBSTR to make sure shared substrings are
4826 null-terminated.
4827
4828 Mon May 12 15:33:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
4829
4830 * error.c (scm_error): Add newline to error message.
4831
4832 * init.c (scm_init_standard_ports): Doc fix.
4833
4834 Thu May 8 14:38:01 1997 Marius Vollmer <mvo@zagadka.ping.de>
4835
4836 * dynl-shl.c: Completely replaced with new code from Bernard
4837 URBAN.
4838
4839 * script.c (scm_ice_9_already_loaded): New variable.
4840 (scm_compile_shell_switches): Use it.
4841
4842 Mon May 5 20:35:08 1997 Gary Houston <ghouston@actrix.gen.nz>
4843
4844 * filesys.c (scm_input_waiting_p): add missing third argument to
4845 scm_misc_error.
4846
4847 * stime.c (scm_localtime): copy the result of localtime before
4848 calling gmtime in case they share a buffer.
4849 (scm_localtime, scm_mktime): throw an error if neither HAVE_TM_ZONE
4850 nor HAVE_TZNAME.
4851
4852 Fri May 2 19:07:11 1997 Gary Houston <ghouston@actrix.gen.nz>
4853
4854 * eq.c (scm_equal_p): use SCM_TYP7SD (y) not SCM_TYP7SD (x).
4855
4856 Thu May 1 17:01:45 1997 Jim Blandy <jimb@floss.cyclic.com>
4857
4858 * Makefile.am (check-local): New target, which causes 'make check'
4859 to run gh_test_c and gh_test_repl, with some trivial input.
4860 * Makefile.in: Rgnrtd.
4861
4862 Tue Apr 29 19:00:40 1997 Marius Vollmer <mvo@zagadka.ping.de>
4863
4864 * dynl.c (print_dynl_obj): Indicate whether the dynamic object has
4865 been unlinked.
4866
4867 Mon Apr 28 06:10:14 1997 Gary Houston <ghouston@actrix.gen.nz>
4868
4869 * async.c (scm_sys_tick_async_thunk): commented out. I'm not
4870 sure how this was supposed to work.
4871 (scm_async_click): don't send SCM_TICK_SIGNAL.
4872 (scm_init_async): don't initialize %tick-thunk.
4873
4874 * the following change doesn't affect the Scheme interface:
4875 gc-thunk is called at the end of garbage collection. however it's
4876 no longer implemented by pretending it's a signal.
4877
4878 * gc.c (scm_gc_end): don't call scm_take_signal. instead mark the
4879 system async corresponding to scm_gc_thunk.
4880 * async.h: declare scm_gc_async.
4881 * async.c (scm_sys_gc_async_thunk): apply the thunk named by
4882 gc-thunk directly, instead of going through a signal handler.
4883 (scm_gc_async): new variable, points to the GC system-async.
4884 (scm_init_async): save the GC async as scm_gc_async instead
4885 of using system_signal_asyncs.
4886 (scm_gc_vcell): new variable, stores the gc-thunk vcell.
4887
4888 Mon Apr 28 19:14:44 1997 Jim Blandy <jimb@floss.cyclic.com>
4889
4890 * Makefile.am (libpath.h, cpp_err_symbols.c, cpp_sig_symbols.c):
4891 Don't screw up if we're interrupted.
4892 * Makefile.in: Regeneradet.
4893
4894 Sun Apr 27 17:57:15 1997 Jim Blandy <jimb@floss.cyclic.com>
4895
4896 * aclocal.m4: Removed; unnecessary, given changes of Apr 24.
4897
4898 * Makefile.am (modincludedir): Use "ice-9" instead of "@module@";
4899 we're not using AM_INIT_GUILE_MODULE any more.
4900 * Makefile.in: Reneregated.
4901
4902 Thu Apr 24 00:41:08 1997 Jim Blandy <jimb@floss.cyclic.com>
4903
4904 Functions for finding variable bindings, grace à Tim Pierce.
4905 * gh_data.c (gh_lookup, gh_module_lookup): New functions.
4906 * gh.h (gh_lookup, gh_module_lookup): New prototypes.
4907
4908 Get 'make dist' to work again.
4909 * Makefile.am (EXTRA_DIST): Remove PLUGIN files.
4910 * Makefile.in: Regenerated, like a surry without a fringe on top.
4911
4912 Changes for reduced Guile distribution: one configure script,
4913 no plugins.
4914 * configure.in, configure: Removed.
4915 * acconfig.h, acinclude.m4: Moved to parent directory, where the
4916 real configure script lives.
4917 * Makefile.in, scmconfig.h.in: Regenerated.
4918
4919 * init.c: #include "script.h", to get prototype for script.c's
4920 init function.
4921
4922 Wed Apr 23 21:25:39 1997 Jim Blandy <jimb@floss.cyclic.com>
4923
4924 * gh_data.c (gh_scm2newstr, gh_symbol2newstr): Use
4925 scm_must_malloc, not raw malloc.
4926
4927 * script.c (scm_compile_shell_switches): Dyke out debugging output
4928 code.
4929
4930 Mon Apr 21 05:00:32 1997 Gary Houston <ghouston@actrix.gen.nz>
4931
4932 * eq.c (scm_equal_p): use "SCM_TYP7SD", not "SCM (TYP7SD".
4933
4934 * stime.c: include both <sys/times.h> and <sys/timeb.h> if the
4935 system has them. Hope this is safe. Previously
4936 sys/timeb.h was included if HAVE_FTIME was defined or if
4937 HAVE_SYS_TIMEB_H was defined but HAVE_SYS_TIMES_H was not,
4938 but IRIX iris 5.3 apparently has ftime but not sys/timeb.h.
4939
4940 * ioext.c (scm_setfileno): add missing third argument to
4941 scm_misc_error call.
4942
4943 Sun Apr 20 15:09:31 1997 Jim Blandy <jimb@totoro.cyclic.com>
4944
4945 * eq.c (scm_equal_p): Correctly compare strings of different
4946 varieties. (Thanks to Tim Pierce.)
4947
4948 Sat Apr 19 03:59:02 1997 Jim Blandy <jimb@floss.cyclic.com>
4949
4950 * read.c (skip_scsh_block_comment): SCSH says the !# that ends a
4951 #! block comment must occur on a line all by itself.
4952
4953 Move most of the guts of shell command processing into libguile,
4954 so guile.c can be very small (and eventuallly auto-generated. (I
4955 mean, generated mechanically, not self-generated. Hmm.))
4956 * guile.c, script.c, script.h: New source files.
4957 * init.c (scm_boot_guile_1): Call scm_init_script.
4958 * libguile.h: #include "script.h".
4959 * Makefile.am (bin_PROGRAMS, guile_SOURCES, guile_LDADD): New
4960 targets, for new executable.
4961 (libguile_la_SOURCES): Mention script.c.
4962 (modinclude_HEADERS): Add script.h.
4963 * configure.in: Always check for -lm, -lsocket, -lnsl, whether or
4964 not dynamic linking is enabled. This is because we're generating
4965 executables now. Move CY_AC_WITH_THREADS call after those, so the
4966 values of cy_cv_threads_libs captures the libs chosen above.
4967 * Makefile.in, configure, aclocal.m4: Regenerated.
4968
4969 * Makefile.am (EXTRA_DIST): Don't distribute gscm.c or gscm.h.
4970 We don't maintain this interface any more, and it just confuses
4971 people.
4972
4973 * alloca.c: #include <scmconfig.h>, not <config.h>.
4974 * Makefile.am (EXTRA_libguile_la_SOURCES): Mention alloca.c, so
4975 it'll get included in disties.
4976
4977 Thu Apr 17 17:45:10 1997 Jim Blandy <jimb@totoro.cyclic.com>
4978
4979 * gscm.c, gscm.h: These aren't supported any more, and shouldn't
4980 be distributed, because they confuse people.
4981 * Makefile.am (EXTRA_DIST): Remove gscm.c, gscm.h.
4982
4983 Sat Apr 19 11:56:18 1997 Tim Pierce <twp@twp.tezcat.com>
4984
4985 * configure.in: check for presence of gethostent (not present on
4986 OpenBSD by default).
4987 * net_db.c (scm_gethost): Check HAVE_GETHOSTENT.
4988 * configure, scmconfig.h.in: Regenerated.
4989
4990 Wed Apr 16 17:52:38 1997 Jim Blandy <jimb@floss.cyclic.com>
4991
4992 * backtrace.c (scm_backtrace): Split message string across
4993 newlines properly. GCC is more tolerant of this than other
4994 compilers.
4995
4996 Mon Apr 14 20:20:14 1997 Jim Blandy <jimb@floss.cyclic.com>
4997
4998 Merge threads directory into libguile.
4999 * coop-defs.h, coop-threads.c, coop-threads.h, coop.c, threads.c,
5000 threads.h: New source files.
5001 * Makefile.am (EXTRA_libguile_la_SOURCES): Add threads.c.
5002 (noinst_HEADERS): Add coop-threads.c, coop-threads.h, coop.c
5003 here; see comment.
5004 (modinclude_HEADERS): Add threads.h, coop-defs.h.
5005 (EXTRA_DIST): Add fsu-pthreads.h, mit-pthreads.c, mit-pthreads.h,
5006 coop-threads.c.cygnus, coop-threads.h.cygnus.
5007 * configure.in: If we're using threads, include threads.o in
5008 LIBOBJS.
5009 * _scm.h, libguile.h: threads.h lives in this directory now.
5010 * fsu-pthreads.h, mit-pthreads.c, mit-pthreads.h,
5011 coop-threads.c.cygnus, coop-threads.h.cygnus: New files, not
5012 currently used, but brought along for information's sake.
5013 * ChangeLog-threads: log from old 'threads' directory.
5014 * Makefile.in, configure: Rebuilt.
5015
5016 Mon Apr 14 20:15:29 1997 Jim Blandy <jimb@totoro.cyclic.com>
5017
5018 * stime.c (scm_mktime): #ifndef HAVE_TM_ZONE, Use lt.tm_zone, not
5019 lt->tm_zone.
5020
5021 Mon Apr 14 01:32:57 1997 Jim Blandy <jimb@floss.cyclic.com>
5022
5023 * gh_init.c (gh_standard_handler): Return SCM_BOOL_F, not garbage.
5024
5025 Merge GH interface library into libguile.
5026 * gh.h, gh_data.c, gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c,
5027 gh_list.c, gh_predicates.c, gh_test_c.c, gh_test_repl.c: New files.
5028 * Makefile.am (libguile_la_SOURCES): Add gh_data.c, gh_eval.c,
5029 gh_funcs.c, gh_init.c, gh_io.c, gh_list.c, gh_predicates.c. Move
5030 _scm.h to ...
5031 (EXTRA_libguile_la_SOURCES): ... here.
5032 (pkginclude_HEADERS): Add variable, to get gh.h installed.
5033 (THREAD_LIBS, check_ldadd, check_PROGRAMS, gh_test_c_SOURCES,
5034 gh_test_c_LDADD, gh_test_repl_SOURCES, gh_test_repl_LDADD):
5035 New variables, describing how to build the gh test programs.
5036 * configure.in: Check for -lm, -lsocket, -lnsl; we need this to
5037 build the test programs, and we probably should have been linking
5038 libguile.la against them all along, to support AIX shared libs.
5039 Add cflags for threads to CFLAGS; add libs for threads to new
5040 variable THREAD_LIBS, used in Makefile.am.
5041 * ChangeLog-gh: log from old `gh' subdirectory.
5042 * Makefile.in, configure, scmconfig.h.in: Rebuilt.
5043
5044 Sun Apr 13 23:03:55 1997 Jim Blandy <jimb@floss.cyclic.com>
5045
5046 * acconfig.h: Undo change of Apr 9; including the definition of
5047 PACKAGE in the guile headers conflicts with applications' own
5048 definitions.
5049 * scmconfig.h.in: Regenerated.
5050
5051 Fri Apr 11 14:12:13 1997 Jim Blandy <jimb@floss.cyclic.com>
5052
5053 * filesys.c (scm_fcntl): New function from Roland McGrath.
5054 (scm_init_filesys): New symbols for use with fcntl.
5055 * filesys.h: Added prototype.
5056
5057 * eval.c (SCM_APPLY): Set debug apply frame argument list correctly
5058 when PROC is receiving no arguments.
5059
5060 Fri Apr 11 19:39:32 1997 Jim Blandy <jimb@totoro.cyclic.com>
5061
5062 * filesys.c (S_ISSOCK): Define this if it's missing, but we do
5063 have S_IFSOCK. This is the case under Ultrix.
5064
5065 * posix.c (scm_status_exit_val, scm_status_exit_val,
5066 scm_status_term_sig, scm_status_stop_sig): Modified to work with
5067 Ultrix versions of WIFSTOPPED, etc., which assume that their
5068 arguments are lvalues (hmm).
5069
5070 Thu Apr 10 15:10:07 1997 Jim Blandy <jimb@floss.cyclic.com>
5071
5072 * eval.c: Doc fixes.
5073
5074 * throw.c: Doc fixes; rearranged.
5075
5076 * putenv.c: #include "libguile/scmconfig.h", not <config.h>.
5077
5078 Wed Apr 9 18:01:20 1997 Jim Blandy <jimb@floss.cyclic.com>
5079
5080 * acconfig.h: Added entry for PACKAGE.
5081 * scmconfig.h.in: Regenerated.
5082
5083 Changes to work with automake-1.1n, which has better libtool support.
5084 * Makefile.am: Use lib_LTLIBRARIES instead of lib_PROGRAMS.
5085 Use libguile_la_LIBADD instead of libguile_la_LDADD. (What's the
5086 difference here?)
5087 (libguile_la_SOURCES, modinclude_HEADERS, EXTRA_DIST): Format for
5088 readability.
5089 * Makefile.in: Rebuild.
5090
5091 Wed Apr 9 09:08:54 1997 Gary Houston <ghouston@actrix.gen.nz>
5092
5093 * stime.c (scm_mktime): take an optional zone argument.
5094 (scm_localtime): check putenv return value.
5095 (scm_strftime, scm_strptime): moved from posix.c. move #include
5096 sequences.h too.
5097 stime.h, posix.h: update prototypes.
5098 (bdtime2c, setzone, restorezone): new static procedures.
5099 (scm_mktime, scm_strftime): use them.
5100 (scm_strftime): don't call mktime before strftime. Use
5101 filltime for return value.
5102 (filltime): convert NULL zname to #f.
5103 (scm_strptime): return a count of characters consumed, not
5104 the remaining string.
5105
5106 Sun Apr 6 05:44:11 1997 Gary Houston <ghouston@actrix.gen.nz>
5107
5108 * stime.c (scm_localtime): check HAVE_TM_ZONE and HAVE_TZNAME.
5109 (scm_mktime): likewise.
5110 Declare *tzname[].
5111 Uncomment localtime and mktime.
5112
5113 * configure.in: add AC_STRUCT_TIMEZONE.
5114
5115 Sat Apr 5 23:56:40 1997 Gary Houston <ghouston@actrix.gen.nz>
5116
5117 * stime.c (scm_init_stime): don't define ticks/sec.
5118 (scm_gettimeofday): renamed from scm_time_plus_ticks (avoids multiple
5119 return value problem and is still portable.)
5120
5121 Sat Apr 5 17:59:24 1997 Jim Blandy <jimb@floss.cyclic.com>
5122
5123 * cpp_err_symbols.in: Renamed from cpp_err_symbols, to avoid
5124 make's implicit cpp_err_symbols: cpp_err_symbols.c rule.
5125 * cpp_sig_symbols.in: Renamed from cpp_sig_symbols.
5126 * Makefile.am (check_errnos, check_signals, cpp_sig_symbols.c,
5127 cpp_err_symbols.c): Corresponding changes.
5128 * Makefile.in: Regenerated.
5129
5130 Sat Apr 5 02:39:02 1997 Gary Houston <ghouston@actrix.gen.nz>
5131
5132 * posix.c (scm_putenv): don't check HAVE_PUTENV.
5133 * Makefile.am (EXTRA_libguile_la_SOURCES): add putenv.c.
5134 * configure.in: move putenv from AC_CHECK_FUNCS to AC_REPLACE_FUNCS.
5135 * putenv.c: new file, from sh-utils 1.12.
5136
5137 * posix.c (scm_environ): use malloc in place of scm_must_malloc
5138 since allocation isn't for Scheme objects.
5139 (scm_putenv): copy strings before placing in the environment.
5140
5141 * stime.c (scm_current_time): throw an error if time returns -1,
5142 instead of returning #f.
5143 (scm_get_internal_real_time, scm_get_internal_real_time): use
5144 scm_long2num for return value instead of SCM_MAKINUM.
5145
5146 * stime.h: prototypes updated.
5147
5148 * stime.c (scm_time_in_msec): apparently unused, deleted.
5149
5150 Fri Apr 4 08:53:41 1997 Gary Houston <ghouston@actrix.gen.nz>
5151
5152 * configure.in: check for gettimeofday.
5153
5154 * stime.c (scm_time_plus_ticks): new procedure, an scsh interface
5155 which may be more usefully portable than a gettimeofday interface.
5156
5157 Wed Apr 2 17:11:39 1997 Jim Blandy <jimb@totoro.cyclic.com>
5158
5159 * Makefile.am (EXTRA_DIST): It's cpp_err_symbols, not
5160 cpp_err_signals.
5161 * Makefile.in: Regenerated.
5162
5163 Mon Mar 31 03:22:37 1997 Gary Houston <ghouston@actrix.gen.nz>
5164
5165 * stime.c (filltime): recovered static procedure.
5166 (scm_localtime, scm_gmtime, scm_mktime, scm_tzset): recovered from
5167 an earlier Guile.
5168
5169 * posix.h: add prototype for scm_close_pipe, remove prototypes for
5170 scm_open_input_pipe, scm_open_output_pipe, change scm_mknod prototype.
5171
5172 * posix.c (scm_mknod): split the mode argument into type and perms
5173 arguments, like the extra fields returned by stat.
5174
5175 * fports.c (scm_pipob): set the close, free and print procedures.
5176 (scm_close_pipe): new procedure.
5177
5178 * posix.c (scm_open_input_pipe, scm_open_output_pipe): deleted,
5179 define them in boot-9.scm
5180
5181 Wed Mar 26 04:10:32 1997 Gary Houston <ghouston@actrix.gen.nz>
5182
5183 * ioext.c (scm_setfileno): throw a runtime error if SET_FILE_FD_FIELD
5184 wan't defined. Don't include fd.h.
5185
5186 * Previously fd.h was regenerated whenever configure was run,
5187 forcing a couple of files to be recompiled.
5188
5189 * fd.h.in: deleted, SET_FILE_FD_FIELD moved to ioext.c.
5190 * configure.in: AC_DEFINE FD_SETTER instead of HAVE_FD_SETTER.
5191 Check for _fileno as well as _file.
5192 Don't output fd.h.
5193 * ioext.c: don't fd.h.
5194 * acconfig.h: remove duplicate HAVE_FD_SETTER and change the
5195 other to FD_SETTER.
5196
5197 * Change the stratigy for getting information about errno
5198 (and now signal number) values, e.g., ENOSYS, SIGKILL. Instead of
5199 generating lists of symbols during the build process, which will
5200 not always work, include comprehensive lists in the distribution.
5201 To help keep the lists up to date, the "check_signals" and
5202 "check_errnos" make targets can be used.
5203
5204 * configure.in: don't check for a command to extract errno codes.
5205 * Makefile.am: update file lists, remove errnos.list and errnos.c
5206 targets, add cpp_err_symbols.c, cpp_sig_symbols.c, check_signals,
5207 check_errnos targets.
5208 (CLEANFILES): remove errnos.c and errnos.list, add
5209 cpp_err_symbols_here cpp_err_symbols_diff cpp_err_symbols_new
5210 cpp_sig_symbols_here cpp_sig_symbols_diff cpp_sig_symbols_new
5211 * errnos.default: deleted.
5212 * cpp_signal.c: new file.
5213 * cpp_errno.c: renamed from errnos_get.c.
5214 * cpp_err_symbols, cpp_sig_symbols: new files.
5215 * cpp_cnvt.awk: renamed from errnos_cnvt_awk.
5216 * error.c (scm_init_error): #include cpp_err_symbols instead of
5217 errnos.c.
5218 * posix.c (scm_init_posix): don't intern signal symbols. #include
5219 cpp_sig_symbols.c.
5220
5221 Tue Mar 25 04:51:10 1997 Gary Houston <ghouston@actrix.gen.nz>
5222
5223 * strop.c (scm_i_index): allow the lower bound to be equal to the
5224 length of the string, so a null string doesn't always give an error.
5225
5226 * posix.h: new prototypes.
5227 * posix.c (scm_status_exit_val, scm_status_term_sig,
5228 scm_status_stop_sig): new functions, as in scsh. They break down
5229 process status values as returned by waitpid.
5230
5231 Sat Mar 22 18:16:29 1997 Gary Houston <ghouston@actrix.gen.nz>
5232
5233 * net_db.c (scm_gethost): don't check HAVE_GETHOSTENT, since
5234 configure doesn't know about it.
5235
5236 Fri Mar 21 23:49:28 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5237
5238 * snarf.h, backtrace.c: Name change SCM_GLOBAL --> SCM_VCELL.
5239
5240 * snarf.h: Added new macros SCM_GLOBAL_SYMBOL and SCM_GLOBAL_VCELL
5241 which defines C variables with global linkage.
5242
5243 Mon Mar 17 05:57:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5244
5245 * snarf.h (SCM_PROC1): Bugfix: Use (void) rather than (...) for
5246 zero arg subrs.
5247
5248 Sun Mar 16 11:43:49 1997 Mikael Djurfeldt <mdj@floss.cyclic.com>
5249
5250 * eval.c (safe_setjmp): Temporarily use old setjmp until someone
5251 has time to check why this doesn't work well with continuations.
5252
5253 Sun Mar 16 05:09:55 1997 Jim Blandy <jimb@totoro.cyclic.com>
5254
5255 * Fix shell syntax error; some shells won't tolerate
5256 multiple "fi" statements on a single line. (Thanks to Fred Fish.)
5257
5258 Sat Mar 15 01:11:40 1997 Gary Houston <ghouston@actrix.gen.nz>
5259
5260 * posix.c (scm_uname): throw an error if uname fails instead
5261 of returning errno.
5262
5263 * error.h (scm_errno, scm_perror): obsolete prototypes removed.
5264
5265 * error.c (err_head, scm_errno, scm_perror): obsolete procedures
5266 removed.
5267
5268 * async.c (scm_ints_disabled): definition moved from error.c.
5269
5270 Sat Mar 15 00:06:08 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5271
5272 * acconfig.h: Removed PACKAGE.
5273
5274 * scmconfig.h.in: Regenerated.
5275
5276 * snarf.h: g++ says it's non-portable not to specify the first
5277 argument in a varargs declaration. I introduced the first
5278 argument by using preprocessor conditionals.
5279
5280 Thu Mar 13 21:28:25 1997 Gary Houston <ghouston@actrix.gen.nz>
5281
5282 * ioext.c (scm_read_delimited_x): use RO string macros for delims.
5283 (scm_freopen): use RO string macros for filename and modes.
5284 (scm_duplicate_port, scm_fdopen): use RO string macros for modes.
5285
5286 * posix.c (scm_getgrgid): simplify conversion of name to C string.
5287 (scm_mknod): use RO string macros for path.
5288
5289 * socket.c (scm_fill_sockaddr, scm_send, scm_sendto):
5290 use SCM_ROSTRINGP, SCM_ROCHARS, SCM_ROLENGTH.
5291
5292 * net_db.c (scm_gethost, scm_getnet, scm_getproto, scm_getserv):
5293 use SCM_ROSTRINGP and SCM_ROCHARS.
5294
5295 Thu Mar 13 18:31:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5296
5297 * unif.c (scm_array_set_x): Cast ICHR (obj) to char if storing in
5298 a scm_tc7_byvect.
5299
5300 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp,
5301 scm_array_index_map_x, raeql_1, scm_array_equal_p): Completed
5302 support for byte vectors.
5303
5304 * print.c (scm_iprin1): Limit number of vector elements printed
5305 according to pstate->length.
5306
5307 Thu Mar 13 00:12:35 1997 Gary Houston <ghouston@actrix.gen.nz>
5308
5309 * backtrace.c (scm_display_error_message): don't segv if message
5310 is an immediate.
5311
5312 * error.h: prototype for scm_error_scm.
5313
5314 * error.c (scm_error_scm): new procedure, reimplements scm-error
5315 in C and uses scm_error.
5316
5317 Tue Mar 11 03:51:00 1997 Gary Houston <ghouston@actrix.gen.nz>
5318
5319 * read.c (scm_read_hash_extend): make scm_read_hash_procedures a
5320 pointer to the Scheme variable read-hash-procedures and intern it
5321 in scm_init_read. Modify scm_read_hash_extend and
5322 scm_get_hash_procedure to use the pointer.
5323
5324 Mon Mar 10 06:28:54 1997 Gary Houston <ghouston@actrix.gen.nz>
5325
5326 * read.h (SCM_N_READ_OPTIONS): increase SCM_N_READ_OPTIONS to 4.
5327 (SCM_KEYWORD_STYLE): defined.
5328
5329 * read.c (scm_read_opts): add a keywords option. This isn't a
5330 boolean option, in case someone wants to add support for DSSSL
5331 keywords too.
5332 Setup scm_keyword_prefix symbol.
5333 (scm_lreadr): Only process keywords if SCM_KEYWORD_STYLE is
5334 set to 'prefix.
5335 I've left keyword support disabled by default, since it doesn't
5336 seem to break the module system and it gives R4RS standard behaviour.
5337 It can be reactivated with (read-set! keywords 'prefix).
5338
5339 Sun Mar 9 14:14:39 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5340
5341 * arbiters.c (scm_make_arbiter): Bugfix: Must SCM_DEFER_INTS
5342 before constructing arbiter.
5343
5344 * eval.c (scm_m_define): Bugfix: Check that the object is a
5345 closure before setting the procedure property!
5346
5347 * ports.h: Removed prototype for scm_ungetc_char_ready_p.
5348
5349 * ports.c: Removed `ungetc-char-ready?'.
5350
5351 Sat Mar 8 00:27:05 1997 Gary Houston <ghouston@actrix.gen.nz>
5352
5353 * read.c (scm_init_read): intitialise scm_read_hash_procedures
5354 (idea from Mikael: make it a pair so scm_permanent object only
5355 called once.)
5356 (scm_read_hash_extend): don't call scm_permanent_object.
5357 (ideas from Mikael): if chr is already in the list, replace its
5358 procedure instead of appending it again. If proc is #f, remove
5359 it from the list.
5360 (scm_get_hash_procedure): take CDR of scm_read_hash_procedures.
5361
5362 * strports.c (scm_read_0str, scm_eval_0str): update scm_read usage.
5363
5364 * gdbint.c (gdb_read): update scm_lreadr usage.
5365
5366 * load.h: update prototypes.
5367
5368 * load.c (scm_primitive_load, scm_read_and_eval_x,
5369 scm_primitive_load_path): remove case_insensitive_p, sharp arguments.
5370
5371 * read.h: add prototype for scm_read_hash_extend. Change args for
5372 other prototypes.
5373
5374 * read.c (scm_read_hash_procedures): new variable.
5375 (scm_read_hash_extend): new procedure.
5376 (scm_get_hash_procedure): new procedure.
5377 (scm_lreadr): use scm_get_hash_procedure instead of an argument
5378 for extended # processing.
5379 (scm_read, scm_lreadr, scm_lreadrecparen, scm_lreadparen,
5380 scm_read_token): remove case_i, sharp arguments. Change callers.
5381
5382 Fri Mar 7 08:58:21 1997 Gary Houston <ghouston@actrix.gen.nz>
5383
5384 * read.h (SCM_N_READ_OPTIONS): increase to 3.
5385 (SCM_CASE_INSENSITIVE_P): define.
5386
5387 * read.c: add case-insensitive option to scm_read_opts.
5388 (scm_read_token): use SCM_CASE_INSENSITIVE_P instead of an argument
5389 to determine whether to convert symbol case.
5390 (default_case_i): definition removed.
5391 * read.c (scm_read_token): if case_i, downcase ic before doing
5392 anything with it.
5393
5394 Sat Mar 8 03:49:03 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5395
5396 * configure.in: Added configuration option `guile-debug'.
5397 Configure with --enable-guile-debug if you want a bunch of extra
5398 functions used for debugging when developing Guile.
5399
5400 * acconfig.h: Added new preprocessor symbol GUILE_DEBUG.
5401
5402 * procs.c (make-cclo): New undocumented debugging procedure: Make
5403 compiled closure with internal procedure PROC and length LENGTH.
5404 Only compiled if GUILE_DEBUG is defined.
5405
5406 * debug.c: Only include `debug-hang' if GUILE_DEBUG is defined.
5407
5408 * print.c: Put #ifdef GUILE_DEBUG around `current-pstate'.
5409
5410 * ports.c: Changed preprocessor symbol DEBUG --> GUILE_DEBUG.
5411
5412 * eval.c (SCM_CEVAL): Added code sections for handling of rpsubrs
5413 with 3 or more args internally to the evaluator.
5414
5415 Fri Mar 7 19:38:18 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5416
5417 * eval.c (SCM_CEVAL): Added code sections for handling of asubrs
5418 with 3 or more args internally to the evaluator. This is mainly
5419 because we don't want to pass entry and exit points of the
5420 debug support twice, but it also seems to increase the speed of
5421 the evaluator for such calls (e. g. (+ 1 2 3)).
5422
5423 * backtrace.c (scm_display_application): New procedure:
5424 display-application; Set fancy printing parameters individually
5425 for different types of display (backtrace, error, application).
5426 (These should of course be customizable!)
5427
5428 * debug.h (SCM_RESET_DEBUG_MODE): Bugfix: The old code didn't
5429 clear the CHECK-flags.
5430
5431 Thu Mar 6 00:53:02 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5432
5433 * tags.h, eval.c (iqq): Fixes to comments about SCM_ECONSP.
5434
5435 Wed Mar 5 23:31:21 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5436
5437 * tags.h (SCM_ECONSP, SCM_NECONSP): Bugfix: Discriminate structs
5438 from pairs with a GLOC in the car.
5439
5440 * symbols.c (msymbolize): Bugfix: Also initialize SCM_SYMBOL_HASH,
5441 otherwise `symbol-hash' will behave badly.
5442 (scm_symbol_hash): Bugfix: Must msymbolize if tc7_ssymbol, othwise
5443 we get segmentation fault!
5444
5445 * symbols.c: Added #include "weaks.h". New functions:
5446 `builtin-bindings' and `builtin-weak-bindings'. (These will be
5447 moved to an extraneous library when we split libguile.)
5448
5449 Tue Mar 4 19:50:07 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5450
5451 * filesys.c (scm_stat): stat now takes fport arguments too as
5452 documented in the manual.
5453
5454 Mon Mar 3 07:11:33 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5455
5456 * debug.c (scm_single_step): Bugfix: Call continuation with
5457 scm_call_continuation instead of throwing to it.
5458
5459 Mon Mar 3 09:07:56 1997 Gary Houston <ghouston@actrix.gen.nz>
5460
5461 * ports.c (scm_char_ready_p): bug fix: in SCM_PROC char-ready's
5462 argument wasn't declared to be optional.
5463
5464 Sun Mar 2 16:34:40 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5465
5466 * stime.c (scm_init_stime): Add feature "current-time".
5467
5468 Sun Mar 2 06:37:31 1997 Gary Houston <ghouston@actrix.gen.nz>
5469
5470 * throw.h: prototype for scm_exit_status.
5471 * throw.c (scm_handle_by_message): if a 'quit is caught, use its
5472 args to derive an exit status. Allows (quit) to work from a
5473 script.
5474 (scm_exit_status): new function.
5475 #include "eq.h".
5476
5477 Sat Mar 1 00:09:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5478
5479 * eval.c (scm_deval): Removed some old code.
5480 (ENTER_APPLY): Bugfix: Reset apply-frame trap on trap as is done
5481 with the others.
5482 (ENTER_APPLY, scm_deval): Reset trace flag on apply-frame and
5483 exit-frame traps.
5484
5485 * symbols.c (msymbolize): Bugfix: Must initialize property list to
5486 SCM_EOL.
5487
5488 * procs.c: Introduce the existent C function scm_thunk_p at the
5489 Scheme level as well.
5490
5491 Wed Feb 26 12:53:58 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5492
5493 * symbols.c, symbols.h (scm_symbol_value0): New function. Can be
5494 used from C to easily lookup the value of a symbol in the current
5495 module.
5496
5497 Tue Feb 25 00:14:10 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5498
5499 * unif.c (scm_init_unif): Added #include "unif.x". (There are two
5500 scm_init_unif in this file. This will also fix a previous problem
5501 with guile-snarf.)
5502
5503 * configure.in: Added AM_MAINTAINER_MODE
5504
5505 Fri Feb 21 23:07:26 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5506
5507 * gdb_interface.h (GDB_INTERFACE): Added some (void *) casts to
5508 avoid warnings.
5509
5510 Fri Feb 21 18:00:38 1997 Marius Vollmer <mvo@zagadka.ping.de>
5511
5512 * Makefile.am (EXTRA_libguile_la_SOURCES): New variable to hold
5513 source files that are not always included in libguile but should
5514 have their dependencies calculated by automake. This variable is
5515 recognized by automake, no further magic is needed.
5516 (libguile_la_DEPENDENCIES): Changed to @LIBLOBJS@. Libtool wants
5517 to deal exclusively with *.lo files, as it seems. The *.o files
5518 are built automatically when the corresponding *.lo file gets
5519 built.
5520
5521 Wed Feb 19 14:04:23 1997 Jim Blandy <jimb@floss.cyclic.com>
5522
5523 * list.h (scm_list_cdr_ref): Delete prototype; function no longer
5524 exists.
5525
5526 Thu Feb 13 21:44:07 1997 Gary Houston <ghouston@actrix.gen.nz>
5527
5528 * unif.c (scm_array_set_x): minor change to argument error checking.
5529
5530 Tue Feb 11 18:19:47 1997 Jim Blandy <jimb@floss.cyclic.com>
5531
5532 * Makefile.am (libguile_la_SOURCES): Remove backtrace.c, debug.c,
5533 inet_aton.c, srcprop.c, stacks.c, and strerror.c from this list.
5534 They should only be included in the library at configure.in's
5535 discretion.
5536 (libguile_la_LDADD): Include the appropriate .lo files here.
5537 (libguile_la_DEPENDENCIES): List the corresponding .o files here,
5538 so we know when to build them (and their .lo bretheren).
5539 * configure.in (LIBLOBJS): New substituted variable. We let
5540 configure decide which .o files to include in LIBOBJS, and then
5541 put the corresponding list of .lo files in LIBLOBJS. The latter
5542 is what we pass to libtool.
5543 * Makefile.in, configure: regenerated.
5544
5545 Mon Feb 10 00:08:08 1997 Mikael Djurfeldt <mdj@kenneth>
5546
5547 * symbols.c (scm_sysintern0): New function. Contains the core of
5548 old scm_sysintern but doesn't take a second value argument.
5549 (scm_sysintern): Now uses scm_sysintern0.
5550 (scm_sysintern_no_module_lookup): Renamed to
5551 scm_sysintern0_no_module_lookup and doesn't take a second value
5552 argument any longer.
5553
5554 * symbols.h (scm_sysintern0: Added declaration.
5555
5556 * options.c (scm_init_opts): Use scm_sysintern0 instead of
5557 scm_sysintern when interning option keys. Otherwise we risk
5558 destroying the values of already interned variables.
5559
5560 * symbols.c (scm_sym2vcell): Bugfix: Treat definedp as
5561 scheme-level boolean (use SCM_NFALSEP).
5562
5563 * backtrace.c (scm_init_backtrace): Make Scheme-level variable
5564 `the-last-stack'.
5565 (scm_backtrace): New function. (C version of old function from
5566 boot-9.scm) Motivation: Make it possible to display backtraces
5567 without depending on boot-9.scm. (I'm uncertain if this
5568 motivation is good enough...)
5569
5570 * root.h (scm_root_state): Add member the_last_stack_var.
5571 (scm_the_stack_var): Defined to scm_root->the_last_stack_var.
5572
5573 * root.c (mark_root): Mark scm_the_last_stack_var.
5574
5575 * init.c (scm_start_stack): Initialize scm_the_last_stack_var to
5576 SCM_BOOL_F.
5577
5578 Sun Feb 9 18:04:41 1997 Mikael Djurfeldt <mdj@kenneth>
5579
5580 * throw.c (mark_lazy_catch, free_lazy_catch): Removed.
5581 1. mark_lazy_catch didn't mark the smob.
5582 2. Both functions above have standard variants:
5583 (lazy_catch_funs): Changed mark_lazy_catch --> scm_mark0,
5584 free_lazy_catch --> scm_free0.
5585
5586 Fri Feb 7 17:30:26 1997 Jim Blandy <jimb@floss.cyclic.com>
5587
5588 * throw.c (scm_internal_lazy_catch): New function.
5589 (scm_lazy_catch): Rewritten to use it.
5590 (scm_ithrow): Handle the new lazy catch representation.
5591 Use SCM_LAZY_CATCH_P, instead of assuming that any wind list entry
5592 that doesn't have a jmpbuf is a lazy catch clause.
5593 (tc16_lazy_catch, struct lazy_catch, mark_lazy_catch,
5594 free_lazy_catch, print_lazy_catch, lazy_catch_funs,
5595 make_lazy_catch, SCM_LAZY_CATCH_P): Support funs, including a new
5596 smob.
5597 (scm_init_throw): Register the new lazy-catch smob type.
5598 * throw.h (scm_internal_lazy_catch): decl for new function.
5599
5600 * throw.c (scm_internal_catch): Doc fixes.
5601
5602 * alloca.c: New file, needed to support the AC_FUNC_ALLOCA call in
5603 configure.in. Including this might cause problems if applications
5604 that link against libguile include their own copies of alloca, but
5605 if they're using autoconf, they should be adding libguile to LIBS
5606 before calling AC_FUNC_ALLOCA anyway, in which case they'll find
5607 the copy in libguile, and things will be okay. (I think.)
5608
5609 Thu Feb 6 03:10:32 1997 Gary Houston <ghouston@actrix.gen.nz>
5610
5611 * strop.c (scm_string_upcase_x, scm_string_downcase_x): moved from
5612 unif.c.
5613 strop.h: move prototypes too.
5614
5615 Wed Feb 5 08:33:00 1997 Gary Houston <ghouston@actrix.gen.nz>
5616
5617 * posix.c (scm_init_posix): don't intern EINTR since it's now done
5618 elsewhere.
5619
5620 * ioext.c (scm_init_ioext): don't intern stat macros, S_IRUSR
5621 etc. I deleted them from filesys.c long ago, but didn't
5622 notice they were here too (although ineffective since
5623 sys/stat.h wasn't included).
5624
5625 Tue Feb 4 18:17:50 1997 Tom Tromey <tromey@cygnus.com>
5626
5627 * eval.c: Don't define alloca in GCC case. gcc will automatically
5628 use __builtin_alloca if appropriate.
5629
5630 Tue Feb 4 16:57:40 1997 Jim Blandy <jimb@floss.cyclic.com>
5631
5632 * eval.c (safe_setjmp): New function: trivial wrapper for setjmp.
5633 (SCM_CEVAL, SCM_APPLY): Call it, instead of setjmp, to make sure
5634 that values of automatic variables are preserved. See comments
5635 for safe_setjmp for details.
5636
5637 Change from Thomas Morgan:
5638 * variable.c: Include eq.h.
5639 (var_equal): New function.
5640 (variable_smob): Use var_equal as the discriminator for variables.
5641
5642 * throw.c (s_throw): Remove extraneous declaration.
5643
5644 * configure.in: Call AC_FUNC_ALLOCA, to see if we have alloca.
5645 * eval.c: Add necessary CPP cruft to support that.
5646 * configure, Makefile.in, scmconfig.h.in: regenerated.
5647
5648 Change from Thomas Morgan:
5649 * procprop.c (scm_procedure_properties): Convert the Scheme
5650 boolean returned by scm_procedure_p into a C boolean before using
5651 it as a condition for SCM_ASSERT.
5652 (scm_procedure_property): Likewise.
5653
5654 * simpos.c (SYSTNAME): Accept both 'unix' and '__unix' as
5655 indications of Unixness.
5656 * stime.c: Same.
5657
5658 Tue Feb 4 05:07:35 1997 Gary Houston <ghouston@actrix.gen.nz>
5659
5660 * net_db.c (scm_lnaof): change scheme name from lnaof to inet-lnaof.
5661
5662 Mon Feb 3 06:12:37 1997 Gary Houston <ghouston@actrix.gen.nz>
5663
5664 * read.c (scm_lreadr): use scm_misc_error to improve one of the
5665 "unknown # object" error messages.
5666
5667 * strop.c (scm_i_index, scm_i_rindex): combine into one procedure
5668 (scm_i_index) and declare it static. Add a 'direction' argument
5669 to indicate what way the search should go.
5670 (scm_i_index): throw out-of-range error instead of wrong-type-arg
5671 if indices are bad.
5672 (scm_string_index, scm_string_rindex): adjust usage of scm_i_index.
5673 strop.h: remove scm_i_index, scm_i_rindex prototypes.
5674
5675 Fri Jan 31 04:33:11 1997 Gary Houston <ghouston@actrix.gen.nz>
5676
5677 * ioext.c, ioext.h: remove obsolete _sys_ from 9 procedure names.
5678
5679 * posix.c (scm_fork): Scheme name changed from fork to primitive-fork,
5680 to avoid clash with various scsh forks.
5681
5682 Thu Jan 30 20:14:09 1997 Mikael Djurfeldt <mdj@syk-0606.pdc.kth.se>
5683
5684 The following two changes (ramap.c, throw.c) are motivated by the
5685 apparent unportability of forward declarations of static arrays of
5686 the form `static foo bar[];'.
5687
5688 * ramap.c (scm_array_fill_x): Moved above scm_array_fill_int.
5689 (ra_rpsubrs, ra_asubrs): Moved to the top of array code.
5690
5691 * throw.c (scm_throw): Moved above scm_ithrow.
5692
5693 * options.h: Removed the extern declarations of scm_yes_sym and
5694 scm_no_sym since these are static.
5695
5696 Fri Jan 24 06:16:32 1997 Gary Houston <ghouston@actrix.gen.nz>
5697
5698 * ports.c: add SCM_PROC declarations for pt-size and pt-member.
5699
5700 * Makefile.am: remove AWK=@AWK@.
5701 Add a rule for generating errnos.list.
5702 (CLEANFILES): put errnos.list here instead of in DISTCLEANFILES.
5703
5704 * configure.in: add AC_SUBST(AWK) and AC_SUBST(ERRNO_EXTRACT).
5705 don't extract errnos, just set a variable (avoids the
5706 need to recompile error.c just because configure is run.)
5707
5708 * unif.h: update prototypes.
5709 * unif.c (scm_uniform_array_read,write): change the offset and
5710 length arguments to start and end, for consistency.
5711
5712 * __scm.h: uncomment SCM_ARG6 and SCM_ARG7, I needed SCM_ARG6.
5713
5714 * ioext.h: update prototypes.
5715 * ioext.c (scm_read_delimited_x): replaces scm_read_line and
5716 scm_read_line_x, it's a more general procedure using an
5717 interface from scsh. read-line and read-line! are now defined
5718 in boot-9.scm.
5719 Note that the new read-line trims the terminator
5720 by default, previously it was appended to the returned string. An
5721 optional argument specifies how to process the terminator (scsh
5722 compatible). For the old behaviour: (read-line port 'concat).
5723 scm_read_line, scm_read_line_x: deleted. (read-line port 'split)
5724 returns a pair, but is converted to multiple values if the scsh
5725 module is loaded.
5726
5727 socket.h: update prototypes.
5728 * socket.c (scm_recvfrom): for consistency with other procedures,
5729 take start and end as separate optional arguments.
5730 (scm_recv, scm_recvfrom): don't allow the second argument
5731 to be a size, only a buffer. Change the scheme names to
5732 recv! and recvfrom!. Don't return the buffer.
5733
5734 * ioext.h, posix.h: move prototypes too.
5735 * ioext.c, posix.c (scm_read_line, scm_read_line_x, scm_write_line:
5736 moved back from posix.c to ioext.c. Also move #includes of "genio.h"
5737 "read.h" and "unif.h".
5738 * ioext.c: include "chars.h"
5739
5740 Mon Jan 20 19:54:49 1997 Marius Vollmer <mvo@zagadka.ping.de>
5741
5742 * dynl.c: The dynamic linking and module registration functions
5743 are now defined even when dynamic linking is not available for the
5744 host system. Some of their functionality can be done without
5745 dynamic linking; when it's really needed, they throw errors.
5746
5747 Thu Jan 16 16:39:29 1997 Marius Vollmer <mvo@zagadka.ping.de>
5748
5749 * configure.in: Only define DYNAMIC_LINKING when one of the system
5750 dependent functions is detected.
5751 * dynl.c (scm_dynamic_func): New function to get the address of a
5752 function in a dynamic object.
5753 (scm_dynamic_call, scm_dynamic_args_call): Accept the values
5754 produced by scm_dynamic_func as the thing to call.
5755
5756 Sun Jan 12 21:09:42 1997 Marius Vollmer <mvo@zagadka.ping.de>
5757
5758 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c: Restructured.
5759 (scm_register_module_xxx, scm_registered_modules,
5760 scm_clear_registered_modules): New functions.
5761
5762 Sat Jan 11 21:37:15 1997 Marius Vollmer <mvo@zagadka.ping.de>
5763
5764 * symbols.c (scm_sysintern): Renamed to
5765 scm_sysintern_no_module_lookup.
5766 (scm_sysintern): New function to take the place of the old
5767 scm_sysintern. It uses the current toplevel lookup closure to give
5768 the symbol its value. This is a temporary hack to put packages
5769 like gtcltk into their own module.
5770 (scm_can_use_top_level_lookup_closure_var): New variable to tell
5771 us whether `scm_top_level_lookup_closure_var' has been initialized
5772 and is usable.
5773 * eval.c (scm_init_eval): Set it.
5774
5775 Sat Jan 18 00:03:31 1997 Gary Houston <ghouston@actrix.gen.nz>
5776
5777 * fports.c (scm_open_file): pass errno to scm_syserror_msg.
5778 * filesys.h: update prototypes. Remove macros: SCM_FD_P, SCM_FD_FLAGS,
5779 SCM_FD.
5780 * filesys.c (scm_sys_stat, scm_sys_lstat): pass errno to
5781 scm_syserror_msg.
5782 (scm_sys_read_fd, scm_sys_write_fd, scm_sys_close, scm_sys_lseek,
5783 scm_sys_dup): deleted: FD capability will be added to other
5784 procedures.
5785 Remove support for the FD object type: scm_tc16_fd, scm_fd_print,
5786 scm_fd_free, fd_smob, scm_intern_fd.
5787 (scm_open): renamed from scm_sys_open. Return a port instead of
5788 an FD object. Make the mode argument optional.
5789 (scm_sys_create): deleted, it's just a special case of open.
5790 (scm_init_filesys): move interning of constants O_CREAT etc.,
5791 here (were previously using SCM_CONST_LONG macro).
5792 Add missing constants: O_RDONLY, O_WRONLY, O_RDWR, O_CREAT.
5793 don't newsmob fd.
5794 (numerous _sys_ procedures): remove gratuitous _sys_ from names.
5795 include "fports.h" and <stdio.h>
5796 (scm_stat, scm_select): don't support FD objects.
5797
5798 * error.h: adjust scm_syserror_msg prototype.
5799 * error.c (scm_syserror_msg): take an extra argument for errno.
5800 Using the global value didn't always work, since it could be
5801 reset by procedure calls in the message or args arguments.
5802
5803 * fports.c (scm_setbuf0): call setbuf even if FIONREAD is not defined.
5804 I don't understand why the check was there (and what about the
5805 ultrix check?)
5806
5807 * strop.c (scm_string_copy): allow shared substrings to be copied.
5808
5809 * unif.h: corresponding change to prototypes.
5810 * unif.c (scm_uniform_array_read_x, scm_uniform_array_write_x):
5811 recognize two new optional arguments: offset and length. Allow
5812 the port argument to be an integer (file descriptor, for scsh).
5813 Include <unistd.h> for "read" prototype.
5814
5815 Tue Jan 14 02:42:02 1997 Gary Houston <ghouston@actrix.gen.nz>
5816
5817 * socket.c: don't include filesys.h.
5818
5819 Mon Jan 13 03:47:04 1997 Gary Houston <ghouston@actrix.gen.nz>
5820
5821 * Makefile.am: add AWK=@AWK@ (?)
5822
5823 * Makefile.am (EXTRA_DIST): add errnos_cnvt.awk, errnos.default,
5824 errnos_get.c.
5825 Add a rule to generate errnos.c from errnos.
5826 * error.c (scm_init_error): include errnos.c.
5827 * errnos_cnvt.awk: new file, converts the list of errno codes to
5828 C expressions.
5829 * errnos_get.c: new file.
5830 * errnos.default: new file, contains errnos to try if they can't
5831 be extracted from errno.h.
5832 * configure.in: if using GCC, try and extract errno codes from
5833 errno.h.
5834 Added AC_PROG_AWK.
5835
5836 Sat Jan 11 14:47:00 1997 Marius Vollmer <mvo@zagadka.ping.de>
5837
5838 * configure.in: Replaced AC_PROG_RANLIB with AM_PROG_LIBTOOL.
5839 * Makefile.am: Made libguile into a libtool library.
5840 * PLUGIN/guile.config: Removed "-L ../libguile" from xtra_cflags.
5841 Set libtool_libs to indicate that libguile is a libtool library.
5842 See guile/ChangeLog for details.
5843 * .cvsignore: ignore "*.lo", the libtool library objects.
5844
5845 Wed Jan 8 06:54:54 1997 Gary Houston <ghouston@actrix.gen.nz>
5846
5847 * net_db.c (scm_getserv): add missing SCM_ALLOW_INTS.
5848 use htons in getservbyport argument.
5849
5850 Tue Jan 7 18:11:24 1997 Jim Blandy <jimb@floss.cyclic.com>
5851
5852 * ports.h (SCM_PTOBNUM): Removed extraneous semicolon.
5853 * smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a
5854 duplicate.
5855
5856 * objprop.c (scm_object_property): No need to take the CDR of the
5857 value returned by scm_object_properties, since Aug 20 change.
5858
5859 * configure.in: When checking for struct linger, #include
5860 <sys/types.h> as well as <sys/socket.h>. I've never known
5861 <sys/types.h> to cause any portability problems, and Solaris's
5862 <sys/socket.h> needs it.
5863 * configure: Rebuilt.
5864
5865 I think the Sun compiler has chosen a perverse way to interpret
5866 ANSI declarations combined with K&R definitions. We'll
5867 appease it a little bit. But when it invades France, we fight.
5868 * print.c (scm_iprlist): Change 'tlr' argument to an int.
5869 * print.h (scm_iprlist): Here too.
5870 * numbers.c (scm_divbigdig): Change definition to match
5871 declaration in numbers.h.
5872 * unif.c (scm_makflo): Change definition to match declaration in
5873 unif.h.
5874
5875 * init.c (scm_boot_guile): Don't return the value of
5876 scm_boot_guile_1. This function doesn't return a value;
5877 scm_boot_guile_1 doesn't return a value (or return at all).
5878
5879 * eval.c (unmemocopy): Add a semicolon to appease the Sun
5880 compiler.
5881
5882 * simpos.c (SYSTNAME): Add case for AIX; otherwise it won't
5883 compile. I have a feeling this function is a bad idea anyway ---
5884 one should always test for features, not systems.
5885
5886 * smob.h (SCM_SMOBNUM, SCM_PTOBNUM): Remove extraneous
5887 semicolons. Only pure luck kept this from being noticed earlier.
5888
5889 Tue Jan 7 15:04:06 1997 Mikael Djurfeldt <mdj@kenneth>
5890
5891 * socket.c (scm_recvfrom): Added missing semicolon.
5892
5893 Mon Jan 6 20:39:08 1997 Gary Houston <ghouston@actrix.gen.nz>
5894
5895 * socket.c (scm_recvfrom): allow buff_or_size to be a list containing
5896 the buffer and start and end positions for scsh networking
5897 implementation.
5898
5899 Sun Jan 5 13:53:53 1997 Jim Blandy <jimb@floss.cyclic.com>
5900
5901 * configure.in: Revert previous change to this file; the problem
5902 is due to transient automake weirdness.
5903 * configure: Rebuilt.
5904
5905 * Makefile.am (EXTRA_DIST): Distribute PLUGIN/guile.libs.in, not
5906 PLUGIN/guile.libs. configure generates the latter from the former.
5907 * Makefile.in: Rebuilt.
5908
5909 * configure.in: Call AM_PROG_INSTALL; the automake manual says we
5910 need this if we install scripts, like guile-snarf.
5911 * configure: Rebuilt.
5912
5913 Thu Jan 2 01:56:38 1997 Marius Vollmer <mvo@zagadka.ping.de>
5914
5915 * Makefile.am (EXTRA_DIST): Added DYNAMIC-LINKING
5916
5917 Sat Dec 28 19:14:01 1996 Gary Houston <ghouston@actrix.gen.nz>
5918
5919 * socket.c (scm_addr_vector): fix faulty scm_listify.
5920
5921 Sat Dec 28 13:55:58 1996 Marius Vollmer <mvo@zagadka.ping.de>
5922
5923 * read.c (scm_lreadr): Encountering EOF after skipping a SCSH
5924 style block comment is no longer considered an error.
5925
5926 Fri Dec 27 13:44:23 1996 Marius Vollmer <mvo@zagadka.ping.de>
5927
5928 * PLUGIN/guile.libs.in: New file.
5929 * PLUGIN/guile.libs: Removed from repository.
5930 * configure.in: Create PLUGIN/guile.libs from
5931 PLUGIN/guile.libs.in. This is for including additonal libraries
5932 needed for dynamic linking.
5933 * Makefile.am (EXTRA_DIST): Distribute PLUGIN/guile.libs.in
5934 instead of PLUGIN/guile.libs.
5935
5936 * Makefile.am: Added explicit dependency "dynl.o: dynl.x".
5937
5938 Sun Dec 22 23:06:14 1996 Jim Blandy <jimb@floss.cyclic.com>
5939
5940 * list.c (scm_delq_x, scm_delv_x, scm_delete_x): Delete all
5941 occurrences of the given element from the list, not just the
5942 first. This is how the Emacs Lisp functions behave, how the
5943 analogous Common Lisp functions behave, and (I believe) how the
5944 older Maclisp functions worked. I realize that this change may
5945 break code, but it seemed better to break it before the Guile
5946 release than after.
5947
5948 * gc.c (scm_protect_object, scm_unprotect_object): New functions.
5949 Their prototypes were already present in gc.h, but they weren't
5950 implemented.
5951 (scm_init_storage): Initialize scm_protects.
5952 * root.c (scm_protects): New element of scm_sys_protects.
5953
5954 * net_db.h (scm_init_net_db): Fix spelling from scm_init_netdb.
5955
5956 Sat Dec 21 15:38:32 1996 Jim Blandy <jimb@floss.cyclic.com>
5957
5958 * libguile.h: Added #include "libguile/net_db.h".
5959
5960 * libguile.h: Don't #include "libguile/libpath.h", contrary to Oct
5961 30 change. That file is only meant for communication between the
5962 configuration process and load.c. If code linked against libguile
5963 wants to get at the paths mentioned in libpath.h, it can call
5964 functions declared in load.h.
5965
5966 Sat Dec 21 14:50:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
5967
5968 * libguile.h: Removed #include "libguile/fdsocket.h"
5969
5970 * net_db.c: Added #include <sys/socket.h>.
5971
5972 Sat Dec 21 00:33:03 1996 Gary Houston <ghouston@actrix.gen.nz>
5973
5974 * filesys.c (scm_input_waiting_p): use select in preference to
5975 FIONREAD, since the latter doesn't detect EOF.
5976 Throw error if neither select nor FIONREAD available.
5977
5978 * socket.c (scm_connect): take a port, not a fd object.
5979 (scm_fill_sockaddr): throw an error if fam is not recognised.
5980 (scm_bind): use scm_fill_sockaddr.
5981 (scm_listen): take a port, not a fd object.
5982 (scm_accept): take and return a port. return #f in the car if
5983 address can't be got
5984 (scm_sock_fd_to_port): new procedure.
5985 (scm_socket): use scm_sock_fd_to_port.
5986 (scm_addr_vector): throw error if unrecognised address type.
5987 take an extra argument with the calling procedure name.
5988 (scm_getsockname): take a port. return #f if address can't be got.
5989 (scm_getpeername): take a port. return #f if address can't be got.
5990 (scm_recvfrom): take a port. return #f for address component if can't
5991 be got.
5992 (scm_sendto, scm_socketpair, scm_getsockopt scm_shutdown,
5993 scm_setsockopt, scm_recv, scm_send): take a port not a fd object.
5994
5995 Fri Dec 20 23:06:53 1996 Jim Blandy <jimb@floss.cyclic.com>
5996
5997 * throw.c (scm_internal_catch): Make body funcs and handler funcs
5998 use separate data pointers, to allow them to be designed
5999 independently and reused.
6000 (scm_body_thunk, scm_handle_by_proc, scm_handle_by_message):
6001 Renamed from catch_body, catch_handler, and uncaught_throw; made
6002 generically useful.
6003 (struct scm_catch_body_data): Renamed from catch_body_data; moved
6004 to throw.h.
6005 (scm_catch): Use the above.
6006 (scm_throw): Don't bother printing a message for an uncaught
6007 throw; we establish a default handler in init.
6008 * throw.h (scm_internal_catch): Prototype updated.
6009 (scm_body_thunk, scm_handle_by_proc, scm_handle_by_message): New
6010 decls.
6011 (struct scm_body_thunk_data): New structure, used as data
6012 argument to scm_body_thunk.
6013 * init.c (struct main_func_closure): New structure, packaging up
6014 the data to pass to the user's main function.
6015 (scm_boot_guile): Create one. Pass it to scm_boot_guile_1.
6016 (scm_boot_guile_1): Pass it through to invoke_main_func. Use
6017 scm_internal_catch to establish a catch-all handler, using
6018 scm_handle_by_message. This replaces the special-case code in
6019 scm_throw.
6020 (invoke_main_func): Body function for scm_internal_catch; invoke
6021 the user's main function, using the main_func_closure pointer to
6022 decide what to pass it.
6023 * root.c (struct cwdr_body_data): Remove handler_proc member.
6024 (cwdr): Use scm_handle_by_proc instead of cwdr_handler.
6025 (cwdr_handler): Removed.
6026
6027 Thu Dec 19 00:00:26 1996 Gary Houston <ghouston@actrix.gen.nz>
6028
6029 * socket.h (SCM_P): update bind prototype.
6030 * socket.c (scm_init_socket): intern PF_UNSPEC, PF_UNIX, PF_INET.
6031 include "feature.h".
6032 (scm_socket): return a port, not a file descriptor object.
6033 include "fports.h" and <unistd.h>
6034 (scm_bind): take a port, not a file descriptor object.
6035 take an extra argument for address args.
6036
6037 * net_db.c (scm_init_net_db): intern INADDR_ANY, INADDR_BROADCAST,
6038 INADDR_NONE, INADDR_LOOPBACK.
6039
6040 Tue Dec 17 22:58:26 1996 Gary Houston <ghouston@actrix.gen.nz>
6041
6042 * init.c: include net_db.h and not fdsocket.h.
6043 (scm_boot_guile_1): call scm_init_net_db and not scm_init_fdsocket.
6044
6045 * Makefile.am: corresponding changes.
6046 * socket.h: renamed from fdsocket.h, fix names.
6047 * net_db.h: renamed from socket.h, fix names.
6048 * socket.c: renamed from fdsocket.c.
6049 remove _sys from procedure names.
6050 (scm_init_socket): rename from scm_init_fdsocket. include socket.x.
6051 add "socket" to features list.
6052 * net_db.c: renamed from socket.c.
6053 remove _sys from procedure names.
6054 (scm_init_net_db): rename from scm_init_socket. include net_db.x.
6055 add "net-db" to features list.
6056 include "net_db.h". don't include <sys/socket.h> or
6057 <sys/un.h>.
6058
6059 Thu Dec 19 14:03:24 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6060
6061 * tags.h (scm_tags): Removed comma at end of last enumerator.
6062
6063 Thu Dec 19 02:54:59 1996 Jim Blandy <jimb@floss.cyclic.com>
6064
6065 Don't use GCC extensions to allocate space for debugging frames.
6066 (Here he goes again! Why do we put up with this?!)
6067 * debug.h (scm_debug_frame): Make the 'vect' member a pointer to
6068 an scm_debug_info structure, not an in-line array of them. Add
6069 'info' member, to say how many vect elements we've used, for eval
6070 frames.
6071 * eval.c (SCM_CEVAL): Use alloca to allocate space for vect. Use
6072 a new variable debug_info_end to mark the end of vect, instead of
6073 the address of the 'info' pointer itself.
6074 [DEVAL] (ENTER_APPLY, SCM_CEVAL, SCM_APPLY): Remove casts of
6075 &debug to scm_debug_frame *; debug is a real scm_debug_frame now.
6076 (SCM_APPLY): Explicitly allocate space for debug.vect.
6077 * debug.c (scm_m_start_stack): Same, for vframe.vect.
6078 * stacks.c: Adjusted for new debug frame structure.
6079 (RELOC_INFO, RELOC_FRAME): New macros.
6080 (stack_depth, read_frames): Use them, and new scm_debug_frame
6081 element 'info', instead of magically knowing that eval frames have
6082 an info pointer sitting after vect.
6083 (scm_make_stack, scm_stack_id, scm_last_stack_frame): Use
6084 RELOC_FRAME.
6085 (scm_init_stacks): Formatting tweaks.
6086
6087 Wed Dec 18 14:57:57 1996 Jim Blandy <jimb@floss.cyclic.com>
6088
6089 Give GCC more control flow information, so it can be sure that
6090 variables aren't used uninitialized.
6091 * error.h (scm_error, scm_syserror, scm_syserror_msg,
6092 scm_sysmissing, scm_num_overflow, scm_out_of_range,
6093 scm_wrong_num_args, scm_wrong_type_arg, scm_memory_error,
6094 scm_misc_error): Tell GCC that these functions never return.
6095 * struct.c (scm_struct_ref, scm_struct_set_x): If we can't figure
6096 out the field type, call abort if SCM_ASSERT returns, to placate
6097 the optimizer.
6098 * stacks.c (scm_make_stack, scm_last_stack_frame): abort if
6099 scm_wta ever returns. We can't handle this case anyway, and this
6100 gives the optimizer more information.
6101 * unif.c (scm_uniform_vector_ref, scm_array_set_x): Abort if
6102 scm_wta ever returns.
6103
6104 In some cases, the code is fine, but GCC isn't smart enough to
6105 figure that out; this usually happens when one variable is only
6106 initialized and used when a particular condition holds true, and
6107 we know that condition will never change within a given invocation
6108 of the function. In this case, we simply initialize the variables
6109 to placate the compiler, hopefully to a value which will cause a
6110 crash if it is ever actually used.
6111 * print.c (scm_iprin1): Initialize mw_pos.
6112 * read.c (scm_lreadrecparen): Initialize tl2, ans2.
6113 * throw.c (scm_ithrow): Initialize dynpair.
6114 * unif.c (scm_uniform_vector_ref): Initialize cra.
6115 * struct.c (init_struct): Initialize prot.
6116 * mbstrings.c (scm_print_mb_symbol): Initialize mw_pos and inc.
6117
6118 * strports.c (scm_eval_0str): Don't return uninitialized garbage
6119 if EXPR contains no expressions.
6120
6121 Wed Dec 18 11:43:22 1996 Jim Blandy <jimb@totoro.cyclic.com>
6122
6123 * eval.c, debug.h: Revert changes of Dec 16 and Nov 21. They
6124 cause an infinite loop (???). So much for the algebraic
6125 equivalency of variable-sized arrays and alloca...
6126
6127 Tue Dec 17 20:29:03 1996 Marius Vollmer <mvo@zagadka.ping.de>
6128
6129 * backtrace.c (scm_display_error): Bugfix: scm_procedure_p returns
6130 a SCM boolean, not a C boolean.
6131
6132 Sat Dec 14 23:21:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
6133
6134 * gc.c (SCM_MTRIGGER_HYSTERESIS): New memory management parameter.
6135 (scm_must_malloc, scm_must_realloc): Added a hysteresis to the
6136 rules for raising scm_mtrigger. Previously, unfortunate but not
6137 unlikely circumstances could result in almost constant invokation
6138 of the gc. Now, this situations should be less likely, but they
6139 are not prevented completely.
6140
6141 Tue Dec 17 16:19:07 1996 Jim Blandy <jimb@totoro.cyclic.com>
6142
6143 * numbers.c (scm_fuck): Procedure removed; looks like old test
6144 code.
6145 * numbers.h: Prototype removed.
6146
6147 Mon Dec 16 18:20:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
6148
6149 * debug.h (scm_debug_frame): Change `vect' member from an in-line
6150 array to a pointer, to match my Nov 21 change in eval.c.
6151
6152 Fri Dec 13 16:12:14 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6153
6154 * libguile.h: Added #include "libguile/backtrace.h", #include
6155 "libguile/stacks.h".
6156
6157 * strings.c (scm_string scm_make_string scm_string_ref
6158 scm_string_set_x scm_string_equal_p scm_string_append):
6159 Bugfix according to scm patch from Aubrey Jaffer:
6160 Corrected long-standing
6161 (not (eqv? (integer->char 128)
6162 (string-ref (make-string 1 (integer->char 128)) 0)))
6163 bug found by John Kozak <jk@noontide.demon.co.uk>.
6164
6165 * strports.c, strports.h: Make scm_eval_0str return the value of
6166 the last expression evaluated (previously, it returned void).
6167
6168 * strports.c, strports.h: New function: scm_read_0str. Does what
6169 it sounds like.
6170
6171 Tue Dec 10 23:38:43 1996 Gary Houston <ghouston@actrix.gen.nz>
6172
6173 * simpos.c (scm_getenv): return #f if string can't be found in the
6174 environment instead of throwing an exception, for compatibility
6175 with numerous other systems.
6176
6177 Mon Dec 9 23:23:35 1996 Tom Tromey <tromey@cygnus.com>
6178
6179 * Makefile.am (.c.x): Use guile-snarf.
6180 * configure.in (AC_OUTPUT): Generate guile-snarf; make it
6181 executable.
6182 * guile-snarf.in: New file, resurrected from old guile-snarf.sh.
6183
6184 Mon Dec 9 18:36:50 1996 Jim Blandy <jimb@duality.gnu.ai.mit.edu>
6185
6186 * backtrace.c (scm_display_error_message): Made non-static, and
6187 renamed from display_error_message.
6188 * backtrace.h (scm_display_error_message): Added extern decl.
6189 * throw.c (uncaught_throw): Use it to display the error message.
6190
6191 Mon Dec 9 10:10:38 1996 Tom Tromey <tromey@cygnus.com>
6192
6193 * inet_aton.c: Use #if 0, not #ifdef 0.
6194
6195 Mon Dec 9 06:36:48 1996 Gary Houston <ghouston@actrix.gen.nz>
6196
6197 * ioext.c (scm_sys_ftell): use scm_long2num instead of SCM_MAKINUM
6198 to convert the returned value.
6199 (scm_sys_fseek): use scm_num2long instead of SCM_INUM to convert
6200 the offset argument.
6201
6202 Sun Dec 8 21:06:38 1996 Jim Blandy <jimb@duality.gnu.ai.mit.edu>
6203
6204 Add new interface to catch/throw, usable from C as well as
6205 Scheme.
6206 * throw.h (scm_catch_body_t, scm_catch_handler_t): New types.
6207 (scm_internal_catch): New function, replaces...
6208 (scm_catch_apply): Deleted.
6209 * throw.c (scm_catch_apply): Deleted; replaced with a more general
6210 mechanism which is a bit more code, but can be used nicely from C
6211 and implement the Scheme semantics as well.
6212 (scm_internal_catch): This is the replacement; it's named after
6213 the analogous function in Emacs.
6214 (scm_catch): Reimplemented in terms of the above.
6215 (struct catch_body_data, catch_body, catch_handler): New
6216 functions, used by scm_catch.
6217 * root.c (cwdr): Reimplemented in terms of scm_internal_catch.
6218 (struct cwdr_body_data, cwdr_body, cwdr_handler): New functions;
6219 support for new cwdr.
6220
6221 * Makefile.am (libpath.h): Re-incorporate Mikael's changes of Wed
6222 Oct 30.
6223
6224 Sun Dec 8 17:55:34 1996 Marius Vollmer <mvo@zagadka.ping.de>
6225
6226 * acconfig.h: Added DYNAMIC_LINKING symbol.
6227 * configure.in: Add option and checks for dynamic linking.
6228 * dynl.c, dynl-dl.c, dynl-dld.c, dynl-shl.c, dynl-vms.c,
6229 dynl.h: New files for dynamic linking support.
6230 * Makefile.am (libguile_a_SOURCES):
6231 Added "dynl.c".
6232 (modinclude_HEADERS): Added "dynl.h".
6233 (EXTRA_DIST): Added "dynl-dl.c", "dynl-dld.c", "dynl-shl.c" and
6234 "dynl-vms.c".
6235 * init.c (scm_boot_guile_1): Call
6236 scm_init_dynamic_linking to initialize dynamic linking support.
6237
6238 Thu Dec 5 22:47:53 1996 Marius Vollmer <mvo@zagadka.ping.de>
6239
6240 * init.c (scm_boot_guile_1): Moved `live' variable to the toplevel
6241 (as we Schemers say). It needs to be global, so that I can tweak
6242 it for the proper operation of unexec.
6243 (scm_boot_guile_1_live): New variable, see above.
6244
6245 Sun Dec 1 00:00:49 1996 Tom Tromey <tromey@cygnus.com>
6246
6247 * guile-snarf.sh: Removed.
6248 * PLUGIN/guile.libs: Added dependency for -lm.
6249 * acinclude.m4: Renamed from aclocal.m4.
6250 * PLUGIN/greet: Removed.
6251 * Makefile.am, aclocal.m4: New files.
6252 * configure.in: Updated for Automake.
6253
6254 Thu Nov 28 00:23:55 1996 Marius Vollmer <mvo@zagadka.ping.de>
6255
6256 * eval.c (scm_definedp): Use top_level_lookup_closure_var
6257 and not top_level_lookup_thunk_var.
6258
6259 Wed Nov 27 22:04:19 1996 Jim Blandy <jimb@baalperazim.frob.com>
6260
6261 * Makefile.in (ancillary): List ChangeLog-scm, not ChangeLog.scm.
6262
6263 Wed Nov 27 14:14:56 1996 Marius Vollmer <mvo@zagadka.ping.de>
6264
6265 * eval.c (scm_definedp): Incompatibly changed to be a builtin
6266 Scheme function, instead of syntax. Single argument is now a
6267 symbol.
6268
6269 Thu Nov 21 20:26:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
6270
6271 * ramap.c (scm_ra_sum, scm_ra_difference, scm_ra_product,
6272 scm_ra_divide): Properly terminate statements passed as arguments
6273 to IVDEP macros. (Thanks to Bernard Urban.)
6274
6275 * eval.c (SCM_CEVAL): Use alloca, not GCC's extensions for arrays
6276 with non-constant sizes. (Thanks to Bernard Urban.)
6277
6278 Thu Nov 21 11:17:42 1996 Jim Blandy <jimb@floss.cyclic.com>
6279
6280 It's an "eval closure", not an "eval thunk." A thunk is a
6281 function of no arguments.
6282 * root.h (struct scm_root_state): Renamed
6283 top_level_lookup_closure_var from top_level_lookup_thunk_var.
6284 (scm_top_level_lookup_closure_var): Renamed from
6285 scm_top_level_lookup_thunk_var.
6286 * root.c (mark_root): Uses changed.
6287 * gdbint.c (gdb_eval, gdb_binding): Uses changed.
6288 * init.c (scm_start_stack): Uses changed.
6289 * eval.c (scm_eval, scm_eval_x, scm_init_eval): Rename uses.
6290 Change scheme-visible name to *top-level-lookup-closure* from
6291 *top-level-lookup-thunk*.
6292
6293 Tue Nov 19 22:43:31 1996 Jim Blandy <jimb@totoro.cyclic.com>
6294
6295 * gc.c (scm_igc, scm_gc_mark): Round up the size of the stack we
6296 pass to scm_mark_locations. (Thanks to Aubrey Jaffer.)
6297
6298 Sun Nov 10 13:35:05 1996 Jim Blandy <jimb@floss.cyclic.com>
6299
6300 * gc.c (struct scm_heap_seg_data): Doc fixes.
6301
6302 * gc.c (scm_gc_sweep): Empty all segments' freelists before
6303 sweeping. Then, prepend each segment's free cells to its
6304 freelist, rather than wiping out the old value. (Thanks to Marius
6305 Vollmer.)
6306
6307 * gc.c (which_seg, scm_map_free_list, scm_newcell_count,
6308 scm_check_freelist, scm_debug_newcell): New functions and
6309 variables, for debugging freelist problems.
6310 * pairs.h (SCM_NEWCELL): New debugging version added.
6311 * gc.h (scm_debug_newcell): Added extern declaration, used by
6312 debugging version of SCM_NEWCELL.
6313
6314 Sat Nov 9 19:02:46 1996 Jim Blandy <jimb@floss.cyclic.com>
6315
6316 On some systems <libc.h> conflicts with <unistd.h>, and should not
6317 be #included at all.
6318 * aclocal.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): New autoconf macro.
6319 * acconfig.h (LIBC_H_WITH_UNISTD_H): New CPP symbol.
6320 * configure.in: Call it.
6321 * posix.c, filesys.c: Use its results to decide whether or not to
6322 #include <libc.h>.
6323 * configure, scmconfig.h.in: Rebuilt with autoconf and
6324 autoheader.
6325
6326 Wed Nov 6 16:19:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
6327
6328 * fports.c (scm_stdio_to_port, scm_open_file): Set the port's
6329 pointer to the stdio stream before calling scm_setbuf0, so the
6330 latter will be able to retrieve it. I'm surprised this didn't
6331 segfault earlier. (Thanks to Christopher Lee.)
6332
6333 Wed Nov 6 16:01:20 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6334
6335 * throw.c (scm_lazy_catch, scm_ithrow): Completed implementation
6336 of `lazy-catch'.
6337
6338 Sat Nov 2 21:01:48 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6339
6340 * stacks.c, stacks.h (scm_make_stack): Now takes arbitrary
6341 number of stack narrowing specifier pairs. The first specifier in
6342 a pair controls inner border, the second the outer border. A
6343 number means cut that number of frames, a procedure object means
6344 cut until that object is found in operator position in a frame.
6345
6346 * root.c (cwdr): Bugfix.
6347
6348 * read.c: Recording of positions disabled by default.
6349
6350 * procs.c (scm_closure_p): New function.
6351
6352 * posix.c (scm_tmpnam): New function.
6353
6354 * load.c: Added #include "throw.h".
6355 (scm_sys_search_load_path): Bugfix: Don't add an extra '/' if path
6356 ends with '/'.
6357
6358 * load.c, load.h (scm_read_and_eval_x): New function.
6359
6360 * eval.c: Renamed debug option "deval" to "debug".
6361
6362 (scm_eval_x): `eval!' is no longer accessible from the scheme
6363 level. Motivation: We can't allow operations which introduce
6364 glocs into the scheme level. Guile's type system can't handle
6365 these as data. Use `eval' or `read-and-eval!' as replacement.
6366
6367 * debug.c (scm_m_start_stack): Bugfix: Use SCM_ECONSP instead of
6368 SCM_CONSP since this is a macro!; Set vframe.prev to
6369 scm_last_debug_frame instead of 0. In this way we can look
6370 "above" the virtual start stack frame if we wish.
6371 (scm_debug_hang): New function: Useful for debugging Guile in
6372 certain tricky situations. Will probably be removed later...
6373
6374 * debug.h: Changed semantics of debug option "backtrace". This
6375 option now only indicates whether we want automatic backtrace at
6376 an error.
6377
6378 Wed Oct 30 00:31:55 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6379
6380 * ports.c: #include "filesys.h"
6381 (scm_char_ready_p): input_waiting renamed and moved to filesys.c.
6382
6383 * filesys.c, filesys.h (scm_input_waiting_p): Moved from ports.c.
6384 Motivation: This is system specific code which is related to file
6385 I/O. It also may use select. Added code by Gary Houston to
6386 detect presence of character in stdio buffers.
6387
6388 * libguile.h: #include "libguile/libpath.h"
6389
6390 * Makefile.in (libpath.h): Renamed definition of: LIBRARY_PATH -->
6391 SCM_LIBRARY_DIR; Added definitions of: SCM_PKGDATA_DIR,
6392 SCM_SITE_DIR; Install libpath.h among the other include files.
6393
6394 * load.c, load.h (scm_sys_package_data_dir): New function.
6395
6396 Mon Oct 28 11:43:41 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6397
6398 * stacks.h: Bugfix: Don't use tail-array length field as stack
6399 length field! This screwed GC.
6400
6401 Tue Oct 22 01:01:00 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6402
6403 * _scm.h: Added #ifndef around definition of macros min and max.
6404
6405 * __scm.h: Added hooks for threads to plugin to in ints protection
6406 macros: SCM_THREAD_DEFER, SCM_THREAD_ALLOW, SCM_THREAD_REDEFER,
6407 SCM_THREAD_ALLOW_1, SCM_THREAD_ALLOW_2. Motivation: We don't want
6408 the main code in these macros duplicated and spread over multiple
6409 files. Renamed SCM_THREADS_SWITCHING_CODE ->
6410 SCM_THREAD_SWITCHING_CODE.
6411
6412 Tue Oct 29 14:55:40 1996 Marius Vollmer <mvo@zagadka.ping.de>
6413
6414 * snarf.h: New file.
6415 * guile-snarf.sh: New file.
6416 * Makefile.in (inner_h_files): Added snarf.h
6417 (ancillary, install, uninstall, distclean): Added actions for
6418 guile-snarf.
6419 (.c.x): Use guile-snarf.
6420 (guile-snarf): New rule, to produce guile-snarf from guile-snarf.sh.
6421 (gen_c_files): Note that these depend on guile-snarf.
6422 * _scm.h: Removed the snarfing macros (SCM_PROC, etc). They are
6423 now in "snarf.h". Added #include "snarf.h" to get them.
6424 * libguile.h: Added #include "snarf.h".
6425 (Patches applied and tweaked by Jim Blandy.)
6426
6427 Tue Oct 29 13:21:13 1996 Jim Blandy <jimb@totoro.cyclic.com>
6428
6429 * socket.c: Use K&R style declaration for 'close'; the GNU coding
6430 standards suggest against providing prototypes for system
6431 functions. Thanks to Greg Troxel.
6432
6433 Mon Oct 28 16:48:32 1996 Jim Blandy <jimb@floss.cyclic.com>
6434
6435 * strports.c (scm_eval_0str): New function.
6436 #include "read.h", to get prototype for scm_read.
6437 * Makefile.in (strports.o): Update dependencies.
6438 * strports.h: New prototype.
6439
6440 * numbers.c (scm_integer_p): Renamed from scm_int_p; change its
6441 scheme name from "int?" to "integer?". It seems to do the job.
6442 * numbers.h: Rename prototype too.
6443 * scmhob.h (intp): Change definition to refer to scm_integer_p. I
6444 hope this is right.
6445
6446 * numbers.c (scm_less_p, scm_gr_p, scm_leq_p, scm_geq_p,
6447 scm_num_eq_p): Rename these according to R4RS conventions: call
6448 them <, <=, =, >, and >=, not <?, <=?, =?, >?, and >=?. En route
6449 to making libguile R4RS compliant without ice-9...
6450
6451 * load.c (scm_sys_search_load_path): Search for files under all
6452 extensions listed in the %load-extensions variable. If FILENAME
6453 is absolute, return it unchanged, without searching the load path.
6454 (scm_loc_load_extensions): New variable, pointing to
6455 %load-extensions' value cell.
6456 (scm_init_load): Initialize it, and the value it points to.
6457 (scm_primitive_load_path): Improve error reporting.
6458
6459 * load.c (scm_loc_load_hook): New variable, pointing to value cell
6460 of new Scheme variable %load-hook.
6461 (scm_primitive_load): Apply %load-hook to filename.
6462
6463 Mon Oct 28 06:28:28 1996 Gary Houston <ghouston@actrix.gen.nz>
6464
6465 * configure.in: add tests for figuring out whether buffered data
6466 is available in a FILE structure, which is needed by char-ready.
6467
6468 * acconfig.h: define FILE_CNT_FIELD, FILE_CNT_GPTR and
6469 FILE_CNT_READPTR.
6470
6471 * simpos.c (scm_getenv): renamed from scm_sys_getenv. Throw
6472 exceptions using misc_error instead of syserror. It seems a bit
6473 odd to throw an exception if a string can't be found in the
6474 environment, but it's consistent with open-file, stat etc.
6475 (simpos.h): remove sys_ from getenv.
6476
6477 * posix.c (scm_putenv): renamed from scm_sys_putenv. If an error
6478 occurs, throw an error instead of returning errno. Return value
6479 is now unspecified.
6480 (numerous in posix.c and posix.h): removed superfluous sys_ from names.
6481
6482 Sun Oct 27 01:22:04 1996 Gary Houston <ghouston@actrix.gen.nz>
6483
6484 * filesys.c (scm_stat2scm): derive file type and permissions from
6485 the stat mode and append them to the returned vector.
6486 There isn't much overhead in doing this and it avoids the need to
6487 work with S_IRUSR et al. in Scheme.
6488 Define symbols scm_sym_regular etc.
6489 (scm_init_filesys): don't intern S_IRUSR etc.
6490
6491 * load.c: change s_try_load and s_try_load_path to s_primitive_load
6492 and s_primitive_load_path.
6493
6494 * eval.c, load.c, error.c (scm_wta): use scm_misc_error.
6495
6496 * error.h: don't declare error symbols. prototype for scm_misc_error.
6497
6498 * stackchk.c (scm_stack_overflow_key): defined here instead of in
6499 error.c.
6500
6501 * error.c: use SCM_SYMBOL to set up error keys.
6502 scm_misc_error: new procedure.
6503
6504 Fri Oct 25 01:56:30 1996 Jim Blandy <jimb@floss.cyclic.com>
6505
6506 * read.c (scm_lreadr): Recognize SCSH-style block comments; text
6507 between `#!' and `!#' is ignored.
6508 (skip_scsh_block_comment): New function.
6509
6510 * feature.c (scm_set_program_arguments): New argument, FIRST.
6511 * feature.h: Update prototype.
6512 * init.c (scm_boot_guile_1): Pass new argument to
6513 scm_set_program_arguments.
6514
6515 Tue Oct 22 20:54:42 1996 Jim Blandy <jimb@floss.cyclic.com>
6516
6517 * init.c (scm_start_stack): Don't initialize scm_progargs here.
6518 (scm_boot_guile): Call scm_set_program_arguments here, later than
6519 the old initialization.
6520
6521 * init.c: (scm_boot_guile, scm_boot_guile_1): New, simplified
6522 initialization procedure.
6523 - Delete in, out, err arguments; there are other perfectly good
6524 ways to override these when desired.
6525 - Delete result argument; this function shouldn't ever return.
6526 - Rename init_func argument to main_func, for less confusion.
6527 - Delete boot_cmd argument; main_func is more general.
6528 -Add 'closure' argument, to help people pass data to main_func
6529 without resorting to global variables.
6530 - Abort if reentered; don't bother returning an error code.
6531 - Call scm_init_standard_ports to set up the default/current
6532 standard ports; no need to pass them to scm_start_stack.
6533 - Remove code to evaluate the boot_cmd, and start the repl; let
6534 the user do something like that in main_func if they want.
6535 - Remove code to package up a return value; main_func can do any
6536 of that as needed.
6537 - Call exit (0), instead of returning.
6538 (scm_start_stack): Don't initialize the I/O ports here; that's
6539 weird. Delete in, out, err arguments. Move guts to
6540 scm_init_standard_ports, scm_stdio_to_port.
6541 (scm_init_standard_ports): New function, to set up current and
6542 default standard ports.
6543 (scm_start_stack, scm_restart_stack): Make these static.
6544 * init.h (scm_boot_guile): Adjust declaration.
6545 (scm_start_stack, scm_restart_stack): Remove externally
6546 visible declarations for these.
6547 (enum scm_boot_status): Removed; now scm_boot_guile never returns.
6548
6549 * fports.c (scm_stdio_to_port): New function. Its guts used to be
6550 written out several times in scm_start_stack.
6551 * fports.h: New declaration for the above.
6552
6553 * feature.c (scm_set_program_arguments): New function.
6554 * feature.h: New declaration for the above.
6555
6556 * ports.c: Formatting tweak.
6557
6558 Sun Oct 20 03:29:32 1996 Mikael Djurfeldt <mdj@kenneth>
6559
6560 * pairs.h, eval.c, eval.h, feature.c, gc.c, list.c, load.c,
6561 ramap.c, symbols.c: Added new selectors SCM_CARLOC and SCM_CDRLOC
6562 for obtaining the address of a car or cdr field. Motivation:
6563 &SCM_CXR make assumptions about the internal structure of the
6564 SCM_CXR selectors.
6565
6566 * eval.h, eval.c: Added new selector SCM_GLOC_VAL_LOC.
6567 Motivation: see SCM_CXRLOC.
6568
6569 * pairs.h, eval.c, gc.c, init.c, ioext.c, ports.c, ports.h,
6570 srcprop.h, tags.h, throw.c, unif.c: Added new selectors
6571 SCM_SETAND_CAR, SCM_SETAND_CDR, SCM_SETOR_CAR and SCM_SETOR_CDR.
6572 Motivation: Safer use. Some other macros are defined in terms of
6573 these operations. If these are defined using the SCM_SETCXR
6574 (<e1>, SCM_CXR (<e1>) <op> <e2>) pattern a complex <e1> will lead
6575 to inefficiency and an <e1> with side-effects could potentially
6576 break. Also, these particular operations are heavily utilized in
6577 the garbage collector. In unoptimized code there will be a
6578 measurable speedup.
6579
6580 * alist.c, arbiters.c, continuations.c, debug.c, debug.h, eval.c,
6581 eval.h, feature.c, filesys.c, fports.c, gc.c, gsubr.c, init.c,
6582 ioext.c, kw.c, list.c, load.c, mallocs.c, numbers.c, numbers.h,
6583 pairs.c, pairs.h, ports.c, ports.h, posix.c, procprop.c, procs.c,
6584 procs.h, ramap.c, read.c, root.c, srcprop.c, srcprop.h,
6585 strports.c, symbols.c, tags.h, throw.c, unif.c, variable.c,
6586 vports.c: Cleaned up use of pairs: Don't make any special
6587 assumptions about the internal structure of selectors and
6588 mutators: SCM_CXR (<e1>) = <e2> --> SCM_SETCXR (<e1>, <e2>),
6589 SCM_CXR (<e1>) &= <e2> --> SCM_SETAND_CXR (<e1>, <e2>) etc.
6590 (Among other things, this change makes it easier to build Guile
6591 with certain compilers which have problems with casted lvalues.)
6592
6593 Fri Oct 18 01:11:56 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
6594
6595 * stacks.c: Improve selection of relevant stack frames when making
6596 a stack object. Introduce one level of indirection in the stack
6597 object to make it possible to "narrow" to a certain region of the
6598 stack. This facilitates making use of more clever algorithms (not
6599 implemented) for selecting relevant frames and gives a cleaner
6600 design since selection of frames can be done independently of
6601 extraction of frames from the real stack.
6602 (scm_stack_id): Also take #t as argument which means look at
6603 current stack.
6604
6605 * stacks.h: In struct scm_stack: Turn field frames into a pointer.
6606 Turn n_tail into an integer directly representing current number
6607 of frames in stack. Add field tail.
6608
6609 * ports.c (scm_port_line_x, scm_port_column_x): New mutators.
6610
6611 * debug.c (scm_make_memoized): Made it available at scheme level.
6612 (scm_unmemoize, scm_memoized_environment): Bugfix: Check for
6613 SCM_NIMP before applying heavier predicates in argument checking.
6614 (scm_local_eval): Also take memoized object as argument.
6615
6616 * backtrace.c (scm_display_error): Just a safety measure: Stacks
6617 aren't created with zero length, but should such a strange
6618 creature suddenly turn up...
6619
6620 Wed Oct 16 11:08:41 1996 Marius Vollmer <mvo@zagadka.ping.de>
6621
6622 * hashtab.h (scm_hashx_remove_x): Renamed `delete' parameter to
6623 `del', for the sake of C++ compilers. (Patch applied by JimB.)
6624
6625 Tue Oct 15 17:06:13 1996 Jim Blandy <jimb@floss.cyclic.com>
6626
6627 * variable.c (scm_make_variable): Make the name hint optional, as
6628 documented.
6629 (anonymous_variable_sym): Renamed from variable_sym. All uses
6630 changed.
6631
6632 * load.c (scm_primitive_load, scm_primitive_load_path): Renamed
6633 from scm_sys_try_load and scm_sys_try_load_path. The Scheme name
6634 of scm_primitive_load_path was also changed to
6635 "primitive-load-path", from "%try-load-path". Callers changed.
6636 We'd like to respect the convention that a function named
6637 "try-mumble" should behave just like the function called "mumble",
6638 but return #f instead of signalling some error.
6639 * load.h: Rename prototypes.
6640
6641 Tue Oct 15 05:34:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
6642
6643 * print.c (make_print_state, grow_print_state), print.h: Modified
6644 the print state representation: Don't use a tail array for
6645 recording of circular references. Resizing of the print state
6646 structure invalidates the print state pointer. To avoid passing
6647 around an indirect print state reference to all printing
6648 functions, we instead let the print state reference a resizable
6649 vector.
6650
6651 Mon Oct 14 19:25:00 1996 Jim Blandy <jimb@totoro.cyclic.com>
6652
6653 * alist.c (scm_sloppy_assq, scm_sloppy_assv, scm_sloppy_assoc):
6654 Don't crash when passed an improper list terminated by a
6655 non-immediate value.
6656
6657 Mon Oct 14 19:08:33 1996 Jim Blandy <jimb@floss.cyclic.com>
6658
6659 Allocate data for structures on an eight-byte boundary, as
6660 required by the tagging system.
6661 * struct.c (alloc_struct): New function.
6662 (scm_make_struct, scm_make_vtable_vtable): Call it.
6663 * struct.h (scm_struct_n_extra_words): Bump to 3.
6664 (scm_struct_i_ptr): New "field".
6665 * gc.c (scm_gc_sweep): When we need to free the data, use the
6666 information stored by alloc_struct to find the beginning of the
6667 block allocated to the structure, so we can free it.
6668
6669 Mon Oct 14 17:07:55 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
6670
6671 * init.c (scm_boot_guile_1): Moved scm_init_struct in front of
6672 scm_init_stacks.
6673
6674 * debug.h (SCM_VOIDFRAME, SCM_VOIDFRAMEP): New macros.
6675 (scm_debug_info): New member: id.
6676
6677 * stacks.c: Stacks are now represented as structs; Stacks have an
6678 id given to them by `start-stack'.
6679 (scm_last_stack_frame): Added predicates `stack?' and `frame?'.
6680
6681 * stacks.h: Added declarations of scm_stack_p and scm_frame_p;
6682 Changed stack representation.
6683
6684 * debug.c (scm_procedure_name): Try procedure property `name' for
6685 compiled closures aswell.
6686
6687 * gc.c (scm_init_storage): Initialize scm_stand_in_procs to SCM_EOL.
6688
6689 * eval.c: scm_i_name moved to gsubr.c
6690 (scm_m_define): Record names of all kinds of procedure
6691 objects. (Earlier, only closures were recorded.)
6692
6693 * procprop.h: Added declaration of scm_i_name.
6694
6695 * gsubr.c: Added global scm_i_name. Added #include "procprop.h".
6696 (scm_make_gsubr): Record names of compiled closures.
6697
6698 Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
6699
6700 * debug.c, debug.h: Removed obsolete code.
6701
6702 * continuations.c, continuations.h, debug.c, gc.c, init.c, root.c,
6703 stacks.c: Renamed regs --> scm_contregs.
6704
6705 * print.c (scm_free_print_state): Cleanup print state before
6706 returning it to pool. It is better to do it here than in
6707 scm_prin1 since scm_prin1 is called often.
6708
6709 * srcprop.c (scm_source_properties, scm_set_source_properties_x,
6710 s_set_source_property_x): Check that first argument is a pair or a
6711 memoized object.
6712
6713 * srcprop.c, srcprop.h: Made scm_i_filename, scm_i_copy,
6714 scm_i_line, scm_i_column and scm_i_breakpoint global.
6715
6716 * init.c: Added #include "backtrace.h" and #include "stacks.h".
6717 (scm_boot_guile_1): Added calls to scm_init_backtrace and
6718 scm_init_stacks.
6719
6720 * debug.h: Added debug object smob declaration and macro
6721 definitions.
6722
6723 * configure.in: Build with backtrace.o and stacks.o if debug
6724 support enabled.
6725
6726 * Makefile.in: Added entries for new files: backtrace.c,
6727 backtrace.h, stacks.c and stacks.h.
6728
6729 * symbols.c (scm_sym2ovcell): Fixed documentation.
6730
6731 * _scm.h (min, max): Added.
6732
6733 * async.c: Moved `min' macro to _scm.h.
6734
6735 * debug.h: New debug options SCM_BACKTRACE_MAXDEPTH and
6736 SCM_BACKTRACE_INDENT.
6737
6738 * eval.c: Added new debug options `maxdepth' and `indent'.
6739
6740 * print.c (make_print_state): Bugfix: Initialize pstate->ceiling.
6741
6742 * print.h: Added selector SCM_PRINT_STATE.
6743
6744 * print.c: New functions: scm_make_print_state,
6745 scm_free_print_state.
6746
6747 * print.h: Added declarations for scm_make_print_state,
6748 scm_free_print_state.
6749
6750 * debug.c (scm_m_start_stack): New acro.
6751
6752 * debug.h: Small cleanup.
6753
6754 * init.c (scm_boot_guile_1): Moved scm_init_debug below
6755 scm_init_eval.
6756
6757 Sun Oct 13 20:14:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
6758
6759 * __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
6760 arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h,
6761 chars.c, chars.h, continuations.c, continuations.h, debug.c,
6762 debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c,
6763 eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c,
6764 filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c,
6765 gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h,
6766 hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h,
6767 kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c,
6768 markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h,
6769 objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h,
6770 ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c,
6771 procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h,
6772 root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c,
6773 simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h,
6774 stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h,
6775 strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h,
6776 struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c,
6777 unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c,
6778 version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to
6779 declare functions with prototypes. (Patch thanks to Marius
6780 Vollmer.)
6781
6782 More prototype-related changes from Marius Vollmer:
6783 * gdb_interface.h: Wrapped header file in #ifdef/#endif
6784 * gscm.h (gscm_run_scm): Added prototype for `initfn' paramter.
6785 * ports.h (ptobfuns): Added prototypes. This means some casting in
6786 fports.c.
6787 * fports.c: Added casts for initializations, since the functions
6788 are defined to take FILE * as their stream argument, not SCM.
6789 * fdsocket.c, fdsocket.h: Made `init_addr_buffer' static.
6790 * genio.c (scm_gen_puts): Changed `unsigned char *str_data' parameter
6791 to `char *str_data' to conform to prototype.
6792
6793 Sat Oct 12 21:49:29 1996 Gary Houston <ghouston@actrix.gen.nz>
6794
6795 * error.c, eval.c, load.c, stackchk.c: use scm_error not lgh_error.
6796
6797 * __scm.h (lgh_error): removed, lgh shouldn't be in libguile.
6798
6799 * stime.c, stime.h: use SCM_P method.
6800
6801 Sat Oct 12 16:16:25 1996 Jim Blandy <jimb@floss.cyclic.com>
6802
6803 * eval.c (scm_nconc2last): Don't accept an empty list; apply must
6804 be given at least two arguments. Insist that lst's last element
6805 be a list, but don't make any requirements of its predecessors.
6806
6807 Fri Oct 11 03:58:25 1996 Jim Blandy <jimb@floss.cyclic.com>
6808
6809 * eval.c (scm_nconc2last): Revert last change; there seems to be
6810 other stuff going on here.
6811
6812 Fri Oct 11 02:43:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
6813
6814 * eval.c (scm_nconc2last): Make sure that each element of lst
6815 (which is a list of argument lists, except for the tail) is a
6816 proper list, i.e., finite and terminated by '().
6817
6818 Thu Oct 10 21:09:13 1996 Jim Blandy <jimb@totoro.cyclic.com>
6819
6820 * unif.c (scm_ra_set_contp): Localize `inc' declaration.
6821 Clarifies flow.
6822
6823 * struct.c (scm_make_struct, scm_make_vtable_vtable): Use the
6824 symbolic name for the tag, scm_tc3_cons_gloc, instead of just
6825 saying "1".
6826
6827 * vectors.c (scm_make_vector): Fill vectors with the undefined
6828 value, to help make Guile Scheme code more portable to other
6829 Schemes.
6830
6831 * symbols.c (scm_intern_obarray_soft, scm_sysintern): Doc fixes.
6832 * symbols.h, tags.h: Doc fixes.
6833
6834 Wed Oct 9 19:39:29 1996 Jim Blandy <jimb@floss.cyclic.com>
6835
6836 * async.c (scm_take_signal): Doc fixes.
6837
6838 Mon Oct 7 22:30:34 1996 Jim Blandy <jimb@totoro.cyclic.com>
6839
6840 * numbers.c (scm_divbigint): When the remainder is zero, we don't
6841 want to subtract it from the modulus; we just want to leave it
6842 alone.
6843
6844 Mon Oct 7 00:14:17 1996 Mikael Djurfeldt <mdj@kenneth>
6845
6846 * init.c (scm_boot_guile_1): Bugfix: i --> base in argument to
6847 `scm_init_threads'.
6848
6849 * throw.h (scm_catch_apply): Removed the `lazyp' argument.
6850
6851 * throw.c (scm_catch_apply): Finished implementation of
6852 `lazy-catch'.
6853
6854 Sun Oct 6 05:26:05 1996 Gary Houston <ghouston@actrix.gen.nz>
6855
6856 * filesys.c (scm_sys_select): move SCM_ALLOW_INTS past the sreturn
6857 check.
6858 (scm_init_filesys): set "i/o-extensions" feature.
6859 include feature.h.
6860
6861 Sat Oct 5 12:22:00 1996 Jim Blandy <jimb@floss.cyclic.com>
6862
6863 * Makefile.in (root.o): Correct dependencies.
6864
6865 Sat Oct 5 18:40:42 1996 Mikael Djurfeldt <mdj@kenneth>
6866
6867 * Makefile.in: Added dependency entry for root.o.
6868
6869 * continuations.c, debug.[ch], eval.c, gscm.c init.c, root.c,
6870 throw.c: Renamed last_debug_info_frame -> scm_last_debug_frame.
6871
6872 * init.c (scm_start_stack): Set initial root continuation number
6873 to 0.
6874
6875 * procs.c: New function: scm_thunk_p.
6876
6877 * procs.h: Added declarations of scm_thunk_p.
6878
6879 * root.c: Renamed `call-with-new-root' -->
6880 `call-with-dynamic-root'.
6881 (cwdr): Removed allocation of new root state. This should be done
6882 separately by use of scm_make_root.
6883 (scm_apply_with_dynamic_root): New function: Does what it
6884 sounds like. Needed when spawning threads.
6885
6886 * root.h: Added member last_debug_frame to root state.
6887 Added #include "libguile/debug.h"
6888
6889 * throw.c: Renamed scm_catch --> scm_catch_apply and added more
6890 arguments. The motivation is that code in root.c needs catch
6891 functionality, and we want to avoid code duplication.
6892 New functions: scm_catch, scm_lazy_catch. These are wrappers for
6893 scm_catch_apply. scm_lazy_catch is intended to introduce catch
6894 handlers that run without popping the stack into the dynwind
6895 chain.
6896
6897 * throw.h: Added prototypes for scm_catch_apply and
6898 scm_lazy_catch.
6899
6900 Thu Oct 3 11:12:33 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
6901
6902 * root.h (scm_root, scm_set_root): Decouple thread support details
6903 by introducing the selector SCM_THREAD_LOCAL_DATA and the mutator
6904 SCM_SET_THREAD_LOCAL_DATA.
6905
6906 * print.c (scm_iprlist): Bugfix: Added SCM_ECONSP tests in hare
6907 and tortoise scanning loop.
6908
6909 Thu Oct 3 00:04:53 1996 Jim Blandy <jimb@totoro.cyclic.com>
6910
6911 * Makefile.in: Rebuild dependencies.
6912
6913 * libguile.h: #include "libguile/print.h" before "smob.h", since
6914 the latter uses the print_state structure.
6915
6916 * throw.c (scm_ithrow): Use the correct variable when checking to
6917 see if a given element of scm_dynwinds is a valid catch.
6918
6919 * throw.c (scm_ithrow): If scm_dynwinds has invalid list
6920 structure, abort; don't just silently ignore the garbage.
6921
6922 * _scm.h: #include "print.h" here, since it seems to be used just
6923 about everywhere.
6924 * eval.c, gdbint.c, genio.h, numbers.h, smob.h, srcprop.c,
6925 strports.c, unif.h: Don't #include "print.h".
6926
6927 Tue Oct 1 05:15:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
6928
6929 * feature.h (scm_loc_features): Removed external declaration.
6930 (Bug fix suggested by Petr Adamek <adamek@mit.edu>.)
6931
6932 Tue Oct 1 00:00:10 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
6933
6934 * feature.c (scm_init_feature): Added threads feature (needs to be
6935 initialized here, since features doesn't exist when
6936 scm_init_threads is called).
6937
6938 * libguile.h: Added #include "libguile/../threads/threads.h".
6939 (This is a kludge to get thread support working. This should be
6940 fixed.)
6941
6942 * configure.in, acconfig.h: Added flags for thread support.
6943
6944 * scmsigs.c: Define `signal' to be `pthread_signal' if using
6945 mit-pthreads.
6946
6947 * gc.c (scm_igc): Added SCM_THREAD_CRITICAL_SECTION_START and
6948 SCM_THREAD_CRITICAL_SECTION_END. Moved marking of root data to
6949 root.c:mark_root.
6950
6951 * _scm.h: Added conditional #include "threads.h"
6952
6953 * __scm.h (SCM_ASYNC_TICK): Added call to macro
6954 SCM_THREADS_SWITCHING_CODE.
6955
6956 * init.c (scm_start_stack): Call `scm_make_root' to dynamically
6957 allocate the basic dynamic root object.
6958 (scm_boot_guile): Added call to scm_init_root.
6959
6960 * root.c, root.h: Added root smob.
6961 (cwdr, scm_call_with_new_root, scm_dynamic_root, scm_app_wdr): New
6962 functions: Implements dynamic roots mostly according to spec in
6963 SCM manual. Main difference is that the second argument is a
6964 throw handler rather than an error "thunk".
6965
6966 * root.h: Added declaration of scm_init_root.
6967
6968 * root.c: Added #include "genio.h", #include "smob.h", #include
6969 "pairs.h", #include "throw.h", #include "dynwind.h", #include
6970 "eval.h"
6971 (scm_init_root): Added #include "root.x".
6972
6973 * throw.c: Added #include "stackchk.h"
6974 (scm_catch): Changed SCM_DEFER_INTS --> SCM_REDEFER_INTS and
6975 SCM_ALLOW_INTS --> SCM_REALLOW_INTS. This is so that scm_catch
6976 can be used in scm_call_with_new_root; Added reenabling of stack
6977 checking when catching a throw.
6978
6979 Mon Sep 30 21:48:11 1996 Jim Blandy <jimb@totoro.cyclic.com>
6980
6981 * list.c, list.h: Use SCM_P instead of CPP hair. Doc fixes.
6982
6983 * list.c (scm_member, scm_memv, scm_memq): Return #f if a matching
6984 element is not found, as per R4RS.
6985
6986 Sat Sep 28 18:13:01 1996 Jim Blandy <jimb@totoro.cyclic.com>
6987
6988 * list.c: Doc fixes throughout.
6989
6990 Sat Sep 28 02:07:43 1996 Gary Houston <ghouston@actrix.gen.nz>
6991
6992 * strings.c, strings.h: (scm_makfrom0str, scm_makefrom0str_opt:
6993 declare the char * to be const. Avoids a warning in rgx.c.
6994
6995 * ports.h: spelling fix.
6996
6997 * filesys.c (scm_sys_stat, scm_sys,lstat): include file name in
6998 error messages.
6999
7000 * load.c (scm_sys_try_load_path): throw an error if file not found
7001 (like it says it in NEWS).
7002
7003 Fri Sep 27 18:27:01 1996 Jim Blandy <jimb@totoro.cyclic.com>
7004
7005 * symbols.c (scm_intern_obarray_soft): Initialize the new symbol's
7006 PROPS slot to '(), not #f; it's an empty alist.
7007
7008 * throw.h, throw.c: Use SCM_P instead of #if hair.
7009
7010 Remove special support for uncaught throws; see throw.c for
7011 rationale.
7012 * throw.c (uncaught_throw): New function.
7013 (scm_ithrow): Call uncaught_throw if we don't find a throw
7014 target; don't mess with scm_bad_throw_vcell.
7015 (scm_bad_throw_vcell): Variable deleted.
7016 (scm_init_throw): Don't initialize it.
7017
7018 * throw.c (scm_ithrow): Don't let outer key matches shadow inner
7019 #t catches.
7020
7021 Wed Sep 25 04:35:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
7022
7023 * numbers.c (scm_istr2int): If the number is short (as most
7024 numbers are), just call scm_small_istr2int to deal with it.
7025 (scm_small_istr2int): New function, created by un-#ifdefing the
7026 non-bignum version of scm_istr2int and renaming it.
7027
7028 Tue Sep 24 06:48:38 1996 Gary Houston <ghouston@actrix.gen.nz>
7029
7030 * load.c (scm_sys_try_load): don't check whether value returned
7031 by scm_open_file is #f, it won't be. Always return SCM_UNSPECIFIED.
7032 Change the Scheme name from %try-load to primitive-load.
7033
7034 * error.c (scm_error): convert a NULL message to SCM_BOOL_F.
7035 Can avoid passing a message, allowing it to be derived in the
7036 error handler (e.g., if we want to throw to the key both from
7037 Scheme and C).
7038
7039 Mon Sep 23 00:42:15 1996 Mikael Djurfeldt <mdj@kenneth>
7040
7041 * print.c (scm_iprin1, scm_prin1, scm_iprlist): Circular
7042 references now have a new appearance which is more compact and
7043 also gives a clue about what the target of the reference is.
7044 By setting parameters in the print state, more fancy printing can
7045 be achieved. This is used by the (not yet commited) backtrace
7046 code.
7047
7048 Sun Sep 22 17:10:06 1996 Mikael Djurfeldt <mdj@kenneth>
7049
7050 * eval.c, numbers.h, unif.h, smob.h, srcprop.c: Added #include
7051 "print.h"
7052
7053 * print.c: Added #include "struct.h". Removed function
7054 scm_prlist.
7055
7056 * print.h: Modified prototypes for scm_iprlist, scm_prin1 and
7057 scm_iprin1. Removed prototype for scm_prlist.
7058
7059 * arbiters.c (prinarb),
7060 async.c (print_async),
7061 debug.c (prindebugobj, prinmemoized),
7062 eval.c (prinprom, prinmacro),
7063 filesys.c (scm_fd_print, scm_dir_print),
7064 kw.c (print_kw),
7065 mallocs.c (prinmalloc),
7066 numbers.c, numbers.h (scm_floprint, scm_bigprint),
7067 smob.h (scm_smobfuns),
7068 srcprop.c (prinsrcprops),
7069 throw.c (prinjb),
7070 unif.c, unif.h (scm_raprin1, rapr1),
7071 variable.c (prin_var): Changed argument `int writing' to
7072 `scm_print_state *pstate'.
7073
7074 * init.c (scm_boot_guile): Moved scm_init_struct upwards so
7075 that it will be called before scm_init_print.
7076
7077 * print.c (scm_prin1): Print states are now allocated when calling
7078 scm_prin1 and then passed around to all printing functions as an
7079 argument. A cache `print_state_pool' enables reuse of print
7080 states.
7081 (scm_make_print_state): New function.
7082 (scm_iprin1): Adaption to print states.
7083 (scm_iprlist): An initial "hare and tortoise" scan brings down
7084 time complexity to O (depth * N). (Better time complexity will be
7085 achieved when the printing code is completely rewritten.)
7086
7087 Fri Sep 20 22:01:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
7088
7089 * aclocal.m4 (GUILE_STRUCT_UTIMBUF): Use AC_CACHE_CHECK instead of
7090 AC_CACHE_VAL; #define UTIMBUF_NEEDS_POSIX outside AC_CACHE_VAL, so
7091 it gets done whether or not the cache variable has a value.
7092
7093 Thu Sep 19 17:06:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
7094
7095 Distinguish #f and ().
7096 * __scm.h: #undef SICP.
7097 * pairs.h (SCM_EOL): Delete this definition, equating it with
7098 SCM_BOOL_F.
7099 * tags.h (SCM_EOL): Give it a new definition here; I think I found
7100 the value it used to have. Doc fixes, too.
7101
7102 Thu Sep 19 15:33:51 1996 Mikael Djurfeldt <mdj@kenneth>
7103
7104 * struct.c (scm_make_struct_layout, init_struct, scm_struct_ref,
7105 scm_struct_set_x), struct.h, gc.c (scm_gc_mark): Completed Tom
7106 Lord's implementation of structs, allowing for tail arrays as
7107 described in the manual. Also fixed some bugs. (Both the interface
7108 and the implementation should be improved.)
7109
7110 * read.c (scm_init_read): Removed #ifdef READER_EXTENSIONS
7111
7112 * print.c, print.h: Closures now print like #<procedure foo (x)>.
7113 People who whish to see the source can do `(print-enable 'source)'.
7114 Removed #ifdef DEBUG_EXTENSIONS.
7115
7116 Thu Sep 19 00:00:29 1996 Gary Houston <ghouston@actrix.gen.nz>
7117
7118 * filesys.c (scsm_sys_stat): don't SIGSEGV if argument is an
7119 integer (assuming for now accepting an integer is a good thing).
7120
7121 * error.c, fports.c: replace use of %S in lgh_error args with %s.
7122 %S will be used instead for write'ing arguments.
7123
7124 * unif.c (scm_transpose_array): change arguments in the SCM_WNA
7125 asserts. fix a few other asserts.
7126 (scm_aind, scm_enclose_array, scm_array_in_bounds_p,
7127 scm_uniform_vector_ref, scm_array_set_x,
7128 scm_dimensions_to_unform_array): change args in
7129 SCM_WNA SCM_ASSERTS and change scm_wta's to scm_wrong_num_args.
7130 strop.c (scm_substring_move_left_x, scm_substring_move_right_x,
7131 scm_substring_fill_x): likewise.
7132 gsubr.c (scm_gsubr_apply): likewise.
7133 eval.c (SCM_APPLY): likewise.
7134
7135 * eval.c (4 places): replace scm_everr with lgh_error or
7136 scm_wrong_num_args.
7137
7138 * error.c, error.h (scm_wrong_num_args, scm_wrong_type_arg,
7139 scm_memory_error): new procedures.
7140 scm_everr: deleted. can use scm_wta, dropping first two args.
7141 scm_error: convert NULL subr to SCM_BOOL_F.
7142
7143 * __scm.h: don't define SCM_STACK_OVFLOW, SCM_EXIT, SCM_ARG6, SCM_ARG7,
7144 SCM_ARGERR.
7145
7146 * stackchk.c (scm_report_stack_overflow): use lgh_error instead
7147 of scm_wta.
7148
7149 * error.c, error.h: new error keys: scm_arg_type_key,
7150 scm_args_number_key, scm_memory_alloc_key, scm_stack_overflow_key,
7151 scm_misc_error_key.
7152 scm_wta: reimplement using lgh_error instead of scm_everr.
7153
7154 Wed Sep 18 17:13:35 1996 Mikael Djurfeldt <mdj@kenneth>
7155
7156 * gdbint.c: scm_lread now has one more argument.
7157
7158 * ports.c, ports.h: Name change: scm_\(line\|column\)_number -->
7159 scm_port_\1; Added mutator scm_set_port_filename_x (used when
7160 loading source from non-file ports, which, e. g., happens when
7161 using the Emacs interface).
7162
7163 * fports.c (scm_open_file): Don't call scm_makfrom0str on a scheme
7164 object.
7165
7166 * read.c: Added code for recording of positions of source code
7167 expressions; New functions: recsexpr, scm_lreadrecparen;
7168 _scm_make_srcprops --> scm_make_srcprops
7169 (scm_flush_ws): Removed updating of positions counters. This work
7170 is already done by scm_gen_getc
7171
7172 * read.h: Added prototype for scm_lreadrecparen
7173
7174 * print.c: Added #include "alist.h"
7175
7176 * eval.c: Added #include "hash.h"
7177
7178 * eq.c: Added #include "ramap.h"
7179
7180 * options.c: Documentation fixes.
7181
7182 * srcprop.c (scm_finish_srcprop): Bugfix: update ptr.
7183 (scm_init_srcprop): Adjusted size of initial source-whash. Name
7184 changes: tc16_srcprops --> scm_tc16_srcprops, _scm_make_srcprops
7185 --> scm_make_srcprops
7186
7187 * srcprop.h: Name changes: tc16_srcprops --> scm_tc16_srcprops,
7188 _scm_make_srcprops --> scm_make_srcprops; Remove one layer of
7189 function calls in the definition of the whash access macros.
7190
7191 Tue Sep 17 11:33:16 1996 Lee Iverson <leei@Canada.AI.SRI.COM>
7192
7193 * init.c (scm_boot_guile): Add level of indirection to
7194 scm_boot_guile_1() to ensure that stack base pointer is properly
7195 initialized. There was no guarantee that variable i was the
7196 highest/lowest variable on stack (i.e. the call frame of
7197 scm_boot_guile was not completely protected from gc).
7198
7199 Tue Sep 17 01:40:56 1996 Gary Houston <ghouston@actrix.gen.nz>
7200
7201 * ports.h (scm_port_table): put back file_name, it will be used to
7202 support debugging. Undo related changes in fports.c, ioext.c,
7203 ports.c, gc.c.
7204
7205 Sun Sep 15 03:58:29 1996 Gary Houston <ghouston@actrix.gen.nz>
7206
7207 * ports.h (scm_port_table): remove file_name member for now, it seems
7208 undesirable.
7209 * fports.c (scm_open_file): don't set file_name in PTAB.
7210 (prinfport): don't use file_name in PTAB.
7211 * ioext.c (scm_sys_duplicate_port): don't set file_name in PTAB.
7212 * ports.c (scm_add_to_port_table): don't intialize file_name.
7213 (scm_port_file_name): remove for now.
7214 * gc.c (scm_gc_mark): don't mark PTAB file_name.
7215
7216 * fports.h (scm_mkfile): prototype deleted.
7217 * fports.c (scm_mkfile): merged into scm_open_file to simplify.
7218
7219 * debug.c, unif.c: use scm_out_of_range instead of
7220 wta for range errors (ASSERT still needs work).
7221
7222 * error.c, error.h (scm_out_of_range): new procedure.
7223
7224 * error.c, error.h (scm_out_of_range_key): new key.
7225
7226 * posix.c (scm_sync): #else was missing.
7227
7228 * error.c, error.h: append _key to names scm_num_overflow and
7229 scm_system_error.
7230
7231 * __scm.h (SCM_SYSMISSING, SCM_NUM_OVERFLOW): use SCM_BOOL_F instead
7232 of consing an empty list.
7233 (SCM_SYSERROR etc.): move into error.c, make them procedures instead
7234 of macros, saves code and string space.
7235 error.c, fports.c, numbers.c, posix.c, ioext.c, filesys.c, socket.c,
7236 fdsocket.c, simpos.c: change names of SCM_SYSERROR etc., to
7237 lower case. Rename scm_syserror_m to scm_syserror_msg.
7238 error.h: prototypes for new procedures.
7239
7240 Sat Sep 14 03:35:41 1996 Gary Houston <ghouston@actrix.gen.nz>
7241
7242 * numbers.c: use SCM_NUM_OVERFLOW instead of scm_wta or ASSERT.
7243
7244 * error.c, error.h: setup scm_num_overflow key.
7245
7246 * __scm.h: SCM_NUM_OVERFLOW: macro for reporting numerical overflow.
7247 Remove definition of SCM_OVSCM_FLOW.
7248
7249 * fports.c (scm_open_file): use SCM_SYSERROR_M.
7250
7251 * __scm.h: SCM_SYSERROR_M: new macro for system errors with an
7252 explicit message and args.
7253
7254 * error.c, error.h, __scm.h: change system_error_sym to
7255 scm_system_error.
7256
7257 * error.c (system_error_sym): remove leading %% from the Scheme name
7258 "%%system-error".
7259
7260 * __scm.h (SCM_SYSMISSING): Redefine using lgh_error.
7261
7262 Fri Sep 13 12:58:08 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7263
7264 * __scm.h, chars.c, debug.c, eval.c, eval.h, extchrs.c, extchrs.h,
7265 fdsocket.c, feature.c, mbstrings.c, mbstrings.h, numbers.c,
7266 numbers.h, print.c, scmhob.h, simpos.h, symbols.c, symbols.h,
7267 tags.h, throw.c, variable.h: Name cleanup. Lots of xxxSCM_yyy
7268 renamed. (These were introduced by unsupervised name
7269 substitution.)
7270
7271 Fri Sep 13 01:19:08 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7272
7273 * print.c: Added code for detection of circular references during
7274 printing. (init_ref_stack, grow_ref_stack): New functions. Added
7275 a hook for printing of closures (accessible via print options).
7276 This leads to a split of calls to scm_iprin1 into two classes:
7277 elementary print operations (e. g. the code which prints a smob)
7278 still use scm_iprin1 while top level calls (like scm_display) use
7279 scm_prin1. scm_prin1 begins by clearing the data structure used
7280 to record reference information.
7281
7282 * print.h: Added declarations of scm_prin1 and scm_prlist.
7283
7284 * strports.c (scm_strprint_obj): scm_iprin1 --> scm_prin1
7285
7286 * gscm.c (gscm_portprint_obj): scm_iprin1 --> scm_prin1
7287
7288 * gscm.h (gscm_print_obj): scm_iprin1 --> scm_prin1
7289
7290 * error.c (err_head): scm_iprin1 --> scm_prin1
7291
7292 * debug.c: Adjusted header comment.
7293
7294 * tags.h: Typo.
7295
7296 Wed Sep 11 17:55:59 1996 Jim Blandy <jimb@totoro.cyclic.com>
7297
7298 * strerror.c: Doc fix.
7299
7300 Thu Sep 12 00:00:32 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7301
7302 * gdbint.c (gdb_read): Now possible to run during GC.
7303 (unmark_port, remark_port): New functions.
7304
7305 * symbols.h (SCM_SETLENGTH): Use SCM_SETCAR.
7306
7307 * read.c (scm_grow_tok_buf): Use scm_vector_set_length_x instead
7308 of allocating a new string object. Also, increase size by
7309 the factor 2 instead of 1.5.
7310
7311 Wed Sep 11 15:10:38 1996 Petr Adamek <jimb@floss.cyclic.com>
7312
7313 * __scm.h (SCM_P): Corrected to run under traditional C.
7314
7315 * _scm.h (SCM_PROC): Extraneous semicolon (outside functions)
7316 removed.
7317
7318 * async.c: Calls to scm_sysintern corrected.
7319
7320 * async.h (scm_async_clock): Redundant declaration removed.
7321
7322 * continuations.c (scm_dynthrow): Redundant declaration removed.
7323
7324 * debug.c (scm_single_step, scm_memoized, scm_lookup_soft):
7325 Definition typos corrected.
7326
7327 * debug.h: Missing declarations of functions in debug.c added
7328 (lots).
7329
7330 * eval.h (scm_eval_args, scm_deval_args, scm_m_undefine):
7331 Missing declarations to functions in eval.c added.
7332
7333 * filesys.c: Possibly uninitialized variable rv.
7334
7335 * gc.h (scm_object_addr, scm_unhash_name): Missing
7336 declarations of functions defined in gc.c added.
7337
7338 * genio.c: Possible typos str_data -> wstr_data. ???
7339
7340 * genio.c: Possibly unintended shadowing of local variable
7341 `int c' (gotos out of scope of inner `c'). ???
7342
7343 * init.c: Uninitialized `SCM last' may be used.
7344
7345 * ioext.h: (scm_sys_isatty_p): Typo.
7346
7347 * list.h (scm_list_head): Missing prototype for function in
7348 list.c added.
7349
7350 * numbers.c (scm_two_doubles): Changed from extern to static
7351 (is used only within numbers.c).
7352
7353 * numbers.h: Repeated declarations removed.
7354
7355 * ports.h (scm_close_all_ports_except): Declaration for the
7356 function defined in ports.c added.
7357
7358 * posix.h: Missing declarations added.
7359
7360 * procs.h (scm_make_subr_opt): Missing declaration added.
7361
7362 * socket.h (scm_sys_gethost): Missing declaration added.
7363
7364 * socket.h: Redundant declarations removed (they are in fdsocket.h).
7365
7366 * srcprop.h (scm_set_source_property_x, scm_finish_srcprop):
7367 Missing declarations added.
7368
7369 * stime.h (scm_get_internal_real_time): Repeated declarations removed.
7370
7371 * struct.c: Uninitialized variable `SCM answer' may be used.
7372
7373 * unif.c (l2ra): Declaration prototype.
7374
7375 * unif.c (scm_array_equal_p): Dummy definition removed (it is
7376 defined in ramap.c).
7377
7378 * unif.h (scm_raprin1, scm_istr2bve, scm_array_equal_p):
7379 Redundant declarations removed (they are in ramap.h).
7380
7381 * variable.h (scm_make_udvariable,
7382 scm_make_undefined_variable): Declaration corrected to
7383 correspond variable.c.
7384
7385 * vectors.h (scm_vector_move_left_x, scm_vector_move_right_x):
7386 Missing declarations added.
7387
7388 Wed Sep 11 14:38:50 1996 Jim Blandy <jimb@floss.cyclic.com>
7389
7390 * Makefile.in (distclean): Don't forget to delete fd.h.
7391
7392 Tue Sep 10 14:01:46 1996 Jim Blandy <jimb@floss.cyclic.com>
7393
7394 * fd.h.in, tags.h: Trivial cleanups.
7395
7396 * marksweep.c, marksweep.h: Deleted; marksweep.c was empty, and
7397 marksweep.h just declared functions from gc.c.
7398 * gc.h, libguile.h: Don't #include "marksweep.h".
7399 * Makefile.in (libobjs, inner_h_files, c_files, gen_c_files): Omit
7400 marksweep.o, marksweep.h, marksweep.c, and marksweep.x. Other
7401 dependencies updated.
7402
7403 * libguile.h: Don't #include "files.h"; it's been deleted.
7404
7405 * files.c (scm_sys_delete_file): Moved to filesys.c.
7406 File is now empty; deleted.
7407 * files.h: Deleted.
7408 * filesys.c: scm_sys_delete_file is now here. Remove
7409 #if's; they seem to rely on remnants of an old portability
7410 regimen. If the problems come up again, solve them properly,
7411 using autoconf. Specifically: Don't test M_SYSV, and #define
7412 remove to be unlink if it's #defined; don't use remove just
7413 because HAVE_STDC_HEADERS is #defined.
7414 * filesys.h: Add declarations for scm_sys_delete_file.
7415 * Makefile.in (libobjs, inner_h_files, c_files, gen_c_files): Omit
7416 files.o, files.h, files.c, and files.x.
7417 * init.c: Don't #include "files.h", and don't call scm_init_files.
7418
7419 Use SCM_P instead of PROTO; the latter intrudes on the user's
7420 namespace.
7421 * params.h: Deleted; definition of SCM_P moved to...
7422 * __scm.h: ... here, where it replaces PROTO macro.
7423 * libguile.h, smob.h: Don't #include "params.h".
7424 * continuations.c, error.h, feature.h, gc.c, gc.h, init.h, load.h,
7425 smob.h: Fix prototypes accordingly.
7426 * Makefile.in: Update dependencies.
7427 (inner_h_files): Remove params.h.
7428
7429 * gc.c: #include "gc.h"; every module should include its header,
7430 to let the compiler cross-check the declarations against the
7431 definitions.
7432
7433 * eq.h, files.h, hashtab.h, load.h, mallocs.h, scmsigs.h,
7434 simpos.h: #include "libguile/__scm.h".
7435
7436 Mon Sep 9 20:00:15 1996 Jim Blandy <jimb@floss.cyclic.com>
7437
7438 * init.c: Don't forget to #include smob.h and init.h.
7439 * Makefile.in: Dependencies updated.
7440
7441 * smob.h: Use PROTO instead of #if __STDC__.
7442
7443 * continuations.c (scm_dynthrow): Use PROTO, not SCM_P.
7444
7445 * __scm.h: Doc fixes.
7446
7447 * __scm.h, libguile.h: Use "quotes" in the #includes, not
7448 <angles>; this allows `make depends' to work properly.
7449
7450 * libguile.h: #include smob.h and pairs.h before the others; they
7451 define typedefs used by other headers.
7452
7453 C files should #include only the header files they need, not
7454 libguile.h (which #includes all the header files); the pointless
7455 recompilation was wasting my time.
7456 * Makefile.in (all .o dependency lists): Regenerated.
7457 * libguile.h: Don't try to get a definition for size_t here...
7458 * __scm.h: Do it here.
7459 * _scm.h: Since this is the internal libguile header, put things
7460 here that all (or a majority) of the libguile files will want.
7461 Don't #include <libguile.h> here; that generates dependencies on
7462 way too much. Instead, get "__scm.h", "error.h", "pairs.h",
7463 "list.h", "gc.h", "gsubr.h", "procs.h", "numbers.h", "symbols.h",
7464 "boolean.h", "strings.h", "vectors.h", "root.h", "ports.h", and
7465 "async.h".
7466 * alist.c: Get "eq.h", "list.h", "alist.h".
7467 * append.c: Get "append.h", "list.h".
7468 * arbiters.c: Get "arbiters.h", "smob.h".
7469 * async.c: Get "async.h", "smob.h", "throw.h", "eval.h".
7470 * boolean.c: Get "boolean.h".
7471 * chars.c: Get "chars.h".
7472 * continuations.c: Get "continuations.h", "dynwind.h", "debug.h",
7473 "stackchk.h".
7474 * debug.c: Get "debug.h", "feature.h", "read.h", "strports.h",
7475 "continuations.h", "alist.h", "srcprop.h", "procprop.h", "smob.h",
7476 "genio.h", "throw.h", "eval.h".
7477 * dynwind.c: Get "dynwind.h", "alist.h", "eval.h".
7478 * eq.c: Get "eq.h", "unif.h", "smob.h", "strorder.h",
7479 "stackchk.h".
7480 * error.c: Get "error.h", "throw.h", "genio.h", "pairs.h".
7481 * eval.c: Get "eval.h", "stackchk.h", "srcprop.h", "debug.h",
7482 "hashtab.h", "procprop.h", "markers.h", "smob.h", "throw.h",
7483 "continuations.h", "eq.h", "sequences.h", "alist.h", "append.h",
7484 "debug.h".
7485 * fdsocket.c: Get "fdsocket.h", "unif.h", "filesys.h".
7486 * feature.c: Get "feature.h".
7487 * files.c: Get "files.h".
7488 * filesys.c: Get "filesys.h", "smob.h", "genio.h".
7489 * fports.c: Get "fports.h", "markers.h".
7490 * gc.c: Get "async.h", "unif.h", "smob.h", "weaks.h",
7491 "genio.h", "struct.h", "stackchk.h", "stime.h".
7492 * gdbint.c: Get "gdbint.h", "chars.h", "eval.h", "print.h",
7493 "read.h", "strports.h", "tag.h".
7494 * genio.c: Get "genio.h", "chars.h".
7495 * gsubr.c: Get "gsubr.h", "genio.h".
7496 * hash.c: Get "hash.h", "chars.h".
7497 * hashtab.c: Get "hashtab.h", "eval.h", "hash.h", "alist.h".
7498 * init.c: Get everyone who has an scm_init_mumble function:
7499 "weaks.h", "vports.h", "version.h", "vectors.h", "variable.h",
7500 "unif.h", "throw.h", "tag.h", "symbols.h", "struct.h",
7501 "strports.h", "strorder.h", "strop.h", "strings.h", "stime.h",
7502 "stackchk.h", "srcprop.h", "socket.h", "simpos.h", "sequences.h",
7503 "scmsigs.h", "read.h", "ramap.h", "procs.h", "procprop.h",
7504 "print.h", "posix.h", "ports.h", "pairs.h", "options.h",
7505 "objprop.h", "numbers.h", "mbstrings.h", "mallocs.h", "load.h",
7506 "list.h", "kw.h", "ioext.h", "hashtab.h", "hash.h", "gsubr.h",
7507 "gdbint.h", "gc.h", "fports.h", "filesys.h", "files.h",
7508 "feature.h", "fdsocket.h", "eval.h", "error.h", "eq.h",
7509 "dynwind.h", "debug.h", "continuations.h", "chars.h", "boolean.h",
7510 "async.h", "arbiters.h", "append.h", "alist.h".
7511 * ioext.c: Get "ioext.h", "fports.h".
7512 * kw.c: Get "kw.h", "smob.h", "mbstrings.h", "genio.h".
7513 * list.c: Get "list.h", "eq.h".
7514 * load.c: Get "load.h", "eval.h", "read.h", "fports.h".
7515 * mallocs.c: Get "smob.h", "genio.h".
7516 * markers.c: Get "markers.h".
7517 * mbstrings.c: Get "mbstrings.h", "read.h", "genio.h", "unif.h",
7518 "chars.h".
7519 * numbers.c: Get "unif.h", "genio.h".
7520 * objprop.c: Get "objprop.h", "weaks.h", "alist.h", "hashtab.h".
7521 * options.c: Get "options.h".
7522 * ports.c: Get "ports.h", "vports.h", "strports.h", "fports.h",
7523 "markers.h", "chars.h", "genio.h".
7524 * posix.c: Get "posix.h", "sequences.h", "feature.h", "unif.h",
7525 "read.h", "scmsigs.h", "genio.h", "fports.h".
7526 * print.c: Get "print.h", "unif.h", "weaks.h", "read.h",
7527 "procprop.h", "eval.h", "smob.h", "mbstrings.h", "genio.h",
7528 "chars.h".
7529 * procprop.c: Get "procprop.h", "eval.h", "alist.h".
7530 * procs.c: Get "procs.h".
7531 * ramap.c: Get "ramap.h", "feature.h", "eval.h", "eq.h",
7532 "chars.h", "smob.h", "unif.h".
7533 * read.c: Get "alist.h", "kw.h", "mbstrings.h", "unif.h",
7534 "eval.h", "genio.h", "chars.h".
7535 * root.c: Get "root.h", "stackchk.h".
7536 * scmsigs.c: Get "scmsigs.h".
7537 * sequences.c: Get "sequences.h".
7538 * simpos.c: Get "simpos.h", "scmsigs.h".
7539 * smob.c: Get "smob.h".
7540 * socket.c: Get "socket.h", "feature.h".
7541 * srcprop.c: Get "srcprop.h", "weaks.h", "hashtab.h", "debug.h",
7542 "alist.h", "smob.h".
7543 * stackchk.c: Get "stackchk.h", "genio.h".
7544 * stime.c: Get "stime.h"."libguile/continuations.h".
7545 * strings.c: Get "strings.h", "chars.h".
7546 * strop.c: Get "strop.h", "chars.h".
7547 * strorder.c: Get "strorder.h", "chars.h".
7548 * strports.c: Get "strports.h", "print.h", "eval.h", "unif.h".
7549 * struct.c: Get "struct.h", "chars.h".
7550 * symbols.c: Get "symbols.h", "mbstrings.h", "alist.h",
7551 "variable.h", "eval.h", "chars.h".
7552 * tag.c: Get "tag.h", "struct.h", "chars.h".
7553 * throw.c: Get "throw.h", "continuations.h", "debug.h",
7554 "dynwind.h", "eval.h", "alist.h", "smob.h", "genio.h".
7555 * unif.c: Get "unif.h", "feature.h", "strop.h", "sequences.h",
7556 "smob.h", "genio.h", "eval.h", "chars.h".
7557 * variable.c: Get "variable.h", "smob.h", "genio.h".
7558 * vectors.c: Get "vectors.h", "eq.h".
7559 * version.c: Get "version.h".
7560 * vports.c: Get "vports.h", "fports.h", "chars.h", "eval.h".
7561 * weaks.c: Get "weaks.h".
7562
7563 * stackchk.h: #include "libguile/debug.h",
7564
7565 * print.h, read.h: #include "options.h", since everyone who uses
7566 either of these files will need that.
7567
7568 * smob.h: #include "ports.h", "genio.h", and "print.h", since
7569 anyone who uses this file will need them to define the smob
7570 printing functions. Also, get markers.h, since people will need
7571 to #define the mark functions.
7572
7573 * smob.h (scm_ptobfuns, SCM_PTOBNUM): Definitions moved...
7574 * ports.h: ... to here.
7575
7576 * ports.h (scm_port_table_size): Explicitly give type as 'int';
7577 don't rely on archaic C default type rules.
7578
7579 * fports.h: #include "libguile/ports.h", since you need that in
7580 order to parse this.
7581
7582 * genio.h: #include "libguile/print.h", because you need that to
7583 parse this; don't bother #including "ports.h", since print.h gets
7584 that.
7585
7586 * error.h: Don't #include "pairs.h"; _scm.h will do that now.
7587
7588 * eval.h (scm_top_level_lookup_thunk_var): Remove declaration for
7589 this; it's now a reference to an element of *scm_root.
7590
7591 * debug.h: Don't #include "options.h"; the compiler won't be able
7592 to find that once the headers are installed; instead, #include
7593 "libguile/options.h".
7594 * gc.h: Same, with marksweep.h.
7595 * mbstrings.h: Same, with symbols.h.
7596 * scmhob.h: Same, with _scm.h.
7597 * smob.h: Same, with params.h.
7598
7599 * Makefile.in (depends): Don't nuke scmconfig.h and the generated
7600 C files; there's no need for this, and it forces recompilations
7601 unnecessarily.
7602
7603 Sat Sep 7 06:57:23 1996 Gary Houston <ghouston@actrix.gen.nz>
7604
7605 * error.c (scm_error): declare scm_error_callback.
7606
7607 * error.h: prototype for scm_error_callback.
7608
7609 * __scm.h: define lgh_error.
7610 (SCM_SYSERROR): redefine using lgh_error.
7611
7612 Thu Sep 5 22:40:06 1996 Gary Houston <ghouston@actrix.gen.nz>
7613
7614 * error.c (scm_error): new procedure.
7615
7616 * error.h: prototype for scm_error.
7617
7618 * Makefile.in (install): install scmconfig.h from the current
7619 directory, not $(srcdir).
7620
7621 Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
7622
7623 * alist.h, append.h, arbiters.h, async.h, boolean.h, chars.h,
7624 continuations.h, debug.h, dynwind.h, error.h, eval.h, fdsocket.h,
7625 feature.h, filesys.h, fports.h, gc.h, gdbint.h, genio.h, gsubr.h,
7626 hash.h, init.h, ioext.h, kw.h, list.h, markers.h, marksweep.h,
7627 mbstrings.h, numbers.h, objprop.h, options.h, pairs.h, ports.h,
7628 posix.h, print.h, procprop.h, procs.h, ramap.h, read.h, root.h,
7629 sequences.h, smob.h, socket.h, srcprop.h, stackchk.h, stime.h,
7630 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
7631 tag.h, throw.h, unif.h, variable.h, vectors.h, version.h,
7632 vports.h, weaks.h: #include "libguile/__scm.h", not
7633 <libguile/__scm.h>. This allows 'gcc -MM' to determine which
7634 dependencies are within libguile properly.
7635
7636 Thu Sep 5 11:38:07 1996 Jim Blandy <jimb@floss.cyclic.com>
7637
7638 * Makefile.in (.c.x): Simplify; there's no need to run this rule
7639 when scmconfig.h doesn't exist.
7640
7641 * load.c (scm_sys_try_load): Correct spelling.
7642
7643 * feature.c (scm_loc_features): Make this static.
7644
7645 * Makefile.in (libpath.h): Omit trailing slash from path. We
7646 shouldn't require it of users, so why put it here?
7647
7648 Move code to initialize and search %load-path from ice-9 to C
7649 code, so we can use the load-path to find the ice-9 boot code;
7650 this makes it easier to run Guile without installing it. See
7651 corresponding changes in guile/Makefile.in.
7652 * feature.c: Move stuff concerned with the load path to load.c.
7653 (scm_compiled_library_path): Deleted.
7654 Don't #include libpath.h here.
7655 * feature.h: Don't mention scm_compiled_library_path.
7656 * load.c: #include "libpath.h" here, as well as <sys/types.h>,
7657 <sys/stat.h>, and <unistd.h> (if present).
7658 (R_OK): #define if the system hasn't deigned to.
7659 (scm_loc_load_path): New variable.
7660 (scm_init_load_path, scm_sys_search_load_path,
7661 scm_sys_try_load_path): New functions.
7662 (scm_init_load): Initialize scm_loc_load_path to point to the
7663 value cell of the Scheme %load-path variable.
7664 * load.h: Add declarations for scm_sys_search_load_path,
7665 scm_sys_try_load_path.
7666 * init.c: Call scm_init_load_path.
7667 * Makefile.in (feature.o, load.o): Dependencies updated.
7668
7669 * load.c, load.h: Rewrite using PROTO macro.
7670
7671 Thu Sep 5 01:54:33 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7672
7673 * gc.c (scm_cellp): New function: C predicate to determine if an
7674 SCM value can be regarded as a pointer to a cell on the heap.
7675
7676 * gc.h: Added declaration of scm_cellp.
7677
7678 * gdb_interface.h: New file: The GDB interface header from the GDB
7679 distribution.
7680
7681 * gdbint.c: New file: GDB interface.
7682
7683 * gdbint.h: New file: GDB interface.
7684
7685 * libguile.h: Added #include <libguile/gdbint.h>.
7686
7687 * init.c (scm_boot_guile): Added scm_init_gdbint.
7688
7689 * Makefile.in: Added gdb_interface.h, gdbint.[hc].
7690 Added -I.. to INCLUDE_CFLAGS (otherwise the include files won't be
7691 found if object files and source are kept separate).
7692
7693 Wed Sep 4 14:35:02 1996 Jim Blandy <jimb@floss.cyclic.com>
7694
7695 * feature.h, feature.c: Use PROTO macro, instead of #if __STDC__.
7696
7697 Wed Sep 4 01:30:47 1996 Jim Blandy <jimb@totoro.cyclic.com>
7698
7699 * configure.in: Don't substitute the values of TCL_SRC_DIR and
7700 TK_SRC_DIR; they're not relevant any more.
7701
7702 * Makefile.in (CC): Don't list -Wall here; it's a GCC-specific flag.
7703 * configure.in: Instead, put it in CFLAGS here, iff we're using GCC.
7704
7705 Wed Sep 4 00:55:49 1996 Jim Blandy <jimb@floss.cyclic.com>
7706
7707 * PLUGIN/guile.config (xtra_cflags): Include .. in the header
7708 search path, so we can find the <libguile/MUMBLE.h> headers.
7709
7710 * Makefile.in (ancillary): List aclocal.m4, for 'make dist'.
7711
7712 * Makefile.in (ALL_CFLAGS): Don't mention CFLAGS here; it's
7713 implicit in the .c.o rule.
7714 (.c.x): Don't mention ALL_CFLAGS here; its value is included in
7715 $(CC) already.
7716
7717 Put the library path in a header file, instead of passing it on
7718 the command line in every compilation.
7719 * Makefile.in (libpath.h): New target.
7720 (feature.o): Depend on libpath.h.
7721 (clean): Delete libpath.h.
7722 (ALL_CFLAGS): Don't use -DLIBRARY_PATH here. Instead ...
7723 * feature.c: ... #include "libpath.h" here.
7724 * .cvsignore: Ignore libpath.h.
7725
7726 Don't install the unwashed masses of Guile header files in the
7727 main #include path; put most of them in a subdirectory called
7728 'libguile'. This avoids naming conflicts between Guile header
7729 files and system header files (of which there were a few).
7730 * Makefile.in (pkgincludedir): Deleted.
7731 (innerincludedir): New variable; this and $(includedir) are enough.
7732 (INCLUDE_CFLAGS): Search for headers in "-I$(srcdir)/..".
7733 (installed_h_files): Divide this up. Now this variable lists
7734 those header files which should go into $(includedir) (i.e. appear
7735 directly in the #include path), and ...
7736 (inner_h_files): ... this new variable says which files appear in
7737 a subdirectory, and are referred to as <libguile/mumble.h>.
7738 (h_files): List them both.
7739 (install): Create innerincludedir, not pkgincludedir. Put
7740 the installed_h_files and inner_h_files in their proper places.
7741 (uninstall): Corresponding changes.
7742 * alist.h, append.h, arbiters.h, async.h, boolean.h, chars.h,
7743 continuations.h, debug.h, dynwind.h, error.h, eval.h, fdsocket.h,
7744 feature.h, fports.h, gc.h, genio.h, gsubr.h, hash.h, init.h,
7745 ioext.h, kw.h, libguile.h, list.h, markers.h, marksweep.h,
7746 mbstrings.h, numbers.h, options.h, pairs.h, ports.h, posix.h,
7747 print.h, procprop.h, procs.h, ramap.h, read.h, root.h,
7748 sequences.h, smob.h, socket.h, srcprop.h, stackchk.h, stime.h,
7749 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
7750 tag.h, throw.h, unif.h, variable.h, vectors.h, version.h,
7751 vports.h, weaks.h: Find __scm.h in its new location.
7752 * __scm.h: Find scmconfig.h and tags.h in their new locations
7753 (they're both "inner" files).
7754
7755 Tue Sep 3 20:27:35 1996 Jim Blandy <jimb@floss.cyclic.com>
7756
7757 * Makefile.in (.c.x): Remove duplicate use of $(ALL_CFLAGS).
7758
7759 Tue Sep 3 19:53:00 1996 Jim Blandy <jimb@totoro.cyclic.com>
7760
7761 * posix.c: Doc fixes.
7762
7763 Mon Sep 2 15:22:40 1996 Jim Blandy <jimb@totoro.cyclic.com>
7764
7765 * socket.c: Don't include a prototype for inet_aton; just use a
7766 K&R style declaration, to avoid warnings but minimize the chance
7767 of conflicts with the system.
7768
7769 On NextStep, <utime.h> doesn't define struct utime, unless we
7770 #define _POSIX_SOURCE before #including it.
7771 * aclocal.m4 (GUILE_STRUCT_UTIMBUF): New test.
7772 * acconfig.h: New comment text for above CPP symbol.
7773 * configure.in: Call it.
7774 * posix.c: #define _POSIX_SOURCE if it seems necessary.
7775
7776 * configure.in (AC_CHECK_HEADERS): Include sys/utime.h and utime.h
7777 in the list.
7778 * posix.c: Check HAVE_SYS_UTIME_H and HAVE_UTIME_H, instead of
7779 testing for __EMX__.
7780
7781 * posix.c: #include <libc.h>, if it exists.
7782
7783 * posix.c: Cast the return result to GETGROUPS_T, not gid_t; we
7784 don't even know if the latter exists.
7785
7786 * posix.c (s_sys_setpgid, s_sys_setsid, s_sys_ctermid,
7787 s_sys_tcgetpgrp, s_sys_tcsetpgrp): Renamed from s_setpgid,
7788 s_setsid, s_ctermid, s_tcgetpgrp, s_tcsetpgrp, for consistency.
7789
7790 * posix.c (R_OK, W_OK, X_OK, F_OK): #define these if the system's
7791 header files don't.
7792 (scm_init_posix): Use them when initializing the Scheme constants
7793 of the same name.
7794
7795 Fri Aug 30 16:01:30 1996 Jim Blandy <jimb@floss.cyclic.com>
7796
7797 * Makefile.in (libdir, includedir, bindir): Use the
7798 autoconf-supplied values, instead of deriving them ourselves.
7799 (pkgincludedir, datadir, pkgdatadir): New variables.
7800 (install, uninstall): Put the header files in a special
7801 subdirectory, not in the main search path.
7802
7803 * Makefile.in (ALL_CFLAGS): Provide the proper value for
7804 LIBRARY_PATH --- use $(pkgdatadir) instead of $(libdir).
7805
7806 * Makefile.in (IMPLPATH): Deleted; never used.
7807
7808 * Makefile.in (TCL_SRC_DIR, TK_SRC_DIR): Deleted; we don't depend
7809 on the Tcl/Tk source any more.
7810 (INCLUDE_CFLAGS): Remove references to the above.
7811
7812 * Makefile.in (version.o): Corrected dependencies.
7813
7814 Thu Aug 29 23:06:19 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
7815
7816 * libguile.h: #include "version.h"
7817
7818 * init.c (scm_boot_guile): Call scm_init_version.
7819 * gscm.c (gscm_run_scm): Call scm_init_version.
7820
7821 * configure.in (GUILE_MAJOR_VERSION, GUILE_MINOR_VERSION,
7822 GUILE_VERSION): AC_DEFINE these.
7823 (acconfig.h): #undef the above symbols.
7824
7825 * Makefile.in (libobjs): Add version.o.
7826 (installed_h_files): Add version.h.
7827 (c_files): Add version.c.
7828 (gen_c_files): Add version.x.
7829 (version.o): New rule.
7830 (alist.o, append.o, appinit.o, arbiters.o, async.o, boolean.o,
7831 chars.o, continuations.o, dynwind.o, eq.o, error.o, eval.o,
7832 fdsocket.o, feature.o, files.o, filesys.o, fports.o, gc.o,
7833 genio.o, gsubr.o, hash.o, hashtab.o, init.o, kw.o, list.o, load.o,
7834 mallocs.o, markers.o, marksweep.o, mbstrings.o, numbers.o,
7835 objprop.o, pairs.o, ports.o, posix.o, print.o, procprop.o,
7836 procs.o, ramap.o, read.o, root.o, scmsigs.o, sequences.o,
7837 simpos.o, smob.o, socket.o, stackchk.o, stime.o, strings.o,
7838 strop.o, strorder.o, strports.o, struct.o, symbols.o, tag.o,
7839 throw.o, unif.o, variable.o, vectors.o, version.o, vports.o,
7840 weaks.o): Add version.h to dependency lists.
7841 (markers.o): Remove duplicate rule.
7842
7843 * version.h: New file.
7844
7845 * version.c: New file.
7846
7847 Thu Aug 29 15:21:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
7848
7849 * symbols.c (scm_strhash): scm_downcase is now a function, not an
7850 array; use it appropriately. Since GCC is quite happy to
7851 subscript functions, it never warned us about this; we should use
7852 -Wpointer-arith in the future. I guess we never tested
7853 case-insensitivity.
7854
7855 Wed Aug 28 18:52:22 1996 Jim Blandy <jimb@totoro.cyclic.com>
7856
7857 * socket.c: Doc and copyright fixes.
7858
7859 Sat Aug 24 05:29:19 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7860
7861 * debug.c: Fixed and improved gdb support.
7862
7863 Fri Aug 23 18:00:16 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7864
7865 * socket.c: Added declaration of inet_aton to avoid compiler
7866 warning. (Hope this solution is correct.)
7867
7868 * stime.c: Added declaration of ftime. (This is missing in
7869 Solaris 2 headers.)
7870
7871 Fri Aug 23 02:03:32 1996 Gary Houston <ghouston@actrix.gen.nz>
7872
7873 * configure, scmconfig.h.in: Updated, using autoconf and autoheader.
7874
7875 * Makefile.in (c_files): add strerror.c.
7876
7877 * strerror.c: new file from Emacs' sysdep.c.
7878 maybe configure should also check for sys_errlist.
7879
7880 * configure.in (AC_REPLACE_FUNCS): add strerror.
7881
7882 Fri Aug 23 03:02:46 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7883
7884 * debug.c (scm_init_debug): Added initialization for
7885 scm_evaluator_traps.
7886
7887 * debug.h, debug.c: Various name changes.
7888 (Mostly prefixing with SCM_.) Renamed "debug-options" -->
7889 "debug-options-interface". See commentary in options.c.
7890
7891 * options.h, options.c: Options now have documentation strings.
7892 Also added a long explanatory commentary.
7893
7894 * eval.c, print.h, print.c, read.h, read.c: Modifications to
7895 run-time options.
7896
7897 * gscm.c, init.c, root.c, throw.c: Bug fixes:
7898 last_debug_info_frame is now updated in all cases.
7899
7900 * __scm.h, stackchk.h, stackchk.c: Guile now performs stack
7901 checking.
7902
7903 Thu Aug 22 17:34:17 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
7904
7905 * __scm.h: SCM_STACK_LIMIT removed (now a run-time option).
7906 Added option STACK_CHECKING.
7907
7908 Tue Aug 20 18:48:40 1996 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7909
7910 * Makefile.in: Added {debug,options,srcprop}.{h,c}
7911
7912 * __scm.h: Removed symbols for debugging support.
7913
7914 * acconfig.h: Added symbols for debugging support.
7915
7916 * configure.in: Added user option for debugging support.
7917 --enable-debug will include the debugging code into libguile.a.
7918
7919 * continuations.c (scm_make_cont): Enlarged the #if 0 around
7920 scm_relocate_chunk_to_heap.
7921
7922 * debug.c: New file: low-level debugging support. It also
7923 includes support for debugging with gdb. (The extensions to gdb
7924 are written by Per Bothner at Cygnus.)
7925
7926 * debug.h: New file: low-level debugging support.
7927
7928 * eval.c: scm_m_set and SCM_IM_SET no longer supports multiple
7929 argument pairs. Extensive modifications to the debugging
7930 evaluator. Added "SECTION:" commentaries to clarify what happens
7931 when, during double compilation. Renamed EVALIMP --> EVALIM.
7932 Renamed EVAL --> XEVAL. Removed function evalcar. Defined
7933 evalcar to scm_eval_car. Added explanation of "EVAL" symbols to
7934 the beginning of the file. New procedure: scm_unmemocopy.
7935 Added some global state variables needed by the debugging
7936 evaluator: scm_ceval_ptr, last_debug_info_frame, debug_mode,
7937 check_entry, check_apply, check_exit, debug_options and
7938 evaluator_traps. New acro: undefine.
7939
7940 * eval.h: Renamed EVAL --> XEVAL.
7941
7942 * gc.c (scm_init_storage): Renamed scm_make_weak_hash_table
7943 --> scm_make_weak_key_hash_table.
7944
7945 * init.c (scm_restart_stack, scm_boot_guile): Added initialization
7946 of SCM_DFRAME. Added calls to scm_init_{debug,options,srcprop}.
7947
7948 * libguile.h: Conditionally include debug.h
7949
7950 * objprop.c (scm_object_properties, scm_set_object_properties_x):
7951 scm_object_properties shouldn't return handle. `handle' now gets
7952 initialized in scm_set_object_properties_x. scm_object_properties
7953 doesn't any longer create an entry in scm_object_whash.
7954
7955 * options.c: New file: handling of run time options.
7956
7957 * options.h: New file: handling of run time options.
7958
7959 * posix.c (scm_getpgrp): Cast pointer to getpgrp.
7960
7961 * print.c: New procedure: scm_print_options
7962
7963 * print.h: Defines for print options.
7964
7965 * read.c: New procedure: scm_read_options
7966
7967 * read.h: Defines for reader options.
7968
7969 * root.h: Added scm_source_whash among scm_sys_protects.
7970
7971 * srcprop.c: New file: source properties.
7972
7973 * srcprop.h: New file: source properties.
7974
7975 * throw.c (jbsmob): Jump buffers are now correctly allocated.
7976 (Bug found by A. Green.)
7977
7978 * weak.c: Renamed scm_weak_hash_table --> scm_weak_key_hash_table.
7979
7980 * weak.h: Renamed scm_weak_hash_table --> scm_weak_key_hash_table.
7981
7982 Thu Aug 15 02:05:14 1996 Jim Blandy <jimb@totoro.cyclic.com>
7983
7984 * libguile.h: #include "objprop.h"; I guess this was forgotten.
7985
7986 * init.c (scm_boot_guile): Don't call scm_init_rgx; it's a plugin,
7987 and should be called by the final client.
7988
7989 Wed Aug 14 21:41:37 1996 Jim Blandy <jimb@totoro.cyclic.com>
7990
7991 * gc.h: Use the PROTO macro when declaring functions.
7992 * gc.c: Use the PROTO macro when declaring static functions.
7993 Remove the CPP hair around function definitions.
7994
7995 * gc.c (scm_init_storage): Initialize scm_asyncs.
7996
7997 * libguile.h: #include "__scm.h" before testing the STDC_HEADERS
7998 preprocessor symbol; "__scm.h" is where it might get #defined.
7999 * __scm.h: Similar: #include <scmconfig.h> before testing
8000 HAVE_LIMITS_H.
8001
8002 * __scm.h: It's HAVE_LIMITS_H, not HAVE_LIMITSH.
8003
8004 Fri Aug 9 11:09:28 1996 Jim Blandy <jimb@totoro.cyclic.com>
8005
8006 * init.c (scm_boot_guile): Add init_func argument; call
8007 (*init_func) instead of calling scm_appinit; it's ucky to
8008 hard-code names for the user's procedures.
8009 * init.h (scm_boot_guile): Adjust declaration.
8010
8011 * __scm.h (PROTO): New macro, for declaring functions with
8012 prototypes.
8013
8014 * init.h (scm_start_stack, scm_restart_stack): Use PROTO;
8015 eliminate all the __STDC__ conditionals.
8016 (scm_boot_guile): Add declaration.
8017 * init.c (scm_start_stack, scm_restart_stack, scm_boot_guile):
8018 Remove __STDC__ conditionals around function definitions; the
8019 declarations in init.h will provide the same information, more
8020 usefully.
8021
8022 * __scm.h (SCM_SYSMISSING): When we don't have ENOSYS, don't
8023 complain about it in the error message; the error message is
8024 adequate without that note, and there's nothing the user can do
8025 about it.
8026
8027 Wed Aug 7 14:14:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
8028
8029 * Makefile.in (ancillary): Drop def.sed.
8030
8031 * posix.c (scm_init_posix): Use numeric values, rather than
8032 CPP symbols, when defining the scheme values R_OK, W_OK, X_OK, and
8033 F_OK. The symbols aren't available on some systems, and I'm
8034 pretty sure their values are fixed by common widespread practice.
8035 * ioext.c (scm_init_ioext): Code here defined them too; remove it.
8036
8037 More functions unavailable on some systems.
8038 * configure.in (AC_CHECK_FUNCS): Add ctermid, setpgid, setsid,
8039 tcgetpgrp, tcsetpgrp, and waitpid to the list of functions to
8040 check for.
8041 * configure, scmconfig.h.in: Updated, using autoconf and autoheader.
8042 * posix.c (scm_sys_ctermid, scm_sys_setpgid, scm_sys_setsid,
8043 scm_sys_tcgetpgrp, scm_sys_tcsetpgrp, scm_sys_waitpid): Put the
8044 bodies of these functions in "#ifdef HAVE_MUMBLE" clauses, with a
8045 stub that signals an error as the #else.
8046
8047 * Makefile.in (ancillary): Drop acconfig-1.5.h; add acconfig.h.
8048
8049 Wed Aug 7 06:28:42 1996 Gary Houston <ghouston@actrix.gen.nz>
8050
8051 * Fixes motivated by Petr Adamek <adamek@mit.edu>:
8052
8053 * unif.c: include ramap.h.
8054
8055 * read.c (endif): case_insensative_p renamed case_insensitive_p.
8056
8057 * ramap.h: rename scm_array_copy prototypes to scm_array_copy_x.
8058
8059 * ports.c: include sys/ioctl.h.
8060
8061 * scmconfig.h.in: add HAVE_SYS_IOCTL_H.
8062
8063 * configure.in: check for sys/ioctl.h.
8064
8065 * ports.c: include <malloc.h> not "malloc.h".
8066
8067 * mallocs.c: include <malloc.h> not "malloc.h", likewise for unistd.h.
8068
8069 * fports.c: remove ttyname and tmpnam declarations.
8070
8071 * posix.c: fewer ttyname declarations.
8072
8073 * fports.c: include <string.h> not "string.h".
8074
8075 * init.c, ioext.c: include string.h and unistd.h.
8076
8077 * gc.c: include <malloc.h> not "malloc.h", likewise for unistd.h.
8078
8079 * async.c, strings.h, strports.c, struct.c, symbols.c, feature.c,
8080 genio.c, simpos.c, vports.c: include string.h.
8081
8082 * socket.c, fdsocket.c: include string.h only if HAVE_STRING_H.
8083
8084 * fdsocket.c (getsockopt, setsockopt): change type of optlen from
8085 scm_sizet to int.
8086 (scm_addr_buffer_size): change type from scm_sizet to int.
8087 (accept, getsockname, getpeername, recvfrom): change type of tmp_size
8088 from scm_sizet to int.
8089
8090 * error.c: include unistd.h.
8091
8092 * __scm.h: (SCM_SYSMISSING): another version in case ENOSYS isn't
8093 defined.
8094
8095 * Makefile.in: remove references to .hd, .cd suffix and __scm.hd.
8096
8097 * __scm.hd, def.sed: deleted.
8098
8099 Tue Aug 6 14:49:08 1996 Jim Blandy <jimb@totoro.cyclic.com>
8100
8101 Changes for NeXT, suggested by Robert Brown.
8102 * configure.in: Call AC_TYPE_MODE_T.
8103 (AC_CHECK_HEADERS): Add libc.h, to get more prototypes on the
8104 NeXT. Put header file list in alphabetical order.
8105 * configure, scmconfig.h.in: Regenerated.
8106 * filesys.c [HAVE_LIBC_H]: #include <libc.h>.
8107
8108 * filesys.c [HAVE_STRING_H]: #include <string.h>, to get prototype
8109 for strerror.
8110
8111 * acconfig.h: New file, providing documentation for the CPP
8112 symbols defined in configure.in
8113 * acconfig-1.5.h: Removed; superceded by the above.
8114
8115 Sat Aug 3 01:27:14 1996 Gary Houston <ghouston@actrix.gen.nz>
8116
8117 * ioext.c (scm_sys_fdopen): fix the port-table assignment.
8118
8119 * fports.c (scm_open_file): don't return #f, throw error.
8120
8121 * ioext.c (fileno): renamed from %fileno.
8122 (soft-fileno): deleted.
8123
8124 * ports.c (scm_port_revealed): don't need to check for -1 from
8125 scm_revealed_count.
8126 (scm_set_port_revealed_x): return unspecified, not #f.
8127
8128 * ioext.c (primitive-move->fdes): return #t or #f, not 1 or 0.
8129
8130 * fdsocket.c: getsockopt, setsockopt: use HAVE_STRUCT_LINGER.
8131
8132 * scmconfig.h.in: add HAVE_STRUCT_LINGER.
8133
8134 * configure.in: check for struct linger, set HAVE_STRUCT_LINGER.
8135
8136 Thu Aug 1 02:58:39 1996 Jim Blandy <jimb@totoro.cyclic.com>
8137
8138 * filesys.c, posix.c: #include <sys/types.h> before <sys/stat.h>.
8139 This is necessary on Ultrix, and doesn't hurt portability.
8140
8141 * Makefile.in (dist-dir): New target, implementing a new dist system.
8142 (installed_h_files): Put in alphabetical order.
8143 Remove duplicate entries for markers.h and unif.h.
8144 (c_files): Remove duplicate entries for markers.c.
8145 (ancillary): Renamed from anillery; all uses changed. Remove
8146 PLUGIN; it's a directory, and needs special treatment in dist-dir.
8147 Remove all the ../doc/* files; doc/Makefile.in handles that.
8148
8149 * Makefile.in (libobjs): Remove duplicate entry for markers.o.
8150
8151 * Makefile.in (.c.x): Compensate for Ultrix's broken Bourne shell:
8152 every if must have an else, or else the whole command has a
8153 non-zero exit code whenever the if's condition is false.
8154
8155 Thu Aug 1 08:22:24 1996 Gary Houston <ghouston@actrix.gen.nz>
8156
8157 * posix.c: include string.h.
8158
8159 Wed Jul 31 23:43:05 1996 Gary Houston <ghouston@actrix.gen.nz>
8160
8161 * numbers.c: rename %expt -> $expt, %atan2 -> $atan2, as it must
8162 have been once.
8163
8164 * posix.c, ioext.c, socket.c, fdsocket.c, files.c, filesys.c, simpos.c:
8165 Remove leading % from scheme names.
8166 Do not return error values, call SCM_SYSERROR or similar.
8167
8168 * __scm.h (SCM_SYSERROR, SCM_SYSMISSING): new macros.
8169
8170 Wed Jun 12 00:28:31 1996 Tom Lord <lord@beehive>
8171
8172 * struct.c (scm_init_struct): new file.
8173
8174 Fri Jun 7 14:02:00 1996 Tom Lord <lord@beehive>
8175
8176 * list.c (scm_list_tail): list-cdr-ref is the same as list-tail.
8177 (scm_list_head): added list-head for rapidly chopping argument
8178 lists off of longer lists (and similar).
8179
8180 Tue Jun 4 09:40:33 1996 Tom Lord <lord@beehive>
8181
8182 * objprop.c (scm_object_property): assq the cdr of the whash
8183 handle for obj, not the handle itself.
8184
8185 Mon Jun 3 17:19:30 1996 Tom Lord <lord@beehive>
8186
8187 * gc.c (scm_mark_weak_vector_spines): Mark the spines (alists) of
8188 weak hash tables last of all marking to avoid an obscure gc bug.
8189 WARNING: circular lists stored in a weak hash table will hose us.
8190
8191 Fri May 24 09:53:39 1996 Tom Lord <lord@beehive>
8192
8193 * vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):
8194 new functions similar to scm_substring_move_left_x and
8195 scm_substring_move_right_x.
8196
8197 Wed May 22 20:07:01 1996 Tom Lord <lord@beehive>
8198
8199 * init.c (scm_boot_guile): prevent gc with scm_block_gc not
8200 scm_gc_heap_lock!
8201
8202 Wed May 15 16:13:29 1996 Tom Lord <lord@beehive>
8203
8204 * ports.c (scm_unread_char): scm_gen_ungetc as a scheme procedure.
8205
8206 Thu May 9 09:33:17 1996 Tom Lord <lord@beehive>
8207
8208 * strports.c (scm_strprint_obj): convenience function. C for
8209 (lambda (obj) (call-with-output-string (lambda (p) (write obj p))))
8210
8211 * guile-{tcl,tk}.[ch], events.[ch], keysyms.[ch], tcl-channels.[ch]
8212 removed to a separate library
8213
8214 * init.c (scm_boot_guile): copied from guile-tcl.c.
8215 Initialization specific to tcl interpreters removed.
8216
8217 Wed May 8 15:07:37 1996 Tom Lord <lord@beehive>
8218
8219 * ports.c (scm_ports_prehistory): size malloced here doesn't
8220 matter so long as it is non-0 (got rid of "* 4").
8221
8222 Tue May 7 11:43:37 1996 Tom Lord <lord@beehive>
8223
8224 * gscm.h: gscm_mkarray eliminated (presumably was not being used
8225 since its definition was bogus).
8226
8227 Mon May 6 13:02:56 1996 Tom Lord <lord@beehive>
8228
8229 * mallocs.[ch]: back again (for rx at least).
8230
8231 Wed Apr 17 08:54:20 1996 Tom Lord <lord@beehive>
8232
8233 * ports.c: removed functions relating to the mapping between ports
8234 and descriptors. (That stuff is unix-specific and should be collected
8235 in a separate library).
8236
8237 * ramap.c (scm_array_copy): return #<unspecified> not #<undefined>.
8238 (Tom Mckay@avanticorp.com)
8239
8240 Mon Apr 15 14:16:55 1996 Tom Lord <lord@beehive>
8241
8242 * gc.c (scm_gc_sweep): Immediates in weak vectors were not
8243 handled correctly (SCM_FREEP was applied to them) -- test for
8244 NIMP. Keys in weak hash tables were spuriously (though harmlessly)
8245 being overwritten with #f. (brown@grettir.bibliotech.com)
8246
8247 Tue Apr 2 22:25:00 1996 Tom Lord <lord@beehive>
8248
8249 * gc.c (scm_unhash_name): new procedure, unhash-name, flushes glocs
8250 for a specific symbol or for all symbols.
8251
8252 Mon Apr 1 10:34:55 1996 Tom Lord <lord@beehive>
8253
8254 * gc.c (scm_gc_mark): mark weak hash tables correctly (was getting weak
8255 keys and weak values confused).
8256
8257 Thu Mar 14 22:20:20 1996 Tom Lord <lord@beehive>
8258
8259 * list.c (scm_last_pair): map '()=>'()
8260
8261 Wed Mar 13 16:43:34 1996 Tom Lord <lord@beehive>
8262
8263 * pairs.c, hashtab.c, list.c, alist.c append.c, sequences.c:
8264 Generalized assoc and hash-table functions.
8265 Factored pairs.c into multiple files.
8266
8267 Fri Mar 8 14:44:39 1996 Tom Lord <lord@beehive>
8268
8269 * gscm.c (gscm_run_scm): got rid of objprop.
8270
8271 Fri Mar 1 10:39:52 1996 Tom Lord <lord@beehive>
8272
8273 * genio.c (scm_getc):
8274 NOTE: fgetc may not be interruptable.
8275
8276 * procprop.c (scm_stand_in_scm_proc):
8277 NOTE: don't use a alist here.
8278 (scm_set_procedure_properties_x): fix type checking throughout this file.
8279
8280 * gc.c (scm_gc_sweep): free heap segments with free, not must_free.
8281
8282 * ports.c (scm_remove_from_port_table): adjust scm_mallocated
8283 after freeing part of the port table.
8284
8285 Thu Feb 29 16:21:17 1996 Tom Lord <lord@beehive>
8286
8287 * strports.c (scm_mkstrport):
8288 * vports.c (scm_make_soft_port): allocate a port table entry
8289 (possibly triggering gc) before setting the tag of the corresponding
8290 ports handle.
8291
8292 * pairs.c (scm_delq_x): never throw an error.
8293
8294 * vectors.c (scm_make_vector): made the default vector fill argument
8295 into '() (much more useful than the previous value, "#unspecified")
8296
8297 Mon Feb 26 17:19:09 1996 Tom Lord <lord@beehive>
8298
8299 * ports.c (scm_add_to_port_table): Added fields
8300 to port table entries: file_name, line_num, col.
8301 Update these in open_file, gen_getc and gen_ungetc.
8302 Added procedures to access those fields.
8303
8304 Sun Feb 25 00:10:36 1996 Tom Lord <lord@beehive>
8305
8306 * procs.c (scm_make_subr_opt): new entry point for making
8307 anonymous subrs.
8308
8309 Sat Feb 24 17:11:31 1996 Tom Lord <lord@beehive>
8310
8311 * gc.h: SCM_STACK_GROWS_UP is now set by autoconf.
8312
8313 Fri Feb 23 10:26:29 1996 Tom Lord <lord@beehive>
8314
8315 * numbers.c (scm_exact_p): This function no longer
8316 implements "integer?".
8317
8318 Thu Feb 22 20:56:16 1996 Tom Lord <lord@beehive>
8319
8320 * gc.c (scm_gc_end): simulate a signal at the end of each GC.
8321 (scm_gc_stats): return an assoc of useful data. Replaces "room"
8322 and the stats reporting formerlly built into repl.
8323
8324 * repl.[ch]: removed.
8325 GC statistics keeping moved to gc.c.
8326 Other statistics keeping can be done from Scheme.
8327 REPLS are now written in Scheme.
8328
8329 Wed Feb 21 10:28:53 1996 Tom Lord <lord@beehive>
8330
8331 * cnsvobj.c (gscm_is_gscm_obj): new file for old functions (icky
8332 conservatively marked objects).
8333
8334 * throw.c (scm_ithrow): Unwind up to the right catch during a throw!
8335
8336 * error.c (scm_init_error): init system_error_sym here, not in repl.c.
8337
8338 * feature.c (scm_compiled_library_path): moved here from repl.c.
8339 This file is for stuff relating specifically to Scheme libraries
8340 like slib.
8341
8342 * eval.c (scm_m_define): don't give warning about redefinition, don't
8343 check verbosity.
8344
8345 NOTE: this should throw a resumable exception with parameters --
8346 the name, the top-level env, the variable, the definition, #t/#f: redefining builtin?
8347
8348 * repl.c (scm_gc_begin/end): don't print a message, don't check verbosity.
8349
8350 * error.c: scm_warn eliminated.
8351
8352 * read.c (scm_lreadr): extra right paren gets an error, not a warning.
8353
8354 * repl.c, marksweep.c, gc.c (various):
8355 lose exit_report, growth_mon.
8356
8357 * gscm.c: got rid of verbosity functions.
8358
8359 Tue Feb 20 00:19:10 1996 Tom Lord <lord@beehive>
8360
8361 * throw.c (scm_ithrow): guard against the bad-throw hook changing
8362 between the call to procedurep and use.
8363
8364 * error.c (scm_everr):
8365 * gc.c (fixconfig):
8366 * gsubr.c (scm_make_gsubr): use exit, not scm_quit. still wrong,
8367 but less so.
8368
8369 * strports.c: don't reveal the port's string to the caller
8370 because it changes size.
8371
8372 (stputc stwrite): check/change the strings length with interrupts
8373 blocked.
8374
8375 * objprop.c (scm_set_object_property_x &c): use the generic
8376 hashing functions and be threadsafe.
8377
8378 * eval.c (scm_unmemocar): do this operation in a thread-safe way.
8379 (per suggestion jaffer@gnu.ai.mit.edu).
8380
8381 * mbstrings.c (scm_multi_byte_string): guard against argument list
8382 changing length.
8383
8384 * strings.c (scm_make_string): loop cleanup
8385
8386 * unif.c (scm_vector_set_length_x): scm_vector_set_length_x no longer
8387 a scheme function.
8388
8389 * weaks.c (scm_weak_vector): guard against argument list
8390 changing length.
8391
8392 * variable.c (scm_builtin_variable): check for/make a built-in
8393 variable automicly.
8394
8395 * vectors.c (scm_vector): while filling the new array,
8396 guard against a list of fill elements that grows after
8397 the vector is allocated.
8398
8399 * hashtab.c -- new file: general hash table
8400 functions. hash, hashq, hashv, hashx.
8401
8402 * tags.h: made wvect an option bit of vector.
8403
8404 Mon Feb 19 09:38:05 1996 Tom Lord <lord@beehive>
8405
8406 * symbols.c: made the basic symbol table operations atomic.
8407
8408 * root.c &c.: collected stack-specific global state.
8409 linum/colnum etc *should* be port-specific state.
8410
8411 * struct.c (scm_init_struct): init the first struct type during
8412 initialization to fix a race condition.
8413
8414 * continuations.c (scm_dynthrow): pass throwval in the 'regs'
8415 object, not in a global.
8416 (suggested by green@cygnus, jaffer@gnu.ai.mit.edu)
8417
8418 * throw.c (_scm_throw): Pass throwval on the stack, not in a global
8419 (suggested by green@cygnus, jaffer@gnu.ai.mit.edu)
8420
8421 * *.[ch]: namespace cleanup. Changed all (nearly) exported CPP
8422 and C symbols to begin with SCM_ or scm_.
8423
8424 Sun Feb 18 15:55:38 1996 Tom Lord <lord@beehive>
8425
8426 * gsubr.c (scm_gsubr_apply): statically allocate the
8427 array of arguments (bothner@cygnus.com).
8428
8429 Sat Feb 17 20:20:40 1996 Tom Lord <lord@beehive>
8430
8431 * scmsigs.c: Simplified to use async rountines.
8432
8433 * async.c: New support for interrupt handlers.
8434
8435 Thu Feb 15 11:39:09 1996 Tom Lord <lord@beehive>
8436
8437 * symbols.c (scm_string_to_symbol et al.): number of tweaky changes to
8438 set the multi_byte flag correctly in symbols. This is wrong.
8439 intern_obbary_soft and msymbolize should take an extra parameter.
8440 Also, weird multibyte symbols don't print correctly.
8441 The weird symbol syntax is also a bit bogus (emacs doesn't quite
8442 cope).
8443
8444 Tue Feb 13 11:39:37 1996 Tom Lord <lord@beehive>
8445
8446 * symbols.c (scm_string_to_obarray_symbol): obarray == #f means
8447 use the system symhash. == #t means create an uninterned symbol.
8448
8449 Wed Feb 7 09:28:02 1996 Tom Lord <lord@beehive>
8450
8451 * strings.c (scm_make_shared_substring): build'em.
8452 It might better to keep a table of these and use one
8453 less cons-pair per shared-substring.
8454
8455 Tue Feb 6 17:45:21 1996 Tom Lord <lord@beehive>
8456
8457 * strings.c (scm_string_shared_substring): create shared
8458 substrings. (Doesn't handle mb strings yet).
8459
8460 * mbstrings.c (scm_print_mb_string): handle RO strings.
8461
8462 * print.c (scm_iprin1): print substrings as their non-substring
8463 counterparts (dubious).
8464
8465 * marksweep.c (scm_gc_mark scm_gc_sweep): handle RO and MB
8466 strings.
8467
8468 * hash.c (scm_hasher): hash RO and MB strings as bytestrings.
8469
8470 * eval.c (SCM_CEVAL): self-evaluate RO and MB strings.
8471
8472 * eq.c (scm_equal_p): handle RO and MB strings.
8473
8474 * symbols.c (scm_string_to_symbol):
8475 (scm_string_to_obarray_symbol):
8476 * strop.c (scm_i_index):
8477 (scm_i_rindex):
8478 (scm_string_null_p):
8479 (scm_string_to_list):
8480 * strings.c (scm_string_length):
8481 (scm_string_ref):
8482 (scm_substring):
8483 (scm_string_append):
8484 * simpos.c (scm_system):
8485 (scm_getenv):
8486 * fports.c (scm_open_file):
8487 * strorder.c (scm_string_equal_p):
8488 (scm_string_ci_equal_p):
8489 (scm_string_less_p):
8490 (scm_string_ci_less_p):
8491 * pairs.c (scm_obj_length):
8492 * mbstrings.c (scm_multi_byte_string_length):
8493
8494 Use RO string macros for RO strings.
8495
8496 Tue Jan 30 09:19:08 1996 Tom Lord <lord@beehive>
8497
8498 * Makefile.in (CFLAGS ALL_CFLAGS): be more standard.
8499
8500 * strop.c (scm_i_rindex, scm_i_index): Don't use the BSD functions
8501 index/rindex. Do handle embedded \000 characters.
8502
8503 Sun Jan 28 13:16:18 1996 Tom Lord <lord@beehive>
8504
8505 * error.c (def_err_response): (int)scm_err_pos => (long)scm_err_pos
8506 Eliminate a (presumed) warning on some systems.
8507
8508 * gscm.c (gscm_run_scm): SCM_INIT_PATH => GUILE_INIT_PATH
8509 (Mikael Djurfeldt <mdj@nada.kth.se>)
8510
8511 Sat Jan 27 12:36:55 1996 Tom Lord <lord@beehive>
8512
8513 * eval.c (scm_map): added argument type checking.
8514 (kawai@sail.t.u-tokyo.ac.jp)
8515
8516 * gscm.c (gscm_set_procedure_properties_x): parameter "new" => "new_val"
8517 for C++. (Seth Alves <alves@gryphon.com>)
8518
8519 (gscm_cstr): uses an uninitialized local variable causing
8520 segv. (kawai@sail.t.u-tokyo.ac.jp)
8521
8522
8523 * lvectors.c (scm_get_lvector_hook):
8524 In guile-ii, the lvector code was broken. It was fixed in guile-iii.
8525 It seems to me like if it is broken again in guile-iv...Here is a patch.
8526 "! || (LENGTH (keyvec) == 0))"
8527 (From: Mikael Djurfeldt <mdj@nada.kth.se>)
8528
8529
8530 * gscm.c (gscm_sys_default_verbosity):
8531 incorrectly declared for non-__STDC__
8532 (Tom_Mckay@avanticorp.com)
8533
8534 * ports.c (scm_setfileno): Tweak the macro a bit
8535 to make it easier to port to systems that use
8536 more than a single structure field to hold a descriptor.
8537
8538 * debug.c (change_mode): Avoid GNUCism "int foo[n];"
8539 Give a warning, not an error, for unrecognized modes.
8540
8541 * eval.c (SCM_CEVAL):
8542 static char scm_s_for_each[];
8543 static char scm_s_map[];
8544 not needed.
8545
8546 * strings.c (scm_string_p):
8547 static char s_string[];
8548 (see next entry)
8549
8550 * struct.c (scm_sys_struct_set_x):
8551 static char s_sys_make_struct[];
8552 static char s_sys_struct_ref[];
8553 static char s_sys_struct_set_x[];
8554 Rearrange code to eliminate those forward decls for the sake of
8555 broken compilers.
8556
8557 * variable.c (make_vcell_variable): static char s_make_variable[];
8558 isn't needed.
8559
8560 * fports.c (scm_port_mode):
8561 chars modes[3] = "";
8562 to
8563 chars modes[3];
8564 modes[0] = '\0';
8565 (Tom_Mckay@avanticorp.com)
8566
8567
8568 * pairs.c (scm_set_cdr_x): non-__STDC__ declaration of
8569 scm_cons2(), scm_acons(), and scm_set_cdr_x() missing semicolon
8570 (Tom_Mckay@avanticorp.com)
8571
8572 * numbers.c (scm_num_eq_p): Non-__STDC__ declaration of
8573 scm_num_eq_p() was scm_equal_p().
8574 (Tom_Mckay@avanticorp.com)
8575
8576 * symbols.c (msymbolize): "CHARS(X) = " => "SETCHARS..."
8577 (Tom_Mckay@avanticorp.com)
8578
8579 Fri Jan 26 14:03:01 1996 Tom Lord <lord@beehive>
8580
8581 * weaks.c (scm_make_weak_vector): "VELTS(X) =" => "SETVELTS..."
8582 (Tom_Mckay@avanticorp.com)
8583
8584 * strop.c (scm_substring_fill_x):
8585 Non-__STDC__ declaration of scm_substring_fill_x() missing semicolon
8586 (Tom_Mckay@avanticorp.com)
8587
8588 * eval.c (SCM_APPLY): variables "debug_info" -> dbg_info.
8589 Works around a compiler bug on some machines. (Tom_Mckay@avanticorp.com)
8590
8591 * _scm.h (CxR functions): #define CxR SCM_CxR => #define CxR(X) SCM_CxR(X)
8592 Works around a compiler bug on some machines. (Tom_Mckay@avanticorp.com)
8593
8594 * lvectors.c (scm_lvector_set_x): avoid VELTS (VELTS (...)[..]) which
8595 can turn into an obscure gc bug.
8596
8597 * chars.c (scm_char_p): fixed PROC call.
8598
8599 * gscm.h (gscm_vset): use scm_vector_set_x not (the missing)
8600 scm_vector_set.
8601
8602 Tue Jan 23 13:29:40 1996 Tom Lord <lord@beehive>
8603
8604 * elisp.c (new file): dynamic scoping and other bits for
8605 elisp. Don't use this yet unless you specificly want to
8606 hack on elisp emulation.
8607
8608 * dynwind.c (scm_dowinds): When entering or leaving a dynamic
8609 scope created by scm_with_dynamic_bindings_operation_x, swap
8610 the bindings of that scope with the corresponding globals.
8611
8612 * continuations.c (scm_make_cont): when a continuation is captured,
8613 relocate the continuation stack chunks registered on the wind chain
8614 to the heap.
8615
8616 Sun Jan 21 19:31:17 1996 Tom Lord <lord@beehive>
8617
8618 * eval.c (SCM_CEVAL): if the function position evaluates
8619 to a macro, process it accordingly. (Previously, macros were
8620 handled only if the function position was a symbol naming a
8621 variable bound to a macro).
8622
8623 Sat Jan 20 23:21:37 1996 Tom Lord <lord@beehive>
8624
8625 * eval.c (scm_m_set): allow multi-variable set! like
8626 (set! x 1 y 2 z 3).
8627
8628 Wed Dec 6 02:40:49 1995 Tom Lord <lord@beehive>
8629
8630 * ports.h fports.c vports.c marksweep.c gc.c strports.c: moved the
8631 STREAM of ports into the port table and replaced it with a
8632 port-table index.
8633
8634 * repl.c (iprin1): added tc7_mb_string -- same as tc7_string.
8635
8636 * marksweep.c (scm_gc_mark): added tc7_mb_string -- same as tc7_string.
8637
8638 * mbstrings.c (new file): functions on multi-byte strings.
8639
8640 * tags.h (scm_typ7_string, scm_typ7_mb_string): added a tag
8641 for multi-byte strings. Moved the string tag.
8642
8643 * chars.h chars.c repl.c (many functions): made scm_upcase and
8644 scm_downcase functions that are safe for extended character sets.
8645
8646 Changed the range of integer->char.
8647
8648 Changed the type of SCM_ICHR.
8649
8650 Tue May 16 17:49:58 1995 Mikael Djurfeldt <mdj@sanscalc.nada.kth.se>
8651
8652 * guile.c: Changed init file name from "SCM_INIT_PATH" to
8653 "GUILE_INIT_PATH"
8654
8655 Sun Aug 6 15:14:46 1995 Andrew McCallum <mccallum@vein.cs.rochester.edu>
8656
8657 * guile.c (gscm_is_gscm_type): New function. (Without this how will we
8658 know that it's safe to pass an object to gscm_get_type?)
8659 (gscm_get_type): Fix tyop in error message.
8660
8661 * variable.c (scm_variable_ref): fixed assertion test.
8662 (Robert STRANDH <strandh@labri.u-bordeaux.fr>)
8663
8664 * gscm.h: fixed several prototypes, notably gscm_vref.
8665 Add gscm_is_eq and temporarily commented out gscm_eq (see
8666 the note in gscm.h near gscm_eq if this change effects your
8667 code).
8668 (Reported by Mark Galassi <rosalia@sstcx1.lanl.gov>)
8669
8670 * pairs.c (scm_obj_length): see next entry.
8671
8672 * gscm.h (gscm_obj_length): A way to get an integer
8673 length for lists, strings, symbols (treated as strings),
8674 and vectors. Returns -1 on error.
8675
8676 * eq.c (scm_equal_p): fixed smob case.
8677 (William Gribble <grib@arlut.utexas.edu>)
8678
8679 * Makefile.in (X_CFLAGS): defined.
8680 (William Gribble <grib@arlut.utexas.edu>)
8681
8682 * gscm.h (gscm_2_double): provided now
8683 (reported by Mark Galassi <rosalia@sstcx1.lanl.gov>)
8684
8685 Tue Jun 13 01:04:09 1995 gnu
8686 * Vrooom!
8687
8688