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