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