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