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