Changes from arch/CVS synchronization
[bpt/guile.git] / libguile / ChangeLog
CommitLineData
7d1fc872
LC
12007-12-04 Ludovic Courtès <ludo@gnu.org>
2
693758d5
LC
3 * ports.c (scm_c_read): Validate PORT as an open input port.
4 (scm_c_write): Validate PORT as an open output port.
5
7d1fc872
LC
6 * socket.c (scm_accept): Leave guile mode using
7 `scm_std_select ()' before calling `accept(2)'. Reported by
8 dskr <dskr@mac.com>.
9
ee834df4
LC
102007-10-27 Ludovic Courtès <ludo@gnu.org>
11
12 * fports.c (scm_i_evict_port): Expect a port, rather than a pair
13 containing the port. Fixes a bug in the new port table (2007-08-26).
14 (scm_evict_ports): Use `scm_c_port_for_each ()'.
15
acbfb594
NJ
162007-10-21 Neil Jerram <neil@ossau.uklinux.net>
17
18 * eval.c (unmemoize_delay): Extend the environment before
19 unmemoizing the promise thunk. This fixes a segmentation fault
20 reported by Frank Schwidom.
21
2e77f720
LC
222007-10-20 Julian Graham <joolean@gmail.com>
23
24 Add support for thread cancellation and user-defined thread
25 cleanup handlers. Small rework by Ludovic Courtès.
26
27 * null-threads.h (scm_i_pthread_cancel,
28 scm_i_pthread_cleanup_push, scm_i_pthread_cleanup_pop): New.
29 * pthread-threads.h (scm_i_pthread_cancel,
30 scm_i_pthread_cleanup_push, scm_i_pthread_cleanup_pop): New.
31 * scmsigs.c (scm_i_signal_delivery_thread,
32 signal_delivery_thread_mutex): New.
33 (signal_delivery_thread): Leave when `read_without_guile ()'
34 returns zero.
35 (start_signal_delivery_thread): Acquire SIGNAL_DELIVERY_THREAD
36 before spawning the thread. Initialize
37 SCM_I_SIGNAL_DELIVERY_THREAD.
38 (ensure_signal_delivery_thread): Renamed to...
39 (scm_i_ensure_signal_delivery_thread): this.
40 (scm_i_close_signal_pipe): New.
41 * scmsigs.h: Updated.
42 * threads.c (thread_mark): Mark `t->cleanup_handler'.
43 (guilify_self_1): Initialize `t->cleanup_handler' and
44 `t->canceled'.
45 (do_thread_exit): Invoke `t->cleanup_handler'.
46 (on_thread_exit): Call `scm_i_ensure_signal_delivery_thread ()'.
47 Call `scm_i_close_signal_pipe ()' when the next-to-last thread
48 vanishes.
49 (scm_leave_guile_cleanup): New.
50 (scm_i_with_guile_and_parent): Use `scm_i_pthread_cleanup_push ()'
51 and `scm_leave_guile_cleanup ()' to leave guile mode, rather
52 than call `scm_leave_guile ()' after FUNC.
53 (scm_cancel_thread, scm_set_thread_cleanup_x,
54 scm_threads_cleanup): New.
55 (scm_all_threads): Remove SCM_I_SIGNAL_DELIVERY_THREAD from the
56 returned list.
57 * threads.h (scm_i_thread)[cleanup_handler, canceled]: New
58 fields.
59 Add declarations of new functions.
60
d41668fa
LC
612007-10-17 Ludovic Courtès <ludo@gnu.org>
62
63 * read.c (CHAR_IS_BLANK_): Add `\r' (ASCII 0x0d). This fixes a
64 regression compared to 1.8.2. Reported by Puneet
65 <schemer@gmail.com>.
66
66302618
LC
672007-10-10 Ludovic Courtès <ludo@gnu.org>
68
69 * pthread-threads.h (SCM_I_PTHREAD_MUTEX_INITIALIZER): Check
70 `SCM_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER'.
71 * gen-scmconfig.h.in
72 (SCM_I_GSC_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER): New.
73 * gen-scmconfig.c (main): Define
74 `SCM_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER'.
75
1445e449
LC
762007-10-04 Ludovic Courtès <ludo@gnu.org>
77
78 * i18n.c (scm_make_locale)[!USE_GNU_LOCALE_API]: Don't call
79 `leave_locale_section ()' on failure of
80 `enter_locale_section ()' since the mutex is not held and locale
81 settings are unchanged.
82 (scm_nl_langinfo)[!USE_GNU_LOCALE_API]: Use
83 `restore_locale_settings ()' instead of `leave_locale_section ()'
84 since the mutex is not held.
85
29776e85
LC
862007-10-02 Ludovic Courtès <ludo@gnu.org>
87
88 * threads.c (on_thread_exit): Don't call `scm_leave_guile ()'
89 since we're already in non-guile mode. Reported by Greg Toxel
90 for NetBSD.
91
61d3568b
LC
922007-10-01 Ludovic Courtès <ludo@gnu.org>
93
94 * ports.c (flush_output_port): Expect directly a port instead of
95 a pair. Fixes a bug in the new port table (2007-08-26).
96
68eccd8b
KR
972007-09-11 Kevin Ryde <user42@zip.com.au>
98
99 * posix.c (scm_putenv): Confine the putenv("NAME=") bit to mingw, use
100 putenv("NAME") as the fallback everywhere else. In particular this is
101 needed for solaris 9. Reported by Frank Storbeck.
102
454866e0
LC
1032007-09-03 Ludovic Courtès <ludo@gnu.org>
104
105 * read.c (flush_ws): Handle SCSH block comments.
106
f43f3620
LC
1072007-09-03 Ludovic Courtès <ludo@gnu.org>
108
109 Fix alignment issues which showed up at least on SPARC.
110
111 * socket.c (scm_t_max_sockaddr, scm_t_getsockopt_result): New.
112 (scm_inet_pton): Change DST to `scm_t_uint32' for correct
113 alignment.
114 (scm_getsockopt): Change OPTVAL to `scm_t_getsockopt_result' for
115 correct alignment.
116 (_scm_from_sockaddr): Change ADDRESS to `scm_t_max_sockaddr *'.
117 (scm_from_sockaddr): Cast ADDRESS to `scm_t_max_sockaddr *'.
118 (MAX_SIZE_UN, MAX_SIZE_IN6): Removed.
119 (scm_accept, scm_getsockname, scm_getpeername, scm_recvfrom):
120 Use `scm_t_max_sockaddr' instead of "char max_addr[MAX_ADDR_SIZE]".
121
8d4d5dfc
KR
1222007-09-03 Kevin Ryde <user42@zip.com.au>
123
124 * numbers.c (scm_log): Test HAVE_CLOG as well as HAVE_COMPLEX_DOUBLE
125 before using clog(). It's possible for gcc to provide the "complex
126 double" type, but for the system not to have the complex funcs.
127 (scm_exp): Ditto HAVE_CEXP for cexp().
128 (clog, cexp, carg): Remove fallback definitions. These only
129 duplicated the code within scm_log and scm_exp, and the latter have to
130 exist for the case when there's no "complex double". So better just
131 fix up the conditionals selecting between the complex funcs and plain
132 doubles than worry about fallbacks.
133
1ac5fb45
LC
1342007-09-02 Ludovic Courtès <ludo@gnu.org>
135
136 * socket.c (scm_make_socket_address): Free C_ADDRESS after use.
137 This fixes a memory leak.
138
b87e6d04
HWN
1392007-08-26 Han-Wen Nienhuys <hanwen@lilypond.org>
140
5dbc6c06
HWN
141 * fports.c gc-card.c gc.c gc.h ioext.c ports.c ports.h weaks.h
142 gc.c: replace port table with weak hash table. This simplifies
143 memory management, and fixes freed cells appearing in
144 port-for-each output.
145
b87e6d04
HWN
146 * init.c (cleanup_for_exit): abort cleanup if init_mutex is still
147 held.
148
2baec6a9
LC
1492007-08-23 Ludovic Courtès <ludo@gnu.org>
150
492faee1 151 * read.c (scm_read_quote): Record position and copy source
8d4d5dfc 152 expression when asked to. Reported by Kevin.
492faee1 153
2baec6a9
LC
154 * stime.c: Define `_REENTRANT' only if not already defined.
155
1f11c61a
KR
1562007-08-21 Kevin Ryde <user42@zip.com.au>
157
158 * gc-card.c (scm_i_card_statistics): Record scm_tc7_number types as
159 tc16 values so big, real, complex and fraction can be distinguished.
160
161 (scm_i_tag_name): Return "number" for scm_tc7_number, not NULL. NULL
162 was making numbers come out as "type 23" in gc-live-object-stats.
163 Fix tests of the tc16 number types, they were checked under
164 scm_tc7_number, but the values went down the tag>=255 smob case.
165 Put smob case under scm_tc7_smob instead of using tag>=255, per
166 recommendation in comments with scm_tc7_smob to use symbolic values.
167 Use SCM_TC2SMOBNUM to extract scm_smobs index, instead of explicit
168 code. Lose some unnecessary "break" statements.
169
170 (scm_i_card_statistics): Use scm_hashq_create_handle_x and modify the
171 element returned, rather than two lookups scm_hashq_ref and
172 scm_hashq_set_x.
173
949ec9f9
KR
1742007-08-17 Kevin Ryde <user42@zip.com.au>
175
176 * stime.c: Add #define _REENTRANT, to get gmtime_r() prototype on
177 solaris 2.6. Reported by anirkko.
178
6caac03c
LC
1792007-07-29 Ludovic Courtès <ludo@gnu.org>
180
181 * Makefile.am (INCLUDES): Added Gnulib includes.
182 (gnulib_library): New.
183 (libguile_i18n_v_@LIBGUILE_I18N_MAJOR@_la_LIBADD): Added
184 `$(gnulib_library)'.
185 (libguile_la_LIBADD): Likewise.
186
187 * posix.c: Don't define `_GNU_SOURCE' since `gl_EARLY' arranges
188 to define it when available.
189 * srfi-14.c: Likewise.
f7439099
LC
190 * i18n.c: Likewise. Include Gnulib's <alloca.h>
191 * eval.c: Include Gnulib's <alloca.h>.
192 * filesys.c: Likewise.
193 * read.c: Don't include <strings.h> and don't provide an
194 `strncasecmp ()' replacement; use Gnulib's <string.h> and
195 `strncasecmp ()' instead.
6caac03c 196
e08f3f7a
LC
1972007-07-25 Ludovic Courtès <ludo@gnu.org>
198
199 * eval.c (macroexp): When `scm_ilength (res) <= 0', return
200 immediately. This used to produce a circular memoized
201 expression, e.g., for `(set (quote x) #t)'.
202
7337d56d
LC
2032007-07-22 Ludovic Courtès <ludo@gnu.org>
204
205 Overhauled the reader, making it faster.
206
207 * gdbint.c (tok_buf, tok_buf_mark_p): Removed.
208 (gdb_read): Don't use a token buffer. Use `scm_read ()' instead
209 of `scm_lreadr ()'.
210
211 * read.c: Overhauled. No longer use a token buffer. Use a
212 on-stack C buffer in the common case and use Scheme strings when
213 larger buffers are needed.
214 * read.h (scm_grow_tok_buf, scm_flush_ws, scm_casei_streq,
215 scm_lreadr, scm_lreadrecparen): Removed.
216 (scm_i_input_error): Marked as `SCM_NORETURN'.
217
df449722
LC
2182007-07-15 Ludovic Courtès <ludo@gnu.org>
219
220 * script.c (scm_compile_shell_switches): Updated copyright year.
221
b1f57ea4
LC
2222007-07-11 Ludovic Courtès <ludo@gnu.org>
223
224 * goops.c (scm_sys_method_more_specific_p): Added docstring.
225 Make sure LEN is greater than or equal to the minimum length of
226 specializers of M1 and M2. This fixes a segfault later on in
227 `more_specificp ()' if TARGS is too small. Reported by Marco
228 Maggi <marco.maggi-ipsu@poste.it>.
229
d3075c52
LC
2302007-06-26 Ludovic Courtès <ludo@gnu.org>
231
232 * fluids.c (next_fluid_num): When growing ALLOCATED_FLUIDS, make
233 sure to free the previous array after the new one has been
234 installed. This leak is made visible by running
235 "(define l (map (lambda (i) (make-fluid)) (iota 255)))"
236 from the REPL within Valgrind.
237
7a5fb796
LC
2382007-06-12 Ludovic Courtès <ludo@chbouib.org>
239
240 * socket.c (scm_inet_ntop): In the `AF_INET' case, declare `addr4'
241 as an `scm_t_uint32' rather than re-using `addr6'. This fixes a
242 bus error on SPARC (and possibly others) due to unaligned access.
243
a1ef7406
LC
2442007-06-07 Ludovic Courtès <ludovic.courtes@laas.fr>
245
246 * posix.c (scm_ttyname): Check whether RESULT is NULL before
247 making a string from it (reported by Dan McMahill). Don't call
248 `scm_from_locale_string ()' before the mutex is released.
249
3dcf3373
LC
2502007-05-26 Ludovic Courtès <ludo@chbouib.org>
251
252 * eval.c (scm_m_define): Updated comment. Changed order for value
253 evaluation and `scm_sym2var ()' call, which is perfectly valid per
254 R5RS. This reverts the change dated 2004-04-22 by Dirk Herrmann.
255
608860a5
LC
2562007-05-05 Ludovic Courtès <ludo@chbouib.org>
257
258 Implemented lazy duplicate binding handling.
259
260 * modules.c (scm_export): Renamed to...
261 (scm_module_export): This. Now public.
262 (module_variable): Removed.
263 (default_duplicate_binding_procedures_var): New variable.
264 (default_duplicate_binding_handlers, resolve_duplicate_binding,
265 module_imported_variable, scm_module_local_variable,
266 scm_module_variable): New functions.
267 (scm_module_import_interface): Rewritten.
268 (scm_module_reverse_lookup): Exported as a Scheme function.
269 * modules.h (scm_module_index_duplicate_handlers,
270 scm_module_index_import_obarray): New macros.
271 (scm_module_variable, scm_module_local_variable,
272 scm_module_export): New declarations.
273
1911e3da
LC
2742007-04-17 Ludovic Courtès <ludovic.courtes@laas.fr>
275
276 * numbers.c: Commented out trailing `HAVE_COMPLEX_DOUBLE' after
277 `#endif'. Use `#ifndef HAVE_XXX' rather than `#if !HAVE_XXX'.
278
1d8ce4c0
HWN
2792007-04-09 Han-Wen Nienhuys <hanwen@lilypond.org>
280
281 * numbers.c (carg): provide carg, cexp, clog in case they are
282 missing.
283
afb49959
LC
2842007-03-12 Ludovic Courtès <ludovic.courtes@laas.fr>
285
286 * i18n.c (scm_nl_langinfo): `#ifdef'd uses of `GROUPING',
287 `FRAC_DIGITS', etc., which are GNU extensions. Reported by
288 Steven Wu.
289
b3aa4626
KR
2902007-03-08 Kevin Ryde <user42@zip.com.au>
291
292 * struct.c, struct.h (scm_make_vtable): New function, providing
293 `make-vtable'.
294 * stacks.c (scm_init_stacks): Use it.
295
2962007-03-06 Kevin Ryde <user42@zip.com.au>
297
298 * struct.c (scm_make_struct): Check for R,W,O at end of layout when
299 allocating a tail array. If there's no such then those tail fields
300 are uninitialized and garbage SCMs there can cause a segv if printed
301 (after fetching with struct-ref).
302
3032007-02-22 Kevin Ryde <user42@zip.com.au>
304
305 * scmsigs.c (scm_sleep): In docstring, cross refence usleep.
306 (scm_usleep): Update docstring per manual, cross reference sleep.
307
308 * struct.c (scm_make_struct): Move SCM_CRITICAL_SECTION_END up so that
309 scm_struct_init is not within that section. scm_struct_init can
310 thrown an error, which within a critical section results in an
311 abort().
312
03291373
NJ
3132007-02-19 Neil Jerram <neil@ossau.uklinux.net>
314
315 * Makefile.am (noinst_HEADERS): Add private-options.h, so that it
316 is included in the distribution.
652dbce6 317 (noinst_HEADERS): And the same for eval.i.c.
03291373 318
a2f00b9b
LC
3192007-01-31 Ludovic Courtès <ludovic.courtes@laas.fr>
320
321 * i18n.c: Include "libguile/threads.h" and "libguile/posix.h"
322 unconditionally. Include <langinfo.h> and <nl_types.h> when
323 available.
324 (SCM_I18N_STRINGIFY, SCM_LOCALE_CATEGORY_MASK,
325 SCM_LIST_OR_INTEGER_P): New macros.
326 (LC_*_MASK): When `USE_GNU_LOCALE_API' is undefined, define them
327 as powers of two instead of `(1 << LC_*)'.
328 (scm_i_locale_free): New function/macro.
329 (scm_global_locale): New global variable.
330 (smob_locale_free): Use `scm_i_locale_free ()'.
331 (smob_locale_mark): Check whether the SMOB is `%global-locale'.
332 (get_current_locale_settings): Return `EINVAL' instead of `errno'
333 when `setlocale' fails.
334 (restore_locale_settings): Likewise.
335 (install_locale_categories): Likewise.
336 (install_locale): Likewise. Stop the locale stack traversal when
337 all categories have been handled.
338 (get_current_locale, category_to_category_mask,
339 category_list_to_category_mask): New function.
340 (scm_make_locale): Use them. Accept both lists of `LC_*' values
341 and single `LC_*' values as the first argument. Handle the case
342 where BASE_LOCALE is `%global-locale'. When `USE_GNU_LOCALE_API',
343 duplicate C_BASE_LOCALE before using it.
344 (scm_nl_langinfo, define_langinfo_items): New functions.
345 (scm_init_i18n): When `HAVE_NL_LANGINFO', add feature
346 `nl-langinfo' and invoke `define_langinfo_items ()'.
347 * i18n.h (scm_global_locale, scm_nl_langinfo): New declarations.
348 * posix.c: Include <xlocale.h> when available.
349 (scm_i_locale_mutex): Always define it. Statically initialized.
350 (scm_set_locale): Invoke `scm_i_to_lc_category ()' before
351 acquiring the locale mutex.
352 (scm_init_posix): No longer initialize SCM_I_LOCALE_MUTEX here.
353
b3aa4626
KR
3542007-01-27 Kevin Ryde <user42@zip.com.au>
355
356 * ports.c (scm_port_line, scm_set_port_line_x), read.c
357 (scm_i_input_error, scm_lreadr, scm_lreadrecparen): Corrections to
358 port line number type, should be "long" not "int", as per line_number
359 field of scm_t_port. (Makes a difference only on 64-bit systems, and
360 only then for a linenum above 2Gig.)
361
2a8d66b0
HWN
3622007-01-25 Han-Wen Nienhuys <hanwen@lilypond.org>
363
364 * vector.c: remove comment as per kryde's request.
365
b3aa4626
KR
3662007-01-25 Kevin Ryde <user42@zip.com.au>
367
368 * sort.c (scm_stable_sort): Return empty list for input empty list, as
369 done in guile 1.6 and as always done by plain `sort'. Was falling
370 through to SCM_WRONG_TYPE_ARG. Reported by Ales Hvezda.
371
cb90e2cb
HWN
3722007-01-22 Han-Wen Nienhuys <hanwen@lilypond.org>
373
8cb7939c
HWN
374 * vectors.c (s_scm_vector_move_right_x): complain about naming.
375
d00a0704
HWN
376 * srcprop.c: regularize comments.
377
3d178652
HWN
378 * eval.c: remove superfluous ifndef DEVAL.
379
243ebb61
HWN
380 * private-options.h: idem.
381
382 * eval.i.c: copyright nitpicking.
383
0ee05b85
HWN
384 * eval.c: distangle. move duplicate code to eval.i.c and include
385 twice.
386
387 * eval.i.c: new file.
388
22fc179a
HWN
389 * backtrace.c, debug.c, debug.h, deprecation.c, eq.c, eval.c
390 eval.h, gsubr.c, init.c, macros.c, print.c, print.h, read.c,
391 read.h, stacks.c, symbols.c, throw.c: use private-options.h
392
393 * private-options.h: new file: contain hardcoded option
394 definitions.
395
cb90e2cb
HWN
396 * private-gc.h: add FSF header.
397
62560650
HWN
3982007-01-19 Han-Wen Nienhuys <hanwen@lilypond.org>
399
72f19c26
HWN
400 * debug.h (SCM_RESET_DEBUG_MODE): switch to debugging if
401 memoize-symbol is set.
402
403 * eval.h (SCM_MEMOIZE_HDLR): add macros for memoize symbol trap.
404
405 * eval.c (CEVAL): add memoize_symbol trap.
406
03347a97
HWN
407 * options.c (scm_options_try): new function. This allows error
408 reporting before changing options in a critical section.
409
b0763985
HWN
410 * srcprop.c: use double cell for storing source-properties. Put
411 filename in the plist, and share between srcprops if possible.
412 Remove specialized storage.
413
414 * srcprop.h: remove macros without SCM_ prefix from
415 interface. Remove specialized storage/type definitions.
416
62560650
HWN
417 * read.c: idem.
418
419 * print.c: idem.
420
421 * eval.c: terminate option lists with 0.
422
423 * options.c: remove n (for length) from scm_option_X
424 functions. Detect option list length by looking for NULL name.
425
42ddb3cb
LC
4262007-01-19 Ludovic Courtès <ludovic.courtes@laas.fr>
427
428 * struct.c (scm_i_struct_equalp): Skip comparison if both FIELD1
429 is equal to S1 and FIELD2 is equal to S2. This avoids infinite
430 recursion when comparing `s' fields, as the REQUIRED_VTABLE_FIELDS
431 added by `make-vtable-vtable'. Reported by Marco Maggi.
432
937038e8
HWN
4332007-01-18 Han-Wen Nienhuys <hanwen@lilypond.org>
434
435 * throw.c (scm_ithrow): more refined error message: print symbols
436 too.
437
23d72566
KR
4382007-01-16 Kevin Ryde <user42@zip.com.au>
439
440 * feature.c, feature.h (scm_set_program_arguments_scm): New function,
441 implementing `set-program-arguments'.
442
443 * filesys.c (scm_init_filesys): Use scm_from_int rather than
444 scm_from_long for O_RDONLY, O_WRONLY, O_RDWR, O_CREAT, O_EXCL,
445 O_NOCTTY, O_TRUNC, O_APPEND, O_NONBLOCK, O_NDELAY, O_SYNC and
446 O_LARGEFILE. These are all int not long, per arg to open().
447 (scm_init_filesys): Use scm_from_int rather than scm_from_long for
448 F_DUPFD, F_GETFD, F_SETFD, F_GETFL, F_SETFL, F_GETOWN, F_SETOWN, these
449 are all ints (per command arg to fcntl). Likewise FD_CLOEXEC which is
450 an int arg to fcntl.
451
452 * posix.c (scm_putenv): Correction to "len" variable, was defined only
453 for __MINGW32__ but used under any !HAVE_UNSETENV (such as solaris).
454 Move it to where it's used. Reported by Hugh Sasse.
455
456 * regex-posix.c (scm_regexp_exec): Remove SCM_CRITICAL_SECTION_START
457 and SCM_CRITICAL_SECTION_END, believe not needed. Their placement
458 meant #\nul in the input (detected by scm_to_locale_string) and a bad
459 flags arg (detected by scm_to_int) would throw from a critical
460 section, causing an abort().
461
462 * regex-posix.c (scm_init_regex_posix): Use scm_from_int for
463 REG_BASIC, REG_EXTENDED, REG_ICASE, REG_NEWLINE, REG_NOTBOL,
464 REG_NOTEOL; they're all ints not longs (per args to regcomp and
465 regexec).
466
a2c40dc7
HWN
4672007-01-10 Han-Wen Nienhuys <hanwen@lilypond.org>
468
469 * throw.c (scm_ithrow): print out key symbol and string arguments
470 when error happens inside a critical section, and document why.
471
391f57e6
HWN
4722007-01-06 Han-Wen Nienhuys <hanwen@lilypond.org>
473
474 * read.c (s_scm_read_hash_extend): document #f argument to
475 read-hash-extend.
476
23d72566
KR
4772007-01-04 Kevin Ryde <user42@zip.com.au>
478
479 * deprecated.h (scm_create_hook), version.h.in (scm_major_version,
480 scm_minor_version, scm_micro_version, scm_effective_version,
481 scm_version, scm_init_version): Use SCM_API instead of just extern,
482 for the benefit of mingw. Reported by Cesar Strauss.
483
93632e3c
HWN
4842007-01-03 Han-Wen Nienhuys <hanwen@lilypond.org>
485
486 * gc.c (s_scm_gc_stats): return an entry for total-cells-allocated
487 too.
488 (gc_update_stats): update scm_gc_cells_allocated_acc too.
489
23d72566
KR
4902006-12-27 Kevin Ryde <user42@zip.com.au>
491
492 * threads.c (get_thread_stack_base): In mingw with pthreads we can use
493 the basic scm_get_stack_base. As advised by Nils Durner.
494
495 * threads.c (get_thread_stack_base): Add a version using
496 pthread_get_stackaddr_np (when available), for the benefit of MacOS.
497 As advised by Heikki Lindholm.
498
499 * scmsigs.c (signal_delivery_thread): Restrict scm_i_pthread_sigmask
500 to HAVE_PTHREAD_SIGMASK, it doesn't exist on mingw. Reported by Nils
501 Durner.
502
5032006-12-24 Kevin Ryde <user42@zip.com.au>
504
505 * posix.c (scm_kill): When only raise() is available, throw an ENOSYS
506 error if pid is not our own process, instead of silently doing nothing.
507
508 * print.c (scm_write, scm_display, scm_write_char): Disable port close
509 on EPIPE. This was previously disabled but introduction of HAVE_PIPE
510 check in configure.in unintentionally enabled it. Believe that
511 testing errno after scm_prin1 or scm_putc is bogus, a long ago error
512 can leave errno in that state. popen.test "no duplicates" output test
513 provoked that.
514
e2bf3b19
HWN
5152006-12-23 Han-Wen Nienhuys <hanwen@lilypond.org>
516
517 * numbers.c (scm_i_fraction_reduce): move logic into
518 scm_i_make_ratio(), so fractions are only read.
519 scm_i_fraction_reduce() modifies a fraction when reading it. A
520 race condition might lead to fractions being corrupted by reading
521 them concurrently.
522
523 Also, the REDUCED bit alters the SCM_CELL_TYPE(), making
524 comparisons between reduced and unreduced fractions go wrong.
525
526 * numbers.h: remove SCM_FRACTION_SET_NUMERATOR,
527 SCM_FRACTION_SET_DENOMINATOR, SCM_FRACTION_REDUCED_BIT,
528 SCM_FRACTION_REDUCED_SET, SCM_FRACTION_REDUCED_CLEAR,
529 SCM_FRACTION_REDUCED.
530
23d72566
KR
5312006-12-16 Kevin Ryde <user42@zip.com.au>
532
533 * scmsigs.c (scm_raise): Use raise() rather than kill(), as this is
534 more direct for a procedure called raise.
535 (kill): Remove mingw fake fallback.
536
5372006-12-15 Kevin Ryde <user42@zip.com.au>
538
539 * scmsigs.c: Conditionalize process.h, add io.h believe needed for
540 _pipe on mingw.
541
5422006-12-14 Kevin Ryde <user42@zip.com.au>
543
544 * threads.c (thread_print): Cope with the case where pthread_t is a
545 struct, as found on mingw. Can't just cast to size_t for printing.
546 Reported by Nils Durner.
547
548 * scmsigs.c: Add <fcntl.h> and <process.h> needed by mingw. Copy the
549 fallback pipe() using _pipe() from posix.c. Reported by Nils Durner.
550
5512006-12-13 Kevin Ryde <user42@zip.com.au>
552
553 * eval.c (scm_m_define): Set 'name procedure property on any
554 scm_procedure_p, not just SCM_CLOSUREP. In particular this picks up
555 procedures with setters as used in srfi-17.
556
557 * posix.c (scm_crypt): Check for NULL return from crypt(), which the
558 linux man page says is a possibility.
559
f30e1bdf
LC
5602006-12-12 Ludovic Courtès <ludovic.courtes@laas.fr>
561
562 * libguile/unif.c (read_decimal_integer): Let RESP be SIGN * RES
42ddb3cb 563 instead of RES (reported by Szavai Gyula). This allows the use of
f30e1bdf
LC
564 negative lower bounds.
565 (scm_i_read_array): Make sure LEN is non-negative (reported by
42ddb3cb 566 Szavai Gyula).
f30e1bdf
LC
567
568 (scm_array_in_bounds_p): Iterate over S instead of always
569 comparing indices with the bounds of S[0]. This fixes
570 `array-in-bounds?' for arrays with a rank greater than one and
571 with different lower bounds for each dimension.
572
23d72566
KR
5732006-12-05 Kevin Ryde <user42@zip.com.au>
574
575 * numbers.c (scm_product): For flonum*inum and complex*inum, return
576 exact 0 if inum==0. Already done for inum*flonum and inum*complex,
577 and as per R5RS section "Exactness".
578
5792006-12-03 Kevin Ryde <user42@zip.com.au>
580
581 * Makefile.am (.c.doc): Remove the "test -n" apparently attempting to
582 allow $AWK from the environment to override. It had syntax gremlins,
583 and the presence of a $(AWK) variable set by AC_PROG_AWK in the
584 Makefile stopped it having any effect. Use just $(AWK), which can be
585 overridden with "make AWK=xxx" in the usual way if desired.
586
22be72d3
LC
5872006-11-29 Ludovic Courtès <ludovic.courtes@laas.fr>
588
589 * libguile/vectors.c (scm_vector_to_list): Fixed list
590 construction: elements were not copied when INC is zero (see
591 "shared array" example in `vectors.test'). Reported by
592 Szavai Gyula.
593
b89c4943
LC
5942006-11-18 Ludovic Courtès <ludovic.courtes@laas.fr>
595
596 * Makefile.am (lib_LTLIBRARIES): Added `libguile-i18n-v-XX.la'.
597 (libguile_la_SOURCES): Added `gettext.c', removed `i18n.c'.
598 (libguile_i18n_v_XX_la_SOURCES, libguile_i18n_v_XX_la_CFLAGS,
599 libguile_i18n_v_XX_la_LIBADD, libguile_i18n_v_XX_la_LDFLAGS): New.
600 (DOT_X_FILES): Added `gettext.x'.
601 (DOT_DOC_FILES): Likewise.
602 (EXTRA_libguile_la_SOURCES): Added `locale-categories.h'.
603 (modinclude_HEADERS): Added `gettext.h'.
604 (EXTRA_DIST): Added `libgettext.h'.
605
606 * gettext.h: Renamed to...
607 * libgettext.h: New file.
608
609 * i18n.c: Renamed to...
610 * gettext.c: New file.
611
612 * i18n.h: Renamed to...
613 * gettext.h: New file.
614
615 * i18n.c, i18n.h, locale-categories.h: New files.
616
617 * init.c: Include "libguile/gettext.h" instead of
618 "libguile/i18n.h".
619 (scm_i_init_guile): Invoke `scm_init_gettext ()' instead of
620 `scm_init_i18n ()'.
621
622 * posix.c: Include "libguile/gettext.h" instead of
623 "libguile/i18n.h" Test `HAVE_NEWLOCALE' and `HAVE_STRCOLL_L'.
624 (USE_GNU_LOCALE_API): New macro.
625 (scm_i_locale_mutex): New variable.
626 (scm_setlocale): Lock and unlock it around `setlocale ()' calls.
627
628 * posix.h: Include "libguile/threads.h".
629 (scm_i_locale_mutex): New declaration.
630
f3e3f530
NJ
6312006-11-17 Neil Jerram <neil@ossau.uklinux.net>
632
633 * script.c (scm_shell_usage): Note need for subscription to bug-guile@gnu.org.
634
d9f71a07
LC
6352006-11-08 Ludovic Courtès <ludovic.courtes@laas.fr>
636
637 * libguile/gc-freelist.c (scm_i_adjust_min_yield): Take two
638 "sweep_stats" arguments; use them instead of accessing the global
639 variables `scm_gc_cells_collected' and `scm_gc_cells_collected_1'.
640
641 * libguile/gc-segment.c (scm_i_sweep_some_cards): Reset SWEEP
642 before each iteration of the loop.
643 (scm_i_sweep_some_segments): Reset SWEEP at each iteration.
644 (scm_i_get_new_heap_segment): Take an additional argument
645 SWEEP_STATS. Compute MIN_CELLS as a function of it.
646
647 * libguile/gc.c (scm_gc_cells_collected,
648 scm_gc_cells_collected_1): Removed.
649 (scm_i_gc_sweep_stats, scm_i_gc_sweep_stats_1): New.
650 (scm_gc_cells_marked_acc, scm_gc_cells_swept_acc,
651 scm_gc_time_taken, scm_gc_mark_time_taken, scm_gc_times,
652 scm_gc_cell_yield_percentage, protected_obj_count): Made `static'.
653 (scm_gc_stats): Use `scm_i_gc_sweep_stats' instead of
654 `scm_gc_cells_(collected|swept)'.
655 (gc_update_stats): New.
656 (gc_end_stats): Use `scm_i_gc_sweep_stats' and
657 `scm_i_gc_sweep_stats_1' instead of the former globals.
658 (scm_gc_for_newcell): Invoke `gc_update_stats ()' after each
659 `scm_i_sweep_some_segments' call. This fixes a bug where the GC
660 would keep allocating new segments instead of re-using collected
661 cells (because `scm_gc_cells_collected' would remain zero).
662
663 * libguile/gc.h (scm_gc_cells_swept, scm_gc_cells_collected,
664 scm_gc_cell_yield_percentage): Removed.
665
666 * libguile/private-gc.h (scm_gc_cells_collected_1): Removed.
667 (scm_i_adjust_min_yield): Updated.
668 (scm_i_get_new_heap_segment): Updated.
669
dd18d312
NJ
6702006-11-02 Neil Jerram <neil@ossau.uklinux.net>
671
672 * modules.c: Correct comment saying that low-level environments
673 will be used "in the next release".
674
675 * init.c: Comment out #include of environments.h.
676 (scm_i_init_guile): Comment out scm_environments_prehistory() and
677 scm_init_environments() calls.
678
679 * Makefile.am (libguile_la_SOURCES): Remove environments.c.
680 (DOT_X_FILES): Remove environments.x.
681 (DOT_DOC_FILES): Remove environments.doc.
682 (modinclude_HEADERS): Remove environments.h.
683
9a5fa6e9
NJ
6842006-10-25 Neil Jerram <neil@ossau.uklinux.net>
685
686 IA64 HP-UX GC patch from Hrvoje Nikšić. (Thanks!)
687
688 * threads.c (SCM_MARK_BACKING_STORE): Use scm_ia64_ar_bsp() and
689 scm_ia64_register_backing_store_base() instead of Linux-specific
690 implementations.
691
692 * gc.h (scm_ia64_register_backing_store_base, scm_ia64_ar_bsp):
693 New declarations.
694
695 * gc.c (__libc_ia64_register_backing_store_base): Declaration
696 removed.
697 (scm_ia64_register_backing_store_base, scm_ia64_ar_bsp): New, with
698 implementations for Linux and HP-UX.
699
700 * coop-pthreads.c (SCM_MARK_BACKING_STORE): Use scm_ia64_ar_bsp()
701 and scm_ia64_register_backing_store_base() instead of
702 Linux-specific implementations.
703
704 * continuations.h (__libc_ia64_register_backing_store_base):
705 Declaration removed.
706 (scm_t_contregs): New "fresh" field.
707
708 * continuations.c (ia64_getcontext): Removed.
709 (scm_make_continuation): Use continuation fresh field instead of
710 interpreting getcontext return values (which isn't portable). Use
711 scm_ia64_ar_bsp() and scm_ia64_register_backing_store_base()
712 instead of Linux-specific implementations.
713 (copy_stack_and_call): Use scm_ia64_register_backing_store_base()
714 instead of Linux-specific implementation.
715
716 * _scm.h (__ia64__): Also detect __ia64.
717
8ab3d8a0
KR
7182006-10-03 Kevin Ryde <user42@zip.com.au>
719
720 * eval.c (SCM_APPLY): For scm_tc7_subr_2o, throw wrong-num-args on 0
721 arguments or 3 or more arguments. Previously 0 called proc with
722 SCM_UNDEFINED, and 3 or more silently used just the first 2.
723
7242006-09-28 Kevin Ryde <user42@zip.com.au>
725
726 * fports.c, ports.c (ftruncate): Use "HAVE_CHSIZE && ! HAVE_FTRUNCATE"
727 for chsize fallback, instead of hard-coding mingw. Mingw in fact
728 supplies ftruncate itself these days.
729
730 * ports.c (fcntl.h): Can include this unconditionally, no need for
731 __MINGW32__.
732
733 * ports.c (truncate): Conditionalize on "HAVE_FTRUNCATE && !
734 HAVE_TRUNCATE" so as not to hard-code mingw. Use "const char *" and
735 "off_t" for parameters, per usual definition of this function, rather
736 than "char *" and "int". Use ftruncate instead of chsize. Check for
737 error on final close.
738
7392006-09-27 Kevin Ryde <user42@zip.com.au>
740
741 * numbers.c (scm_log10): Check HAVE_CLOG10, clog10() is not available
742 in mingw.
743
744 * posix.c (scm_execl, scm_execlp, scm_execle): Cast "const char *
745 const *" for mingw to suppress warnings from gcc (which are errors
746 under the configure default -Werror). Reported by Nils Durner.
747
7482006-09-26 Kevin Ryde <user42@zip.com.au>
749
750 * _scm.h (scm_to_off64_t, scm_from_off64_t): New macros.
751 * fports.c (scm_open_file): Use open_or_open64.
752 (fport_seek_or_seek64): New function, adapting fport_seek.
753 * fports.c, fports.h (scm_i_fport_seek, scm_i_fport_truncate): New
754 functions.
755 * ports.c (scm_seek, scm_truncate_file): Use scm_i_fport_seek and
756 scm_i_fport_truncate to allow 64-bit seeks and truncates on fports.
757
758 * ports.c (scm_truncate_file): Update docstring per manual.
759
7602006-09-23 Kevin Ryde <user42@zip.com.au>
761
762 * numbers.c, numbers.h (scm_log, scm_log10, scm_exp, scm_sqrt): New
763 functions.
764
9a5fa6e9 7652006-09-20 Ludovic Courtès <ludovic.courtes@laas.fr>
a17d2654
LC
766
767 * srfi-14.c: Include <config.h>. Define `_GNU_SOURCE'.
768 (make_predset, define_predset, make_strset, define_strset, false,
769 true): Removed.
770 (SCM_CHARSET_UNSET, CSET_BLANK_PRED, CSET_SYMBOL_PRED,
771 CSET_PUNCT_PRED, CSET_LOWER_PRED, CSET_UPPER_PRED,
772 CSET_LETTER_PRED, CSET_DIGIT_PRED, CSET_WHITESPACE_PRED,
773 CSET_CONTROL_PRED, CSET_HEX_DIGIT_PRED, CSET_ASCII_PRED,
774 CSET_LETTER_AND_DIGIT_PRED, CSET_GRAPHIC_PRED, CSET_PRINTING_PRED,
775 CSET_TRUE_PRED, CSET_FALSE_PRED, UPDATE_CSET): New macros.
776 (define_charset, scm_srfi_14_compute_char_sets): New functions.
777 (scm_init_srfi_14): Use `define_charset ()' instead of
778 `define_predset ()' and `define_strset ()'.
779
780 * srfi-14.h (scm_c_init_srfi_14): Removed.
781 (scm_srfi_14_compute_char_sets): New declaration.
782
783 * posix.h: Include "srfi-14.h".
784 (scm_setlocale): Invoke `scm_srfi_14_compute_char_sets ()' after a
785 successful `setlocale ()' call.
786
8ab3d8a0
KR
7872006-09-08 Kevin Ryde <user42@zip.com.au>
788
789 * socket.c (scm_init_socket): Add MSG_DONTWAIT.
790 (scm_recvfrom): Update docstring from manual.
791
418122ce
RB
7922006-08-31 Rob Browning <rlb@defaultvalue.org>
793
794 * ports.c (scm_c_port_for_each): Add a
795 scm_remember_upto_here_1(ports) at the end of the function to fix
796 a GC bug.
797
b5944f66
NJ
7982006-08-28 Neil Jerram <neil@ossau.uklinux.net>
799
800 * backtrace.c (scm_display_backtrace_with_highlights): Minor
801 improvements to docstring.
802 (scm_backtrace_with_highlights): Analogous improvements.
803
8ab3d8a0
KR
8042006-08-12 Kevin Ryde <user42@zip.com.au>
805
806 * gen-scmconfig.h.in (SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT):
807 New, set from configure.
808 * gen-scmconfig.c (SCM_NEED_BRACES_ON_PTHREAD_ONCE_INIT): New output
809 to scmconfig.h.
810 * pthread-threads.h (SCM_I_PTHREAD_ONCE_INIT): Use
811 SCM_NEED_BRACES_ON_PTHREAD_ONCE_INIT to cope with Solaris.
812 Reported by Claes Wallin.
813
b0b0deff
NJ
8142006-08-11 Neil Jerram <neil@ossau.uklinux.net>
815
816 * stacks.c (scm_last_stack_frame): Correct docstring (returns a
817 frame, not a stack).
818
8ab3d8a0
KR
8192006-07-25 Kevin Ryde <user42@zip.com.au>
820
821 * threads.c (get_thread_stack_base): Restrict HAVE_PTHREAD_GETATTR_NP
822 on pthreads version, since pthread_getattr_np not available on solaris
823 and macos. Reported by Claes Wallin.
824
8252006-07-24 Kevin Ryde <user42@zip.com.au>
826
827 * filesys.c (dirfd): Test with #ifndef rather than HAVE_DIRFD, since
828 it's a macro on MacOS X. Reported by Claes Wallin.
829
830 * posix.c (sethostname): Give prototype if not HAVE_DECL_SETHOSTNAME,
831 for the benefit of Solaris 10. Reported by Claes Wallin.
832
833 * socket.c (scm_htonl, scm_ntohl): Use scm_to_uint32 rather than
834 NUM2ULONG, to enforce 32-bit range check on systems with 64-bit long.
835
8362006-07-21 Kevin Ryde <user42@zip.com.au>
837
838 * eval.c, filesys.c (alloca): Update <alloca.h> etc blob, per current
839 autoconf recommendation. Should fix Solaris 10 reported by Claes
840 Wallin.
841
842 * threads.c: Include <string.h>, needed for memset() which is used by
843 FD_ZERO() on Solaris 10. Reported by Claes Wallin.
844
b4912378
RB
8452006-07-18 Rob Browning <rlb@defaultvalue.org>
846
847 * continuations.c: Add __attribute__ ((returns_twice)) to the
848 ia64_getcontext prototype so that gcc will make the right
849 arrangements and avoid an illegal instruction during
850 call-with-current-continuation.
851
9a5fa6e9 8522006-07-12 Ludovic Courtès <ludovic.courtes@laas.fr>
eaa94eaa
LC
853
854 * numbers.c (guile_ieee_init): Use regular ANSI C casts rather
855 than C++-style `X_CAST ()'. Patch posted by by Mike Gran.
856
8ab3d8a0
KR
8572006-07-08 Kevin Ryde <user42@zip.com.au>
858
859 * environments.c (core_environments_unobserve): Use if/else rather
860 than ?: for "SET" bits, avoiding complaints from AIX xlc compiler
861 about them not being rvalues. Reported by Mike Gran.
862
863 * Makefile.am (version.h): Don't use $< in an explicit rule, it's not
864 portable and in particular fails on OpenBSD and AIX (see autoconf
865 manual too). Reported by Mike Gran.
866
8672006-06-25 Kevin Ryde <user42@zip.com.au>
868
869 * stime.c (bdtime2c): tm_gmtoff is seconds East, so take negative of
870 tm:gmtoff which is seconds West. Reported by Aaron VanDevender.
871 (bdtime2c): Test HAVE_STRUCT_TM_TM_GMTOFF for tm_gmtoff, rather than
872 HAVE_TM_ZONE.
873 (scm_strptime): Use tm_gmtoff from the strptime result when that field
874 exists, it's set by glibc strptime "%s".
875
9a5fa6e9 8762006-06-13 Ludovic Courtès <ludovic.courtes@laas.fr>
d15ad007
LC
877
878 * eq.c: Include "struct.h", "goops.h" and "objects.h".
879 (scm_equal_p): Invoke `scm_i_struct_equalp ()' on structures that
880 are not GOOPS instances.
881 * struct.c: Include "eq.h".
882 (scm_free_structs): Use `SCM_STRUCT_VTABLE_DATA ()' instead of
883 hand-written code.
884 (scm_i_struct_equalp): New.
885 * struct.h (scm_i_struct_equalp): New declaration.
886
c862d0e0
KR
8872006-06-06 Kevin Ryde <user42@zip.com.au>
888
889 * Makefile.am (BUILT_SOURCES): Remove guile.texi, only used by
890 maintainers (with doc/maint/docstring.el). Fixes parallel "make -j2"
891 reported by Mattias Holm.
b4912378 892
c862d0e0
KR
8932006-06-03 Kevin Ryde <user42@zip.com.au>
894
895 * read.c (s_vector): Conditionalize on SCM_ENABLE_ELISP, to avoid
896 unused variable warning when elisp disabled. Reported by Ryan
897 VanderBijl.
898
899 * throw.c (scm_handle_by_message): Add dummy return value to avoid
900 compiler warning on cygwin. Reported by Ryan VanderBijl.
901
902 * Makefile.am (EXTRA_DOT_X_FILES): Typo in dependency rule, was a
903 duplicate of EXTRA_DOT_DOC_FILES.
904 (DOT_X_FILES, EXTRA_DOT_X_FILES, DOT_DOC_FILES, EXTRA_DOT_DOC_FILES):
905 Add scmconfig.h to dependencies, since these all run cpp. Helps a
906 parallel "make -j2". Reported by Mattias Holm.
907
9082006-05-30 Kevin Ryde <user42@zip.com.au>
909
910 * ports.c, ports.h (scm_set_port_mark, scm_set_port_free,
911 scm_set_port_print, scm_set_port_equalp, scm_set_port_flush,
912 scm_set_port_end_input, scm_set_port_close, scm_set_port_seek,
913 scm_set_port_truncate, scm_set_port_input_waiting): Use scm_t_bits for
914 port type descriptor, same as scm_make_port_type return value.
915
af4f8612
MV
9162006-05-30 Marius Vollmer <mvo@zagadka.de>
917
918 * eq.c (scm_equal_p): Use scm_array_equal_p explicitely when one
919 of the arguments is a array. This allows vectors to be equal to
920 one-dimensional arrays.
921
18bffcd0
MV
9222006-05-29 Marius Vollmer <mvo@zagadka.de>
923
924 * throw.c (scm_ithrow): When looking for the jmpbuf, first test
925 that we have a pair before accessing its cdr. Thanks to Bill
926 Schottstaedt!
927
c862d0e0
KR
9282006-05-28 Kevin Ryde <user42@zip.com.au>
929
930 * eval.c, filesys.c: Add malloc.h to get alloca() on mingw. Reported
931 by "The Senator".
932
9332006-05-27 Marius Vollmer <mvo@zagadka.de>
b0c0a310
MV
934
935 * srfi-4.c, strings.c: Replace SCM_C_INLINE with
936 SCM_C_INLINE_KEYWORD. Thanks to Mark Gran!
937
c862d0e0
KR
9382006-05-26 Kevin Ryde <user42@zip.com.au>
939
940 * fports.c (fport_input_waiting): For ioctl, check HAVE_IOCTL as well
941 as defined(FIONREAD), since mingw has FIONREAD but not ioctl().
942 Reported by "The Senator".
943 For select and ioctl, move fdes into those conditionals, to avoid
944 unused variable warning when neither of those used.
945
9462006-05-23 Kevin Ryde <user42@zip.com.au>
947
948 * fports.c: Remove "fwrite" declaration under "! HAVE_UNISTD_H".
949 It's unused and will be in stdio.h anyway (if it's anywhere).
950
9512006-05-20 Kevin Ryde <user42@zip.com.au>
952
953 * filesys.c (scm_stat2scm): Test #ifdef S_ISLNK directly, rather than
954 HAVE_S_ISLNK from configure (it was only a #ifdef test anyway).
955
956 * posix.c (scm_mknod): Test #ifdef S_IFLNK before using that (for
957 symlink). Probably can't create symlinks with mknod anyway though.
958
959 * inline.h (scm_is_pair): Add a workaround for i386 gcc 2.95 bad code
960 generation.
961
9622006-05-15 Kevin Ryde <user42@zip.com.au>
963
964 * simpos.c, simpos.h (scm_primitive__exit): New function.
965 (scm_primitive_exit): Update docstring, no longer the best exit after
966 a fork.
967
9682006-05-09 Kevin Ryde <user42@zip.com.au>
969
970 * numbers.c (scm_i_divide): For big/big wanting inexact, use mpq_get_d
971 rather than converting to doubles, to avoid inf or nan when the inputs
972 are too big for a double but the quotient does fit. This affects
973 conversions exact->inexact of big fractions.
974
975 * filesys.c (scm_open_fdes): Use open64.
976 (scm_init_filesys): Add O_LARGEFILE.
977
978 * ports.c (scm_seek): Use lseek64.
979 (scm_truncate_file): Use ftruncate64.
980
4a342b19
MV
9812006-05-08 Marius Vollmer <mvo@zagadka.de>
982
983 * private-gc.h (CELL_P): Also check that the potential pointer is
984 correctly aligned for a cell. Thanks to Miroslav Lichvar!
985
c862d0e0
KR
9862006-04-18 Rob Browning <rlb@defaultvalue.org>
987
988 * _scm.h: Add back error if the size of off_t is unknown. The bug
989 was actually in guile-readline's configuration.
990
9912006-04-18 Kevin Ryde <user42@zip.com.au>
992
993 * posix.c (scm_mkstemp): Update docstring from the manual, in
994 particular file mode 0600 is not guaranteed.
995
281ab5e2
KR
9962006-04-17 Kevin Ryde <user42@zip.com.au>
997
998 * _scm.h (scm_to_off_t, scm_from_off_t): No error if unknown off_t
999 size, to help the guile-readline build where off_t is unused.
1000
2b829bbb
KR
10012006-04-16 Kevin Ryde <user42@zip.com.au>
1002
1003 * filesys.c (scm_stat2scm, scm_stat, scm_lstat): Use stat or stat64.
1004 (scm_readdir): Use readdir64.
1005 (scm_copy_file): Use open64 and fstat64, to cope with >2Gb files.
1006 * ports.c (scm_truncate_file): Use truncate64. Correction truncate
1007 and ftruncate take off_t not size_t.
1008 * _scm.h (stat_or_stat64 etc): Macros for selecting LFS64 when
1009 available.
1010
10112006-04-06 Kevin Ryde <user42@zip.com.au>
1012
1013 * fports.c (scm_setvbuf): Fix for not _IOLBF, clear SCM_BUFLINE
9a5fa6e9 1014 instead of toggling it. Reported by Ludovic Courtès.
2b829bbb
KR
1015
10162006-03-26 Marius Vollmer <mvo@zagadka.de>
1017
1018 * threads.c (get_thread_stack_base): Use scm_get_stack_base
1019 instead of accessing __libc_stack_end directly, and only do this
1020 when pthread_attr_getstack is known not to work for the main
1021 thread or when not using pthreads at all.
1022
1023 * gc_os_dep.c (scm_get_stack_base): Abort when the machine type is
1024 unknown instead of returning NULL.
1025
9a5fa6e9 10262006-03-21 Ludovic Courtès <ludovic.courtes@laas.fr>
2b829bbb
KR
1027
1028 * numbers.c (scm_i_mem2number): Renamed to
1029 scm_c_locale_stringn_to_number.
1030 * numbers.c, print.c, read.c: Updated callers.
1031 * numbers.h: Update function declaration.
1032
10332006-03-11 Neil Jerram <neil@ossau.uklinux.net>
1034
1035 * unif.c (string_set): Don't return in a void function. (Reported
1036 by Mike Gran.)
1037
1038 * srfi-4.c (scm_uniform_vector_read_x): Declare base as char*
1039 rather than void*, so we can do pointer arithmetic on it.
1040 (Reported by Mike Gran.)
1041 (s_scm_uniform_vector_write): Ditto.
1042
10432006-03-10 Neil Jerram <neil@ossau.uklinux.net>
1044
1045 * unif.c (scm_make_shared_array): Don't use SCM_I_ARRAY_BASE when
1046 oldra is not an array. (Reported by Steve Juranich.)
1047
1048 * threads.c (do_unlock): Renamed from "unlock", which is defined
1049 in unistd.h on QNX. (Reported by Matt Kraai.)
1050
10512006-03-04 Kevin Ryde <user42@zip.com.au>
1052
1053 * deprecated.c (scm_i_defer_ints_etc): Show SCM_DEFER_INTS in message,
1054 not SCM_CRITICAL_SECTION_START.
1055
1056 * eval.c, posix.c: Change comments from C++ to C style. Reported by
1057 Mike Gran.
1058
10592006-02-28 Kevin Ryde <user42@zip.com.au>
1060
1061 * unif.c (bitvector_set): Use h->writable_elements not h->elements.
1062
10632006-02-26 Kevin Ryde <user42@zip.com.au>
1064
1065 * filesys.c (scm_readdir): Use fpathconf for the dirent size when
1066 NAME_MAX is not available, which is so on Solaris 10. Report and help
1067 by Bill Schottstaedt.
1068
1069 * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_UCOPY): New macro.
1070 (scm_string_compare, scm_string_compare_ci, scm_string_lt,
1071 scm_string_gt, scm_string_le, scm_string_ge, scm_string_ci_lt,
1072 scm_string_ci_gt, scm_string_ci_le, scm_string_ci_ge): In comparisons
1073 use "unsigned char", not signed char. This ensures comparisons are
1074 the same as `char<?' etc, and is also the same as guile 1.6 did.
1075 Reported by Sven Hartrumpf.
1076
4a9f83ff
MD
10772006-02-19 Mikael Djurfeldt <mdj@neurologic.cc>
1078
1079 * random.c: Test for SCM_HAVE_T_UINT64 instead of
1080 SCM_HAVE_T_INT64.
1081 (scm_i_uniform32, scm_i_uniform32, scm_i_init_rstate): Use
1082 scm_t_uint64 and scm_t_uint32 instead of scm_t_int64 and
1083 scm_t_int32.
1084
29d8c124 10852006-01-04 Ludovic Courtès <ludovic.courtes@laas.fr>
4c7016dc
HWN
1086
1087 * gc-segment.c (scm_i_sweep_some_cards): Take a SWEEP_STATS
1088 argument. Don't refer to SCM_GC_CELLS_COLLECTED and
1089 SCM_CELLS_ALLOCATED. If SEG->FIRST_TIME, let CELLS_COLLECTED as zero.
1090 Take into account SEG->SPAN when computing CELLS_SWEPT.
1091 (scm_i_sweep_segment): Take one more argument, similarly.
1092 (scm_i_sweep_all_segments): Likewise.
1093 (scm_i_sweep_some_segments): Likewise.
1094 (scm_i_adjust_min_yield): Change the way MIN_CELLS is computed: do not
1095 refer to SCM_GC_CELLS_COLLECTED.
1096
1097 * gc-freelist.c (scm_i_adjust_min_yield): Take one more
1098 argument, an `scm_i_sweep_statistics' object.
1099 Change the way DELTA is collected: don't take into account
1100 SCM_GC_CELLS_COLLECTED_1, only SWEEP_STATS.COLLECTED.
1101
1102 * gc-malloc.c (scm_realloc): Pass an extra argument
1103 to `scm_i_sweep_all_segments ()'.
1104
1105 * gc.c (gc_start_stats): Updated accordingly.
1106 (gc_end_stats): Take an additional SWEEP_STATS argument.
1107 Decrement SCM_CELLS_ALLOCATED after calls to `scm_i_sweep_* ()'.
1108 (scm_gc_for_newcell): Updated callers of `scm_i_sweep_*'.
1109 Decrement SCM_CELLS_ALLOCATED.
1110 (scm_i_gc): Likewise.
1111
1112 * private-gc.h (scm_i_sweep_*): Updated function
1113 prototypes accordingly.
1114 (scm_t_sweep_statistics): New type.
1115 (scm_i_sweep_statistics_init): New macro.
1116 (scm_i_sweep_statistics_sum): New macro
1117
9a5fa6e9 11182006-02-14 Ludovic Courtès <ludovic.courtes@laas.fr>
2b829bbb
KR
1119
1120 * strings.c (scm_i_take_stringbufn): Register LEN+1 bytes instead of
1121 LEN. Without this, too much collectable memory gets unregistered,
1122 which results in an underflow of SCM_MALLOCATED in
1123 `decrease_mtrigger()'.
1124
1125 * gc-malloc.c (decrease_mtrigger): Make sure SIZE is lower than or
1126 equal to SCM_MALLOCATED.
1127
11282006-02-13 Marius Vollmer <mvo@zagadka.de>
1129
1130 * eval.c (scm_eval_body): Use scm_i_dynwind_pthread_mutex_lock
1131 oinstead of scm_dynwind_pthread_mutex_lock so that it works when
1132 configured --without-threads.
1133 (SCM_APPLY, CEVAL): Likewise. Thanks to Han-Wen Nienhuys!
1134
1aaa1c17
MV
11352006-02-12 Marius Vollmer <mvo@zagadka.de>
1136
1137 * unif.c (scm_dimensions_to_uniform_array): Use the prototype for
1138 filling when the fill parameter is omitted, as documented, but
1139 turn #\nul into 0 since s8 arrays (signified by a #\nul prototype)
1140 can not store characters.
1141
d7c6575f
NJ
11422006-02-09 Neil Jerram <neil@ossau.uklinux.net>
1143
1144 * socket.c (scm_c_make_socket_address): Pass address_size pointer
1145 on to scm_fill_sockaddr call.
1146
43e01b1e
NJ
11472006-02-04 Neil Jerram <neil@ossau.uklinux.net>
1148
1149 * throw.h (scm_c_catch, scm_c_with_throw_handler,
1150 scm_catch_with_pre_unwind_handler, scm_with_throw_handler): New.
1151
1152 * throw.c (SCM_JBPREUNWIND, SCM_SETJBPREUNWIND): New.
1153 (struct pre_unwind_data): New, replaces struct lazy_catch.
1154 (scm_c_catch): New, replaces scm_internal_catch as the primary
1155 catch API for C code; adds pre-unwind handler support.
1156 (scm_internal_catch): Now just a wrapper for scm_c_catch, for back
1157 compatibility.
1158 (tc16_pre_unwind_data, pre_unwind_data_print,
1159 make_pre_unwind_data, SCM_PRE_UNWIND_DATA_P): Renamed from
1160 "lazy_catch" equivalents.
1161 (scm_c_with_throw_handler): New, replaces scm_internal_lazy_catch
1162 as the primary C API for a "lazy" catch.
1163 (scm_internal_lazy_catch): Now just a wrapper for
1164 scm_c_with_throw_handler, for back compatibility.
1165 (scm_catch_with_pre_unwind_handler): Renamed from scm_catch; adds
1166 pre-unwind handler support.
1167 (scm_catch): Now just a wrapper for
1168 scm_catch_with_pre_unwind_handler, for back compatibility.
1169 (scm_with_throw_handler): New.
1170 (scm_lazy_catch): Update comment to say that the handler can
1171 return, and what happens if it does.
1172 (toggle_pre_unwind_running): New.
1173 (scm_ithrow): When identifying the throw target, take running
1174 flags into account. In general, change naming of things from
1175 "lazy_catch" to "pre_unwind". When throwing to a throw handler,
1176 don't unwind the dynamic context first. Add dynwind framing to
1177 manage the running flag of a throw handler. If a lazy catch or
1178 throw handler returns, rethrow the same exception again. Add
1179 pre-unwind support to the normal catch case (SCM_JMPBUFP).
1180
1181 * root.c (scm_internal_cwdr): Add NULL args to
1182 scm_i_with_continuation_barrier call.
1183
1184 * dynwind.c: Change comment mentioning lazy-catch to mention
1185 pre-unwind data and throw handler also.
1186
1187 * continuations.h (scm_i_with_continuation_barrier): Add
1188 pre-unwind handler args.
1189
1190 * continuations.c (scm_i_with_continuation_barrier): Add
1191 pre-unwind handler args, and pass on to scm_c_catch (changed from
1192 scm_internal_catch).
1193 (c_handler): Remove scm_handle_by_message_noexit call.
1194 (scm_c_with_continuation_barrier): Call
1195 scm_i_with_continuation_barrier with scm_handle_by_message_noexit
1196 as the pre-unwind handler.
1197 (scm_handler): Remove scm_handle_by_message_noexit call.
1198 (s_scm_with_continuation_barrier): Call
1199 scm_i_with_continuation_barrier with scm_handle_by_message_noexit
1200 as the pre-unwind handler.
1201
2b829bbb
KR
12022006-02-04 Kevin Ryde <user42@zip.com.au>
1203
1204 * gc-mark.c (scm_mark_all): Fix c99-isms "loops" and "again" variables.
1205
72098928
KR
12062006-02-03 Kevin Ryde <user42@zip.com.au>
1207
1208 * list.c, list.h (scm_list): Restore this function for use from C.
1209 It's a complete no-op but in theory might used by someone.
1210
aa092c5d
MV
12112006-01-30 Marius Vollmer <mvo@zagadka.de>
1212
1213 * eval.c (scm_eval_body): Lock source_mutex with a dynwind context
1214 so that it gets unlocked in all cases.
1215 (SCM_APPLY, CEVAL): Likewise.
1216
661ae7ab
MV
12172006-01-29 Marius Vollmer <mvo@zagadka.de>
1218
ee51ba31
MV
1219 * ramap.c: (scm_array_map_x): Don't use scm_array_p, use
1220 scm_is_typed_array instead.
1221
661ae7ab
MV
1222 Renamed the "frames" that are related to dynamic-wind to "dynamic
1223 contexts. Renamed all functions from scm_frame_ to scm_dynwind_.
1224 Updated documentation.
1225
99e370f6
MV
1226 Disabled "futures":
1227
1228 * futures.h, futures.c: Wrap whole contents in "#if 0"/"#endif".
1229 * eval.c, init.c: Comment out all 'future' related things.
1230
15ccf10b
MV
12312006-01-28 Marius Vollmer <mvo@zagadka.de>
1232
1233 * inline.h, pairs.c (scm_is_pair): Moved scm_is_pair from pairs.c
1234 to inline.h to make it inline.
1235
9a5fa6e9 12362005-12-19 Ludovic Courtès <ludovic.courtes@laas.fr>
fd0a5bbc
HWN
1237
1238 * strings.c (scm_i_take_stringbufn): New.
1239 (scm_i_c_take_symbol): New.
1240 (scm_take_locale_stringn): Use `scm_i_take_stringbufn ()'.
1241
1242 * strings.h (scm_i_c_take_symbol): New.
1243 (scm_i_take_stringbufn): New.
1244
1245 * symbols.c (lookup_interned_symbol): New function.
1246 (scm_i_c_mem2symbol): New function.
1247 (scm_i_mem2symbol): Use `lookup_symbol ()'.
1248 (scm_from_locale_symbol): Use `scm_i_c_mem2symbol ()'. This avoids
1249 creating a new Scheme string.
1250 (scm_from_locale_symboln): Likewise.
1251 (scm_take_locale_symbol): New.
1252 (scm_take_locale_symboln): New.
1253
1254 * symbols.h (scm_take_locale_symbol): New.
1255 (scm_take_locale_symboln): New.
1256
2ca2ffe6
HWN
12572006-01-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
1258
1259 * gc-card.c ("sweep_card"): don't count scm_tc_free_cell for
1260 free_count.
1261
c255614e
HWN
12622005-11-29 Han-Wen Nienhuys <hanwen@xs4all.nl>
1263
1264 * regex-posix.c (s_scm_regexp_exec): list the offending pattern
1265 upon error
1266
29295b0c
NJ
12672005-12-29 Neil Jerram <neil@ossau.uklinux.net>
1268
9a5fa6e9 1269 * fluids.c (next_fluid_num): [From Ludovic Courtès:] Don't trigger
29295b0c
NJ
1270 the GC when allocated_fluids_len is zero.
1271
2824f4dc
NJ
12722005-12-14 Neil Jerram <neil@ossau.uklinux.net>
1273
ec3a8ace
NJ
1274 * load.c (the_reader, the_reader_fluid_num): New.
1275 (scm_primitive_load): Support custom reader.
1276 (scm_init_load): Init the_reader and the_reader_fluid_num; export
1277 the_reader as `current-reader'.
1278
2824f4dc
NJ
1279 * scmsigs.c (do_read_without_guile): Use the "raw_data" passed in
1280 (rather than an uninitialized pointer on the stack).
1281
d9c36d2a
MV
12822005-12-07 Marius Vollmer <mvo@zagadka.de>
1283
6a88895b
MV
1284 Reported by Bruce Korb:
1285
1286 * init.c (invoke_main_func): Don't call exit here. Throws that
1287 are only caught by scm_with_guile will bypass us and would cause
1288 scm_boot_guile to return erroneously.
1289 (scm_boot_guile): Expect scm_with_guile to return and call exit
1290 here, passing it an appropriate exit code.
1291
1292 From Andy Wingo:
d9c36d2a
MV
1293
1294 * script.c (scm_find_executable): Compile fix -- fgetc returns an
1295 unsigned char cast to an int, or -1 for EOS.
1296
b54df254
MV
12972005-12-06 Marius Vollmer <mvo@zagadka.de>
1298
08f489c9
MV
1299 * srfi-4.h, srfi-4.c, srfi-4.i.c (take_uvec): Make BASE pointer
1300 non-const.
9a5fa6e9 1301 (scm_take_u8vector, etc): Likewise. Thanks to Ludovic Courtès!
08f489c9 1302
b54df254
MV
1303 * threads.h, threads.c (scm_t_guile_ticket, scm_leave_guile,
1304 scm_enter_guile): Removed from public API. See comment at
1305 scm_without_guile for the rationale.
1306
1307 * scmsigs.c (read_without_guile): New.
1308 (signal_delivery_thread): Use it instead of
1309 scm_leave_guile/read/scm_enter_guile.
1310
9d9ce2b5
MV
1311 From Stephen Compall:
1312
1313 * eval.c (scm_m_cond): Recognize SRFI 61 cond syntax.
1314 (CEVAL): Evaluate SRFI 61 cond clauses.
1315
9a5fa6e9 13162005-12-06 Ludovic Courtès <ludovic.courtes@laas.fr>
9fb5c8f9
NJ
1317
1318 * gc-card.c (scm_i_card_statistics): Return if BITVEC is NULL.
1319 This was typically hit when running `gc-live-object-stats' right
1320 after starting Guile.
1321
efeac8ae
KR
13222005-11-30 Kevin Ryde <user42@zip.com.au>
1323
1324 * srfi-13.c (scm_string_append_shared): No copying if just one
1325 non-empty string in args.
1326
606183ba
KR
13272005-11-26 Kevin Ryde <user42@zip.com.au>
1328
1329 * gc-mark.c (scm_mark_all): Change C++ comment to C comment. Reported
9a5fa6e9 1330 by Ludovic Courtès.
606183ba
KR
1331
1332 * list.c (list): Should be "primitive" in SCM_SNARF_DOCS, not
1333 "register".
1334
1335 * random.c (scm_i_copy_rstate, scm_c_make_rstate): Don't test for
1336 scm_malloc returning NULL, it never does that.
1337 * putenv.c (putenv): Likewise.
1338
1339 * socket.c (scm_fill_sockaddr): Remove SCM_C_INLINE_KEYWORD, this is
1340 much too big to want to inline.
1341
9a5fa6e9 13422005-11-17 Ludovic Courtès <ludovic.courtes@laas.fr>
dbb5de29
NJ
1343
1344 * print.c (EXIT_NESTED_DATA): Before popping from the stack, reset
1345 the value at its top. This fixes a reference leak.
1346 (PUSH_REF): Perform `pstate->top++' after calling
1347 `PSTATE_STACK_SET ()' in order to avoid undesired potential side
1348 effects.
1349
9a5fa6e9 13502005-11-12 Ludovic Courtès <ludovic.courtes@laas.fr>
3f98874a
NJ
1351
1352 * gc.c (scm_weak_vectors): Removed.
1353
f07d2b20
KR
13542005-11-12 Kevin Ryde <user42@zip.com.au>
1355
1356 * socket.c (scm_setsockopt): Missing @defvar in docstring. Reported
9a5fa6e9 1357 by Ludovic Courtès.
f07d2b20 1358
bedd3f5f
MV
13592005-11-07 Marius Vollmer <mvo@zagadka.de>
1360
1361 * stime.c (scm_mktime): Use scm_frame_critical_section instead of
1362 SCM_CRITICAL_SECTION_START/END since the code inside the critical
1363 section might exit non-locally.
1364
7c9c0169
NJ
13652005-11-04 Neil Jerram <neil@ossau.uklinux.net>
1366
1367 * eval.c (sym_instead): New symbol.
1368 (ENTER_APPLY): Remove optional use of a continuation when making
1369 trap call.
1370 (scm_debug_opts): Change doc for 'cheap option to make clear that
1371 it is now obsolete.
1372 (CEVAL, SCM_APPLY): Remove optional use of a continuation when
1373 making trap calls, and implement substitution of eval expressions
1374 and return values using the values that the trap call handlers
1375 return.
1376
1377 * debug.h (SCM_CHEAPTRAPS_P): Removed.
1378
9a5fa6e9 13792005-10-27 Ludovic Courtès <ludovic.courtes@laas.fr>
64cdbfc7
KR
1380
1381 * socket.c (scm_fill_sockaddr): No need to check NULL from scm_malloc.
1382 (scm_connect, scm_bind, scm_sendto): Accept sockaddr object.
1383 (scm_addr_vector): Renamed to _scm_from_sockaddr, update usages.
1384 (scm_from_sockaddr, scm_to_sockaddr, scm_make_socket_address,
1385 scm_c_make_socket_address): New functions.
1386 * socket.h: Add prototypes.
1387
fc9f596c
KR
13882005-10-24 Kevin Ryde <user42@zip.com.au>
1389
1390 * socket.c (scm_init_socket): Add IPPROTO_IP, IPPROTO_TCP,
1391 IPPROTO_UDP. Remove SOL_IP, SOL_TCP, SOL_UDP. The former are in
1392 POSIX spec examples, the latter are not available on for instance
1393 NetBSD.
1394
1395 * socket.c (scm_getsockopt, scm_setsockopt): Update docstrings from
1396 posix.texi.
1397
1398 * stime.c (scm_strftime): Update docstring from posix.texi.
1399
0460c6e1
MV
14002005-10-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1401
1402 PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP is not portable enough.
1403
1404 * null-threads.h, pthread-threads.h
1405 (SCM_I_PTHREAD_RECURSIVE_MUTEX_INITIALIZER): Removed.
1406 (scm_i_pthread_mutexattr_recursive): New.
1407
1408 * threads.c (scm_i_pthread_mutexattr_recursive): Declare.
1409 (scm_i_critical_section_mutex): Do not initialize statically.
1410 (scm_threads_prehistory): Initialize
1411 scm_i_pthread_mutexattr_recursive and scm_i_critical_section_mutex
1412 here.
1413
1414 * eval.c (source_mutex): Do not initialiaze statically.
1415 (scm_init_eval): Do it here, using
1416 scm_i_pthread_mutexattr_recursive.
1417
7b4a9e52
MV
14182005-09-05 Marius Vollmer <mvo@zagadka.de>
1419
1420 * print.h (SCM_PRINT_KEYWORD_STYLE_I, SCM_PRINT_KEYWORD_STYLE):
1421 New.
1422 (sym_reader): New.
1423 (scm_print_opts): Added "quote-keywordish-symbols" option.
1424 (quote_keywordish_symbol): New, for evaluating the option.
1425 (scm_print_symbol_name): Use it.
1426 (scm_init_print): Initialize new option to sym_reader.
1427
5defc05d
NJ
14282005-08-15 Neil Jerram <neil@ossau.uklinux.net>
1429
1430 * eval.c (eval_letrec_inits): New.
1431 (CEVAL): Eval letrec initializer forms using eval_letrec_inits.
1432
036482e9
MV
14332005-08-12 Marius Vollmer <mvo@zagadka.de>
1434
1435 * numbers.c: Use scm_from_bool instead of SCM_BOOL. Thanks to
1436 Peter Gavin!
1437
5c347f8c
KR
14382005-08-12 Kevin Ryde <user42@zip.com.au>
1439
1440 * srfi-13.c (scm_string_for_each_index): Correction to docstring.
1441
bc721aa2
KR
14422005-08-06 Kevin Ryde <user42@zip.com.au>
1443
1444 * srfi-13.c (scm_string_any, scm_string_every, scm_string_tabulate,
1445 scm_string_trim, scm_string_trim_right, scm_string_trim_both,
1446 scm_string_index, scm_string_index_right, scm_string_skip,
1447 scm_string_skip_right, scm_string_count, scm_string_map,
1448 scm_string_map_x, scm_string_for_each, scm_string_for_each_index,
1449 scm_string_filter, scm_string_delete): Use scm_t_trampoline_1 for
1450 procedures called in loops.
1451
126c81db
KR
14522005-08-02 Kevin Ryde <user42@zip.com.au>
1453
1454 * strports.c (st_flush): Increase buffer by 1.5x when growing, to
1455 avoid lots of copying where previoulsy growing by only 80 bytes at a
1456 time.
1457
7f278dc6
MV
14582005-08-01 Marius Vollmer <mvo@zagadka.de>
1459
1460 * modules.h, modules.c (scm_eval_closure_module): Removed, we
1461 already have scm_lookup_closure_module, which does the same thing.
1462
cb5c4b07
MV
14632005-08-01 Marius Vollmer <mvo@zagadka.de>
1464
1465 New marking algorithm for weak hashtables that fixes the problem
1466 that references from the non-weak value to the associated weak
1467 key (for example) would prevent the entry from ever being dropped.
1468
1469 Guardians have been changed back to their original semantics and
1470 are no longer greedy and no longer drop cycles.
1471
1472 * gc-mark.c (scm_mark_all): Do not rely on hooks to run the weak
1473 hashtable and guardian machinery but call the relevant functions
1474 directly.
1475
1476 * guardians.h, guardians.c, deprecated.h,
1477 deprecated.c (scm_destroy_guardian_x, scm_guardian_greedy_p,
1478 scm_guardian_destroyed_p, scm_guard, scm_get_one_zombie):
1479 Deprecated and moved into deprecated.[ch].
1480
1481 * guardians.h, guardians.c: Mostly rewritten.
1482 (scm_i_init_guardians_for_gc,
1483 scm_i_identify_inaccessible_guardeds,
1484 scm_i_mark_inaccessible_guardeds): New.
930888e8 1485 (scm_make_guardian): Removed greedy_p argument.
cb5c4b07
MV
1486
1487 * weaks.h, weaks.c (SCM_I_WVECT_TYPE, SCM_I_SET_WVECT_TYPE): New.
1488 (SCM_I_WVECT_N_ITEMS, SCM_I_SET_WVECT_N_ITEMS): New.
1489 (SCM_WVECTF_NOSCAN, SCM_WVECT_NOSCAN_P): Removed.
1490 (scm_weaks_prehistory): Removed.
1491 (scm_i_init_weak_vectors_for_gc, scm_i_mark_weak_vector,
1492 scm_i_mark_weak_vectors_non_weaks,
1493 scm_i_remove_weaks_from_weak_vectors, scm_i_remove_weaks): New.
1494 (scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
1495 scm_scan_weak_vectors): Removed.
1496
1497 * hashtab.h (scm_i_scan_weak_hashtables): New.
1498 * hashtab.c (make_hash_table, scm_i_rehash): Do not use
1499 SCM_WVECTF_NOSCAN.
1500 (hashtable_print): Use SCM_HASHTABLE_N_ITEMS instead of
1501 t->n_items.
1502 (scan_weak_hashtables, scm_i_scan_weak_hashtables): Renamed former
1503 to latter. Do not scan the alists themselves, this is done by the
1504 weak vector code now. Just update the element count.
1505
1506 * vectors.h (SCM_I_WVECT_TYPE, SCM_I_WVECT_EXTRA): Renamed former
1507 to latter. The type is now only part of the cell word.
1508 (SCM_I_SET_WVECT_TYPE, SCM_I_SET_WVECT_EXTRA): Likewise.
1509
1510 * init.c (scm_i_init_guile): Do not call scm_weaks_prehistory.
1511
3e2073bd
MD
15122005-07-18 Mikael Djurfeldt <mdj@d14n36.pdc.kth.se>
1513
1514 Some changes towards making it possible to run Guile on the EM64T
1515 platform.
1516
1517 * gc.c (scm_gc_stats): Bugfix: Measure size of the type we are
1518 mallocating for (unsigned long *bounds).
1519
1520 * hashtab.c (scm_i_rehash): Cast SCM_HASHTABLE_FLAGS (table) to
1521 scm_t_bits before storing them in the type word.
1522
1523 * gc.c (tag_table_to_type_alist): Modified type of c_tag from
1524 scm_t_bits to int.
1525
e8ac8e75
KR
15262005-07-12 Kevin Ryde <user42@zip.com.au>
1527
1528 * eval.c (scm_dbg_make_iloc): Should be SCM_IFRAMEMAX and
1529 SCM_IDISTMAX, and cast uints through scm_t_bits to make gcc happy.
1530 * pairs.c (scm_error_pair_access): Use scm_from_locale_string rather
1531 than scm_makfrom0str.
1532 Reported by Ken Raeburn.
1533
1534 * gc-card.c (scm_dbg_gc_get_bvec): Change return from long* to
1535 scm_t_c_bvec_long*, gcc 4 doesn't like different pointer targets when
1536 returning SCM_GC_CARD_BVEC.
1537
1538 * pairs.c (scm_error_pair_access): Plain ascii ' in error message
1539 rather than latin-1 acute accent, the latter may not print on all
1540 terminals.
1541
1542 * srfi-13.c (scm_string_filter, scm_string_delete): Strip leading and
1543 trailing deletions, so as to return a substring if those are the only
1544 changes.
1545
adc0677d
KR
15462005-07-10 Kevin Ryde <user42@zip.com.au>
1547
1548 * socket.c (scm_inet_pton, scm_inet_ntop): Pointer cast to scm_t_uint8
1549 for scm ipv6 funcs, gcc 4 is picky about char* vs uchar*.
1550 (scm_getsockopt, scm_accept, scm_getsockname, scm_getpeername,
1551 scm_recvfrom) Use socklen_t, gcc 4 is picky about int* vs socklen_t*.
1552
8fecbb19
HWN
15532005-07-01 Han-Wen Nienhuys <hanwen@xs4all.nl>
1554
1555 * gc-card.c (scm_i_card_statistics): init tag.
1556
1557 * gc.c (tag_table_to_type_alist): check type of tag. Should be integer.
1558
fc9c5d06
HWN
15592005-06-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
1560
8fecbb19
HWN
1561 * fports.c (s_scm_open_file): add the b flag for binary to the doc
1562 string.
fc9c5d06 1563
08fce816
KR
15642005-06-25 Kevin Ryde <user42@zip.com.au>
1565
1566 * srfi-13.c (scm_string_filter, scm_string_delete): Partial revert
1567 last change, use plain copy-on-write substrings, the individual
1568 descriptions in the srfi don't mention shared storage (only the
1569 introduction does).
1570
1571 * strings.c (scm_take_locale_stringn): Use realloc to make room for
1572 null-terminator, rather than mallocing a whole new block.
1573 (scm_take_locale_string): Use scm_take_locale_stringn len==-1.
1574
fc4abd0e
MV
15752005-06-12 Marius Vollmer <mvo@zagadka.de>
1576
e3da8a30
MV
1577 * ramap.c (scm_array_index_map_x): First test for real arrays,
1578 then check for generalized vectors. This ensures that the
1579 generalized vector case need only work with zero-origin ranges.
12097c77
MV
1580 (scm_ra_eqp, scm_ra_compare): Use the new array handle functions
1581 to access the target array, making these functions work with all
1582 kinds of arrays, not just bit arrays.
e3da8a30 1583
fc4abd0e
MV
1584 * gh.h, gh_data.c, gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c,
1585 gh_list.c, gh_predicates.c: Deprecated everything.
1586
1587 * environments.c (environment_default_folder,
1588 environment_default_observer): Do not use gh_call3, gh_call1.
1589
e4da0740
HWN
15902005-06-10 Han-Wen Nienhuys <hanwen@xs4all.nl>
1591
1592 * modules.c (s_scm_eval_closure_module): new function. Return the
1593 module inside an eval-closure.
1594
1595 * gc.c (scm_init_storage): make scm_stand_in_procs a weak_key hash
1596 table. This means that procedure properties are GC'd if the
1597 procedure dies.
1598
27667158
KR
15992005-06-11 Kevin Ryde <user42@zip.com.au>
1600
1601 * srfi-13.c (scm_string_filter, scm_string_delete): For char and
1602 charset cases, count chars kept and build a string in a second pass,
1603 rather than using a cons cell for every char kept. Use a shared
1604 substring when nothing removed (such sharing is allowed by the srfi).
1605
8a00ba71
HWN
16062005-06-09 Han-Wen Nienhuys <hanwen@xs4all.nl>
1607
1608 * gc.c (tag_table_to_type_alist): convert tag number to "tag %d"
1609 string, so live object stats can be sorted with string<?.
1610
a677679f
MV
16112005-06-06 Marius Vollmer <mvo@zagadka.de>
1612
2ff668b0
MV
1613 * print.c (iprin1): When writing a string, collect all characters
1614 that can be printed directly into one call to scm_lfwrite.
1615 Previously, every character was output with its own call to
1616 write(2) on unbuffered ports.
1617
589f22f6
MV
1618 * eval.c (scm_eval_options_interface): Use
1619 scm_frame_critical_section instead of SCM_CRITICAL_SECTION_START
1620 and SCM_CRITICAL_SECTION_END.
1621
a677679f
MV
1622 * unif.c (scm_array_in_bounds_p): First test for real arrays, then
1623 check for generalized vectors. This ensures that the generalized
1624 vector case need only work with zero-origin ranges.
1625
f8cda9ee
KR
16262005-06-06 Kevin Ryde <user42@zip.com.au>
1627
1628 * srfi-13.c (scm_string_split): Compare char/char in scan. Mixing an
1629 unsigned int SCM_CHAR and a char string meant an 8-bit char was never
1630 matched.
1631
cdac1be4
MV
16322005-06-05 Marius Vollmer <mvo@zagadka.de>
1633
6642f7ac
MV
1634 * eval.c: Added comment on how to make case 1.1 of
1635 r5rs_pitfall.test succeed.
1636
cdac1be4
MV
1637 From Jan Nieuwenhuizen <janneke@gnu.org>. Thanks!
1638
1639 * hashtab.h: Bugfix: use SCM_API (WAS: extern).
1640
1641 * socket.c: Remove obsolete comment about socklen_t.
1642 (s_scm_setsockopt)[!HAVE_IP_MREQ]: Do not use ip_mreq code.
1643
1644 * numbers.h (isnan)[__MINGW32__]: Remove.
1645
1646 * Makefile.am (gen_scmconfig_SOURCES): Bugfix: Add
1647 DEFAULT_INCLUDES when cross compiling.
1648
1649 * threads.c (ETIMEDOUT, pipe)[__MINGW32__]: Add defines.
1650
a677679f 1651 * stime.c (scm_strftime)[!HAVE_TM_ZONE]: Use
cdac1be4
MV
1652 SCM_SIMPLE_VECTOR_REF instead of SCM_VELTS. (Changed slightly
1653 from Jan's patch.)
1654
9e664475
MV
16552005-05-22 Marius Vollmer <mvo@zagadka.de>
1656
188d0c5e
MV
1657 * unif.c (scm_make_shared_array): Add old base to new base since
1658 scm_array_handle_pos does not include the base.
1659 (scm_aind): Likewise.
1660
9e664475
MV
1661 * ports.c (scm_putc, scm_puts): Assert that the port argument is a
1662 output port.
1663
5a6d139b
NJ
16642005-05-12 Neil Jerram <neil@ossau.uklinux.net>
1665
1666 Mac OS X compile warning fixes, reported by Richard Todd.
1667
1668 * unif.c (scm_i_read_array): Declare rank as ssize_t, to guarantee
1669 that it is signed.
1670
1671 * strports.c (st_resize_port): Add unsigned char cast.
1672 (scm_mkstrport): Make read/write_buf cast unsigned.
1673
1674 * srfi-13.c (string_titlecase_x): Add unsigned char cast.
1675
1676 * rdelim.c (scm_read_line): Initialize slen.
1677
1678 * load.c (scm_search_path): Remove weird >=1, and add
1679 parentheses to clarify conditions.
1680
1681 * hash.c (scm_hasher): Add const unsigned char cast.
1682
1683 * gh_data.c (gh_chars2byvect): Add scm_t_int8 cast.
1684
b01532af
NJ
16852005-05-11 Neil Jerram <neil@ossau.uklinux.net>
1686
9a5fa6e9 1687 Fix C99isms reported by Ludovic Courtès:
b01532af
NJ
1688
1689 * threads.c (s_scm_lock_mutex): Don't declare msg in middle of
1690 code.
1691
1692 * gc.c (s_scm_gc_live_object_stats): Don't declare alist in middle
1693 of code.
1694
1695 * gc-card.c (scm_i_card_statistics): Don't declare tag in middle
1696 of code.
1697 (scm_i_card_statistics): Add block for declarations of tag_as_scm
1698 and current.
1699
229a0710
NJ
17002005-05-10 Neil Jerram <neil@ossau.uklinux.net>
1701
1702 * scmsigs.c (signal_delivery_thread): Return a value, to avoid
1703 compile warning reported by Werner Scheinast.
1704
645dd3fc
HWN
17052005-04-30 Han-Wen Nienhuys <hanwen@xs4all.nl>
1706
80038021
HWN
1707 * list.h: remove scm_list()
1708
645dd3fc
HWN
1709 * fluids.c (DYNAMIC_STATE_NEXT_LOC): new macro for use with
1710 SCM_DEBUG_CELL_ACCESSES
1711 (FLUID_NEXT_LOC): idem.
1712
9a68a4a8
KR
17132005-04-30 Kevin Ryde <user42@zip.com.au>
1714
1715 * numbers.c (scm_divide): Correction to 1/complex and <any>/complex,
1716 need to test abs(re)<abs(im) for choice of cases, otherwise divide by
1717 zero when re==0 and im<0. Reported by Jean Crepeau.
1718
0640cdaa
KR
17192005-04-25 Kevin Ryde <user42@zip.com.au>
1720
1721 * ramap.c (scm_array_map_x): Allow no source args, add num args checks
4d54ee35
KR
1722 to subr_1, subr_2, subr_2o and dsubr cases. No source args only has a
1723 few sensible uses (like filling with a random number generator say),
1724 but has been allowed in the past and so should be kept.
0640cdaa 1725
c0b85e9c
KR
17262005-04-23 Kevin Ryde <user42@zip.com.au>
1727
1728 * hashtab.c (scm_hashx_remove_x): Need to pass "closure" to
1729 scm_hash_fn_remove_x.
1730
1731 * list.c (scm_cons_star): Don't modify the rest list, it belongs to
1732 the caller when cons* is reached through apply.
1733
1734 * list.c (list): Use scm_list_copy, so as to produce a fresh list when
1735 list is called using apply, under the debugging evaluator.
1736 (scm_list): Remove.
1737
c51682b4
KR
1738 * list.c, list.h (scm_make_list): New code, moving make-list from
1739 boot-9.scm.
8cb2eff8 1740
c0575bde
KR
17412005-04-14 Kevin Ryde <user42@zip.com.au>
1742
1743 * numbers.c, numbers.h (scm_oneplus, scm_oneminus): New functions,
1744 converted from scheme code in boot-9.scm.
1745
47a298d9
KR
17462005-04-11 Kevin Ryde <user42@zip.com.au>
1747
1748 * srfi-13.c (scm_string_concatenate, scm_string_concatenate_shared):
1749 Validate list argument, scm_string_append and scm_string_append_shared
1750 don't do that to their rest argument (in a normal build).
1751
8ea3dc2e
MV
17522005-04-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1753
1754 * hashtab.h, hashtab.c (scm_t_hashtable): Removed 'closure' field. The
1755 closure can not be stored since it is no longer valid at GC time.
1756 (make_hash_table): Initialize 'hash_fn' field.
1757 (scm_i_rehash): Only store hash_fn in hash table when closre is
1758 NULL.
1759 (rehash_after_gc): Only call scm_i_rehash when 'hash_fn' is
1760 non-NULL. Always use a NULL closure.
1761 (scm_hash_fn_create_handle_x): Also rehash when table contains too
1762 few entries.
1763
08d2020d
MV
17642005-03-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1765
1766 * hashtab.h, hashtab.c (scm_hash_fx_remove_x): Removed delete_fn
1767 argument; always use scm_delq_x. The delete_fn function works on
1768 the handle, not the key, and it therefore makes no sense to make
1769 it configurable. Changed all callers.
1770 (scm_hashx_remove_x): Likewise. Also, exported to Scheme.
1771 (scm_hash_clear): Accept plain vectors as hashtables.
1772 (scm_delx_x): Removed.
1773
cb975c21
HWN
17742005-03-28 Han-Wen Nienhuys <hanwen@xs4all.nl>
1775
1776 * inline.h (scm_double_cell): use __asm__ iso. asm, to maintain
1777 compatibility with gcc -std=c99.
1778
4c908f2c
MD
17792005-03-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
1780
1781 * async.h (scm_mask_ints): Removed left over reference to
1782 scm_root.
1783
1784 * threads.c: Removed fprintf debug statements.
1785
d193b04b
NJ
17862005-03-24 Neil Jerram <neil@ossau.uklinux.net>
1787
1788 * debug.c (scm_make_memoized): Restore use of SCM_UNPACK.
1789
c29748cd
NJ
17902005-03-23 Neil Jerram <neil@ossau.uklinux.net>
1791
1792 * debug.c (scm_make_memoized): Remove unnecessary critical
1793 section, and simplify by using SCM_RETURN_NEWSMOB.
1794
e654b062
MD
17952005-03-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
1796
1797 * strings.h (SCM_STRING_UCHARS): Added missing argument.
1798
4bc6f1c6
KR
17992005-03-18 Kevin Ryde <user42@zip.com.au>
1800
1801 * arbiters.c (FETCH_STORE) [generic C]: Should be
9a5fa6e9 1802 scm_i_scm_pthread_mutex_lock/unlock now. Reported by Ludovic Courtès.
4bc6f1c6 1803
f1531813
KR
18042005-03-13 Kevin Ryde <user42@zip.com.au>
1805
1806 * numbers.c, numbers.h (scm_i_clonebig): Remove static, so can use in
1807 srfi-60.
1808
1809 * numbers.c (scm_logior): Must scm_i_normbig results as per scm_logand,
1810 because OR-ing bits into a negative can reduce the value to an inum.
1811
1812 * numbers.c (scm_num_eq_p): On 64-bit systems, be careful about
1813 casting inum to double since that can lose precision.
1814
a9fae247
MV
18152005-03-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1816
1817 * threads.h, threads.c (scm_i_thread): Added gc_running_p field.
1818 (guilify_self_1): Initialize it.
1819
1820 * gc.h, gc.c (SCM_FREECELL_P): Removed for good.
1821 (scm_block_gc, scm_gc_heap_lock): Removed. Removed all uses.
1822 (scm_gc_running_p): Now a macro that refers to the scm_i_thread
1823 field.
1824 (scm_i_sweep_mutex): Now a non-recursive mutex. GC can not happen
1825 recursively.
1826 (scm_igc, scm_i_gc): Renamed former to latter. Changed all uses.
1827 Do not lock scm_i_sweep_mutex, which is now non-recursive, or set
1828 scm_gc_running_p. Do not run the scm_after_gc_c_hook.
1829 (scm_gc): Lock scm_i_sweep_mutex, set scm_gc_running_p and run the
1830 scm_after_gc_c_hook here.
1831 (scm_gc_for_new_cell): Set scm_gc_running_p here and run the
1832 scm_after_gc_c_hook when a full GC has in fact been performed.
1833 (scm_i_expensive_validation_check): Call scm_gc, not scm_i_gc.
1834
1835 * gc-segment.c (scm_i_get_new_heap_segment): Do not check
1836 scm_gc_heap_lock.
1837
1838 * gc-malloc.c (scm_realloc, increase_mtrigger): Set
1839 scm_gc_running_p while the scm_i_sweep_mutex is locked.
1840
1841 * inline.h (scm_cell, scm_double_cell): Do not check
1842 scm_gc_running_p, allocation during sweeping is OK.
1843
1844 * gdbint.c (SCM_BEGIN_FOREIGN_BLOCK, SCM_END_FOREIGN_BLOCK): Do
1845 not set scm_block_gc.
1846
1847 * init.c (scm_i_init_guile): Do not set scm_block_gc.
1848
1849 * deprecation.c (scm_c_issue_deprecation_warning): Use malloc
1850 instead of scm_malloc. The latter can not be used during GC.
1851
d1c38e11
MV
18522005-03-09 Marius Vollmer <mvo@zagadka.de>
1853
1854 * script.c (scm_compile_shell_switches): Added 2005 to Copyright
1855 years.
1856
99ec43c1
MV
18572005-03-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1858
1859 * gc-card.c (scm_i_sweep_card): Do not increase/decrease
1860 scm_gc_running_p. Sweeping can happen in parallel with
1861 allocation.
1862
1863 * inline.h: Updated comments for current threading implementation.
1864
1865 * threads.h, threads.c (scm_i_frame_single_threaded): Removed.
1866 (scm_i_thread): Removed unused signal_asyncs field.
1867 (threads_mark): Do not mark it.
1868 (guilify_self_1): Do not initialize it. Do initialize
1869 continuation_root field.
1870 (do_thread_exit): Do not remove thread from all_threads list.
1871 (on_thread_exit): Do it here, after leaving guile mode.
1872 (sleep_level): Removed.
1873 (scm_i_thread_put_to_sleep): Leave thread_admin_mutex locked when
1874 returning. Do not support recursive sleeps.
1875 (scm_i_thread_wake_up): Expect thread_admin_mutex to be locked on
1876 entry. Do not support recursive sleeps.
1877
1878 * fluids.c (ensure_state_size, ensure_all_state_sizes,
1879 resize_all_states): Collapsed ensure_state_size and
1880 ensure_all_state_sizes into one function named resize_all_states.
1881 Allocate new vectors outside of single threaded region. Do only
1882 simple things inside that region.
1883 (scm_make_fluid, scm_make_dynamic_state): Lock fluid_admin_mutex
1884 while adding to the global lists.
1885
1886
461f34aa
MV
18872005-03-08 Marius Vollmer <mvo@zagadka.de>
1888
1889 libltdl is no longer distributed. We expect it to be installed
1890 already.
1891
1892 * Makefile.am (INCLUDES): Removed @LTDLINCL@.
1893 (libguile_la_LIBADD): Removed @LIBLTDL@.
1894
4e047c3e
MV
18952005-03-07 Marius Vollmer <mvo@zagadka.de>
1896
1897 * threads.h, async.h, threads.c (SCM_CRITICAL_SECTION_START,
1898 SCM_CRITICAL_SECTION_END): Moved here from threads.h since now
1899 they also block/unblock execution of asyncs and call
1900 scm_async_click which is declared in async.h but threads.h can not
1901 include async.h since async.h already includes threads.h.
1902 (scm_i_critical_section_level): New, for checking mistakes in the
1903 use of the SCM_CRITICAL_SECTION_* macros.
1904 (scm_i_critical_section_mutex): Make it a recursive mutex so that
1905 critical sections can be nested.
1906
1907 * throw.c (scm_ithrow): Abort when scm_i_critical_section_level is
1908 not zero.
1909
1910 * threads.h, threads.c (scm_frame_lock_mutex): New.
1911 (scm_frame_critical_section): Take mutex as argument.
1912 (framed_critical_section_mutex): New, used as default for above.
1913 (scm_init_threads): Initialize it.
1914 (scm_threads_prehistory): Do not initialize thread_admin_mutex and
1915 scm_i_critical_section_mutex; both are initialized statically.
1916
1917 * continuation.c, deprecated.c, goops.c, guardians.c keywords.c,
1918 libguile_la-arrays.loT, objprop.c, ports.c, smob.c, sort.s,
b9d9ad3a
MV
1919 srcprop.c, stime.c, struct.c, throw.c, regex-posix.c: Include
1920 "libguile/async.h" for SCM_CRITICAL_SECTION_START/END.
4e047c3e
MV
1921
1922 * debug.c (scm_debug_options): Replace
1923 SCM_CRITICAL_SECTION_START/END with a frame and
1924 scm_frame_critical_section.
1925
1926 * continuations.c (scm_make_continuation): No longer a critical
1927 section.
1928 (scm_dynthrow): Abort when scm_i_critical_section_level is
1929 not zero.
1930
d0a45bff
MV
19312005-03-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1932
db6673e5
MV
1933 * threads.c (scm_try_mutex): Renamed argument for consistency.
1934
d0a45bff
MV
1935 * root.c (scm_call_with_dynamic_root): New docstring.
1936
1937 * eval.c: Define _GNU_SOURCE.
1938
9de87eea
MV
19392005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1940
1941 Big merge from the mvo-thread-cleanup branch. The main changes
1942 are:
1943
1944 - The dynamic roots functionality has been split into dynamic
1945 states and continuations barriers. Fluids have been
1946 reimplemented and can now be garbage collected.
1947
1948 - Initialization of Guile now works in a multi-thread friendly
1949 manner. Threads can freely enter and leave guile mode.
1950
1951 - Blocking on mutexes or condition variables or while selecting
1952 can now be reliably interrupted via system asyncs.
1953
1954 - The low-level threading interface has been removed.
1955
1956 - Signals are delivered via a pipe to a dedicated 'signal delivery
1957 thread'.
1958
1959 - SCM_DEFER_INTS, SCM_ALLOW_INTS etc have been deprecated.
1960
1961 * throw.c (scm_handle_by_message): Exit only the current thread,
1962 not the whole process.
1963 (scm_handle_by_message_noexit): Exit when catching 'quit.
1964
1965 * scmsigs.c (take_signal, signal_delivery_thread,
1966 start_signal_delivery_thread, ensure_signal_delivery_thread,
1967 install_handler): Reimplemented signal delivery as explained in
1968 the comments.
1969
1970 * pthreads-threads.h (scm_i_pthread_t, scm_i_pthread_self,
1971 scm_i_pthread_create, scm_i_pthread_detach, scm_i_pthread_exit,
1972 scm_i_sched_yield, scm_i_pthread_sigmask,
1973 SCM_I_PTHREAD_MUTEX_INITIALIZER,
1974 SCM_I_PTHREAD_RECURSIVE_MUTEX_INITIALIZER, scm_i_pthread_mutex_t ,
1975 scm_i_pthread_mutex_init, scm_i_pthread_mutex_destroy,
1976 scm_i_pthread_mutex_trylock, scm_i_pthread_mutex_lock,
1977 scm_i_pthread_mutex_unlock, SCM_I_PTHREAD_COND_INITIALIZER,
1978 scm_i_pthread_cond_t, scm_i_pthread_cond_init,
1979 scm_i_pthread_cond_destroy, scm_i_pthread_cond_signal,
1980 scm_i_pthread_cond_broadcast, scm_i_pthread_cond_wait,
1981 scm_i_pthread_cond_timedwait, scm_i_pthread_once_t,
1982 SCM_I_PTHREAD_ONCE_INIT, scm_i_pthread_once, scm_i_pthread_key_t ,
1983 scm_i_pthread_key_create, scm_i_pthread_setspecific,
1984 scm_i_pthread_getspecific, scm_i_scm_pthread_mutex_lock,
1985 scm_i_frame_pthread_mutex_lock, scm_i_scm_pthread_cond_wait,
1986 scm_i_scm_pthread_cond_timedwait): Provide the obvious mapping
1987 when using pthreads.
1988 * null-threads.c, null-threads.h: Provide dummy definitions for
1989 the above symbols when not using pthreads.
1990
1991 * modules.h, modules.c (scm_frame_current_module): New.
1992
1993 * load.c (scm_primitive_load): Use scm_i_frame_current_load_port
1994 instead of scm_internal_dynamic_wind.
1995
1996 * init.h, init.c (restart_stack, start_stack): Removed.
1997 (scm_boot_guile, invoke_main_func): Simply use scm_with_guile.
1998 (scm_boot_guile_1): Removed.
1999 (scm_i_init_mutex): New.
2000 (really_cleanup_for_exit, cleanup_for_exit): New.
2001 (scm_init_guile_1, scm_i_init_guile): Renamed former to latter.
2002 Moved around some init funcs. Call
2003 scm_init_threads_default_dynamic_state. Register cleanup_for_exit
2004 with atexit.
2005
2006 * hashtab.c (scm_hash_fn_create_handle_x, scm_hash_fn_remove_x):
2007 Use "!scm_is_eq" instead of "!=".
2008
2009 * ge-scmconfig.c, gen-scmconfig.h.in (SCM_I_GSC_USE_COOP_THREADS,
2010 SCM_USE_COOP_THREADS): Removed.
2011
2012 * gc.c (scm_igc): Take care that scm_gc_running_p is properly
2013 maintained. Unlock scm_i_sweep_mutex before running
2014 scm_after_gc_c_hook.
2015 (scm_permanent_object): Allocate outside of critical section.
2016 (cleanup): Removed.
2017
2018 * fluids.h, fluids.c: Reimplemented completely.
2019 (SCM_FLUID_NUM, SCM_FAST_FLUID_REF,
2020 SCM_FAST_FLUID_SET): Reimplemented as functions.
2021 (scm_is_fluid): New.
2022 (scm_i_make_initial_fluids, scm_i_copy_fluids): Removed.
2023 (scm_make_dynamic_state, scm_dynamic_state_p,
2024 scm_is_dynamic_state, scm_current_dynamic_state,
2025 scm_set_current_dynamic_state, scm_frame_current_dynamic_state,
2026 scm_c_with_dynamic_state, scm_with_dynamic_state,
2027 scm_i_make_initial_dynamic_state, scm_fluids_prehistory): New.
2028
2029 * feature.c (progargs_fluid): New.
2030 (scm_program_arguments, scm_set_program_arguments): Use it instead
2031 of scm_progargs.
2032 (scm_init_feature): Allocate it. Also, only add "threads" feature
2033 when SCM_USE_PTHREAD_THREADS is true.
2034
2035 * eval.c (scm_makprom): Use scm_make_recursive_mutex instead of
2036 scm_make_rec_mutex, with all the consequences.
2037 (scm_eval_x, scm_eval): Use scm_frame_begin etc instead of
2038 scm_internal_dynamic_wind. Handle dynamic states as second
2039 argument.
2040
2041 * threads.h, threads.c (scm_internal_select): Renamed to
2042 scm_std_select and discouraged old name.
2043 (scm_thread_sleep, scm_thread_usleep): Likewise, as scm_std_sleep
2044 and scm_std_usleep.
2045 (scm_tc16_fair_mutex, scm_tc16_fair_condvar, SCM_MUTEXP,
2046 SCM_FAIR_MUTEX_P, SCM_MUTEX_DATA, SCM_CONDVARP,
2047 SCM_FAIR_CONDVAR_P, SCM_CONDVAR_DATA, SCM_THREADP,
2048 SCM_THREAD_DATA): Removed.
2049 (SCM_I_IS_THREAD, SCM_I_THREAD_DATA): New.
2050 (scm_i_thread): New.
2051 (SCM_VALIDATE_THREAD, SCM_VALIDATE_MUTEX, SCM_VALIDATE_CONDVAR):
2052 Use scm_assert_smob_type.
2053 (scm_c_scm2thread, scm_thread_join, scm_thread_detach,
2054 scm_thread_self, scm_thread_yield, scm_mutex_init,
2055 scm_mutex_destroy, scm_mutex_trylock, scm_mutex_unlock,
2056 scm_rec_mutex_init, scm_rec_mutex_destroy, scm_make_rec_mutex,
2057 scm_rec_mutex_free, scm_rec_mutex_lock, scm_rec_mutex_trylock,
2058 scm_cond_init, scm_cond_destroy, scm_cond_wait,
2059 scm_cond_timedwait, scm_cond_signal, scm_cond_broadcast,
2060 scm_key_create, scm_key_delete, scm_setspecific, scm_getspecific,
2061 scm_thread_select): Removed. Replaced with scm_i_pthread
2062 functions as appropriate.
2063 (scm_in_guile, scm_outside_guile): Removed.
2064 (scm_t_guile_ticket, scm_leave_guile, scm_enter_guile): Return and
2065 take a ticket.
2066 (scm_with_guile, scm_without_guile, scm_i_with_guile_and_parent):
2067 New.
2068 (scm_i_frame_single_threaded): New.
2069 (scm_init_threads_default_dynamic_state): New.
2070 (scm_i_create_thread): Removed.
2071 (scm_make_fair_mutex, scm_make_fair_condition_variable): Removed.
2072 (scm_make_recursive_mutex): New.
2073 (scm_frame_critical_section): New.
2074 (SCM_CURRENT_THREAD, SCM_I_CURRENT_THREAD): Renamed former to
2075 latter, changed all uses.
2076 (scm_i_dynwinds, scm_i_setdynwinds, scm_i_last_debug_frame,
2077 scm_i_set_last_debug_frame): New, use them instead of scm_root
2078 stuff.
2079 (SCM_THREAD_LOCAL_DATA, SCM_SET_THREAD_LOCAL_DATA,
2080 scm_i_root_state_key,m scm_i_set_thread_data): Removed.
2081 (scm_pthread_mutex_lock, scm_frame_pthread_mutex_lock,
2082 scm_pthread_cond_wait, scm_pthread_cond_timedwait).
2083 (remqueue): Allow the removal of already removed cells. Indicate
2084 whether a real removal has happened.
2085 (scm_thread): Removed, replaced with scm_i_thread.
2086 (make_thread, init_thread_creatant): Removed.
2087 (cur_thread): Removed.
2088 (block_self, unblock_from_queue): New.
2089 (block, timed_block, unblock): Removed.
2090 (guilify_self_1, guilify_self_2, do_thread_exit,
2091 init_thread_key_once, init_thread_key,
2092 scm_i_init_thread_for_guile, get_thread_stack_base,
2093 scm_init_guile): New initialisation method.
2094 (scm_call_with_new_thread, scm_spawn_thread): Use it to simplify
2095 thread creation.
2096 (fair_mutex, fat_mutex, etc, fair_condvar, fat_condvar): Renamed
2097 "fair" to fat and implemented new semantics, including reliable
2098 interruption.
2099 (all_threads): Now a pointer to a scm_i_thread, not a SCM.
2100 (scm_threads_mark_stacks): Explicitly mark handle.
2101 (scm_std_select): Allow interruption by also selecting on the
2102 sleep_pipe.
2103 (scm_i_thread_put_to_sleep): Handle recursive requests for
2104 single-threadedness.
2105 (scm_threads_prehistory, scm_init_threads): Put current thread
2106 into guile mode via guileify_self_1 and guileify_self_2,
2107 respectively.
2108
2109 * fluid.h (SCM_FLUIDP): Deprecated.
2110
2111 * coop-threads.c: Removed.
2112
2113 * continuations.h, continuations.c (scm_with_continuation_barrier,
2114 scm_c_with_continuation_barrier, scm_i_with_continuation_barrier):
2115 New.
2116
2117 * async.h, async.c (scm_i_setup_sleep, scm_i_reset_sleep): New.
2118 (async_mutex): New.
2119 (scm_async_click): Protected with async_mutex. Do not deal with
2120 signal_asyncs, which are gone. Set cdr of handled async cell to
2121 #f.
2122 (scm_i_queue_async_cell): Protected with async_mutex. Interrupt
2123 current sleep.
2124 (scm_system_async_mark_for_thread): Do not use scm_current_thread
2125 since that might not work during early initialization.
2126
2127 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
2128 SCM_REALLOW_INTS): Deprecated by moving into deprecated.h and
2129 deprecated.c. Replaced all uses with SCM_CRITICAL_SECTION_START
2130 and SCM_CRITICAL_SECTION_END.
2131 (SCM_ENTER_A_SECTION, SCM_EXIT_A_SECTION): Removed. Replaced with
2132 SCM_CRITICAL_SECTION_START/END.
2133
2134 * Makefile.am (modinclude_HEADER): Removed threads-plugin.h.
2135 (libguile_la_SOURCES): Added null-threads.c
2136 (EXTRA_libguile_la_SOURCES): Removed pthread-threads.c and
2137 threads-plugin.c.
2138 * pthread-threads.c, threads-plugin.c, threads-plugin.h: Removed.
2139
2140 * root.h, root.c (scm_tc16_root, SCM_ROOTP, SCM_ROOT_STATE,
2141 scm_root_state, scm_stack_base, scm_save_regs_gc_mark,
2142 scm_errjmp_bad, scm_rootcont, scm_dynwinds, scm_progargs,
2143 scm_last_debug_frame, scm_exitval, scm_cur_inp, scm_outp,
2144 scm_cur_err, scm_cur_loadp, scm_root, scm_set_root,
2145 scm_make_root): Removed or deprecated. Replaced with references
2146 to the current thread, dynamic state, continuation barrier, or
2147 some fluid, as appropriate.
2148 (root_mark, root_print): Removed.
2149 (scm_internal_cwdr): Reimplemented guts with
2150 scm_frame_current_dynamic_state and
2151 scm_i_with_continuation_barrier.
2152 (scm_dynamic_root): Return current continuation barrier.
2153
2154
ad3d5a65
MV
21552005-02-28 Marius Vollmer <mvo@zagadka.de>
2156
2157 * socket.c (scm_setsockopt): Handle IP_ADD_MEMBERSHIP and
2158 IP_DROP_MEMBERSHIP options. Also, reorganized the code a bit for
2159 cleanliness.
2160 (scm_init_socket): Define IP_ADD_MEMBERSHIP and
2161 IP_DROP_MEMBERSHIP.
2162 Thanks to Greg Troxel!
2163
73a90115
MD
21642005-02-27 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2165
2166 * gh.h: Bugfix: Include <libguile.h> outside of the extern "C"
2167 block.
2168
5d2cb3ab
MV
21692005-02-25 Marius Vollmer <mvo@zagadka.de>
2170
2171 * hashtab.c (scm_i_rehash): Remove elements from old bucket vector
2172 so that no two weak alist vectors share a spine.
2173 (scm_hash_fn_create_handle_x): Deal with a possible rehashing
2174 during GC before inserting the new alist cell.
2175
838c4126
MV
21762005-02-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2177
2178 * hashtab.c (scm_i_rehash): Cope with the case that a GC modifies
2179 the hashtable.
2180 (scm_hash_fn_create_handle_x): Likewise.
2181 * vectors.h (SCM_I_SET_WVECT_TYPE): New, for use in scm_i_rehash.
2182
29fed193
MD
21832005-02-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2184
2185 * unif.c (prototype_to_type): Bugfix: Don't compare prototype to
2186 the prototypical examples mentioned in the old reference manual.
2187 Instead keep the old semantics of dispatching on type. (Yes, this
2188 is extremely ugly, but the whole point of keeping the deprecated
2189 interface is not to break old code.)
2190
9cc49060
MD
21912005-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2192
2193 * deprecated.h (SCM_ARRAY_DIMS): Rename scm_i_attay_dims -->
2194 scm_i_array_dims.
2195
8447f463
KR
21962005-01-28 Kevin Ryde <user42@zip.com.au>
2197
2198 * numbers.c (scm_ash): Rewrite using shifts, much faster than
2199 integer-expt and multiply/divide. Inexacts and fractions no longer
2200 supported (they happened to work before for left shifts, but not
2201 right). Don't really need inexacts and fractions, since ash is
2202 documented as a "bitwise operation", and all the rest of those only
2203 take exact integers.
2204
1367aa5e
HWN
22052005-01-27 Han-Wen Nienhuys <hanwen@xs4all.nl>
2206
856fca7e
HWN
2207 * gc-card.c (scm_i_card_statistics): map structs, closures and
2208 subrs to one tag.
2209
1367aa5e 2210 * gc.c (s_scm_gc_live_object_stats): return alist, not hashtable.
856fca7e 2211 (tag_table_to_type_alist): ignore unknown types.
1367aa5e
HWN
2212
2213 * gc-segment.c (scm_i_all_segments_statistics): new function.
2214 (scm_i_heap_segment_statistics): new function
2215
2216 * gc.c (s_scm_gc_live_object_stats): new GUILE callable: return
2217 statistics on the number of live objects of each type.
2218
2219 * gc-card.c (scm_i_tag_name): new function.
2220 (scm_i_card_statistics): new function.
2221
333db3b8
KR
22222005-01-24 Kevin Ryde <user42@zip.com.au>
2223
2224 * posix.c (scm_setlocale): Force errno=EINVAL for an error, since
2225 POSIX and C99 don't document errno being set. Reported by Bruno
2226 Haible.
2227 (scm_flock): Update docstring from manual.
2228
8447f463
KR
2229 * random.c (scm_i_init_rstate): Compare w to -1 not 0xffffffffUL, now
2230 that it's an scm_t_int32. Otherwise gcc 3.4 says it's always false on
2231 a 64-bit system.
2232
2233 * scmsigs.c (scm_sigaction_for_thread): Use scm_to_long for
2234 sa_handler, needs to be a long on 64-bit systems where int is only 32
2235 bits.
2236
88f59e53
MV
22372005-01-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2238
0eeb2611
MV
2239 * environments.c (obarray_enter, obarray_replace): Call
2240 SCM_HASHTABLE_INCREMENT when adding a new entry.
2241
88f59e53
MV
2242 * objects.c: Include goops.h for the scm_class_of prototype.
2243
2244 * hashtab.c (hashtable_size, HASHTABLE_SIZE_N): Restrict hashtable
2245 sizes to be smaller than the maximum lengths of vectors.
2246
219b2868
MV
22472005-01-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2248
2249 * ports.c, smob.c: Include "libguile/goops.h".
2250
2251 * objects.h, objects.c, goops.c, goops.h (scm_class_boolean,
2252 scm_class_char, scm_class_pair, scm_class_procedure,
2253 scm_class_string, scm_class_symbol,
2254 scm_class_procedure_with_setter, scm_class_primitive_generic,
2255 scm_class_vector, scm_class_null, scm_class_real,
2256 scm_class_complex, scm_class_integer, scm_class_fraction,
2257 scm_class_unknown, scm_port_class, scm_smob_class,
2258 scm_no_applicable_method, scm_class_of): Moved from objects to
2259 goops since they are only useable once goops has been loaded.
2260 (scm_classes_initialized): Removed.
2261 (scm_class_of): Do not check it.
2262 (create_standard_classes): Do not set it.
2263
009c6b9c
MV
22642005-01-17 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2265
50472546
MV
2266 * objects.h, objects.c (scm_classes_initialized): New.
2267 (scm_class_of): Signal error when scm_classes_initialized is zero.
2268 * goops.c (create_standard_classes): Set scm_classes_initialized
2269 to one.
2270
009c6b9c
MV
2271 * random.c (scm_random_solid_sphere_x): Use
2272 scm_c_generalized_vector_length instead of
2273 scm_uniform_vector_length.
2274
7719cbe9
MV
22752005-01-16 Marius Vollmer <mvo@zagadka.de>
2276
2277 * script.c (scm_compile_shell_switches): Removed debugging output.
2278
1ec44fed
KR
22792005-01-15 Kevin Ryde <user42@zip.com.au>
2280
2281 * numbers.c (scm_logtest, scm_logbit_p, scm_integer_expt): Update
2282 docstrings from manual.
2283 * random.c (scm_random_solid_sphere_x): Update docstring from manual.
2284
6e4cd850
MV
22852005-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2286
0b5a0521
MV
2287 * random.c: Don't check for definedness of SCM_HAVE_T_INT64, check
2288 its value.
2289
2290 Implement u64 and s64 uniform numeric vectors with bignums when
2291 scm_t_uint64 and scm_t_int64 are not available.
2292
2293 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_take_u64vector,
2294 scm_array_handle_u64_elements,
2295 scm_array_handle_u64_writable_elements, scm_u64vector_elements,
2296 scm_u64vector_writable_elements): Do not define when scm_t_uint64
2297 is not available.
2298 (scm_take_s64vector, scm_array_handle_s64_elements,
2299 scm_array_handle_s64_writable_elements, scm_s64vector_elements,
2300 scm_s64vector_writable_elements): Likewise for scm_t_int64.
2301 (uvec_sizes, uvec_print, uvec_equalp): Use SCM bignums when
2302 scm_t_int64/scm_t_uint64 are not available.
2303 (uvec_mark): New, to mark the bignums.
2304 (alloc_uvec): Initialize bignums.
2305 (uvec_fast_ref): Return bignums directly.
2306 (scm_uint64_min, scm_uint64_max, scm_int64_min, scm_int64_max,
2307 assert_exact_integer): New.
2308 (uvec_fast_set): Use them to validate the bignums.
2309 (scm_init_srfi_4): Set mark function of smob when needed.
2310 Initialize scm_uint64_min, scm_uint64_max, scm_int64_min,
2311 scm_int64_max.
2312
6e4cd850
MV
2313 Recognize 1.4 -e syntax.
2314
2315 * script.c (sym_at, sym_atat, sym_main, all_symbols): New.
2316 (scm_compile_shell_switches): Use them to recognize and convert
2317 1.4 "-e" syntax.
2318
3b698afe
MV
23192005-01-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2320
2321 * deprecated.h, deprecated.c, strings.h, strings.c: Turn all
2322 deprecated features that once were macros but are now functions
2323 back into macros.
2324
d6dc83a9
MV
23252005-01-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2326
49086691
MV
2327 * eval.c, debug.h (SCM_WARN_DEPRECATED): New debug option.
2328 * deprecation.c (scm_issue_deprecation_warning,
2329 scm_c_issue_deprecation_warning_fmt): Use it.
2330 (mode): Removed.
2331 (print_summary): New.
2332 (scm_init_deprecation): Initialize SCM_WARN_DEPRECATED instead of
2333 mode.
2334
d6dc83a9
MV
2335 Deprecated SCM_ARRAY* macros.
2336
2337 * unif.h, unif.c, ramap.c, vectors.c, srfi-4.c, srfi-4.i.c
2338 (SCM_ARRAYP, SCM_I_ARRAYP): Renamed former to latter internal
2339 version. Changed all uses.
2340 (scm_tc16_array, scm_i_tc16_array,
2341 scm_tc16_enclosed_array, scm_i_tc16_enclosed_array,
2342 SCM_ARRAY_FLAG_CONTIGUOUS, SCM_I_ARRAY_FLAG_CONTIGUOUS,
2343 SCM_ENCLOSE_ARRAYP, SCM_I_ENCLOSE_ARRAYP,
2344 SCM_ARRAY_NDIM, SCM_I_ARRAY_NDIM,
2345 SCM_ARRAY_CONTP, SCM_I_ARRAY_CONTP,
2346 SCM_ARRAY_MEM, SCM_I_ARRAY_MEM,
2347 SCM_ARRAY_V, SCM_I_ARRAY_V,
2348 SCM_ARRAY_BASE, SCM_I_ARRAY_BASE,
2349 SCM_ARRAY_DIMS, SCM_I_ARRAY_DIMS,
2350 scm_t_array, scm_i_t_array): Likewise.
2351 (SCM_SET_ARRAY_CONTIGUOUS_FLAG, SCM_CLR_ARRAY_CONTIGUOUS_FLAG):
2352 Moved from unif.h to unif.c.
2353 (scm_c_array_rank): New.
2354 (scm_array_rank): Reimplement using it.
2355
2356 * deprecated.h, deprecated.c (SCM_ARRAYP, SCM_ARRAY_NDIM,
2357 SCM_ARRAY_CONTP, SCM_ARRAY_MEM, SCM_ARRAY_V, SCM_ARRAY_BASE,
2358 SCM_ARRAY_DIMS, scm_t_array): New deprecated versions.
2359
dc91d8de
MV
23602005-01-11 Marius Vollmer <mvo@zagadka.de>
2361
2362 * ramap.c: Replace uses of scm_make_ra with scm_i_make_ra.
2363 (GVREF, GVSET): New abbreviations. Use them everywhere instead of
2364 scm_c_generalized_vector_ref and scm_cvref, and
2365 scm_c_generalized_vector_set_x, respectively.
2366 (RVREF, IVDEP, BINARY_ELTS_CODE, BINARY_PAIR_ELTS_CODE,
2367 UNARY_ELTS_CODE, UNARY_PAIR_ELTS_CODE): Removed since unused.
2368
2369 * unif.h, unif.c (indices_to_pos, scm_array_handle_pos): Renamed
2370 former to latter and made public. Changed all uses.
2371 (scm_i_make_ra): Made public, changed tag param to enclosed flag.
2372 (scm_make_ra): Deprecated, changed all uses to scm_i_make_ra.
2373 (scm_i_shap2ra): New internal version of scm_shap2ra.
2374 (scm_shap2ra): Deprecated, changed all uses to scm_i_shap2ra.
2375 (scm_i_ra_set_contp): New internal version of scm_ra_set_contp.
2376 (scm_ra_set_contp): Deprecated, changed all uses to
2377 scm_i_ra_set_contp.
2378 (scm_cvref, scm_aind, scm_raprin1): Deprecated.
2379
66d33784
MV
23802005-01-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2381
b06f099d
MV
2382 * eval.c (scm_eval): Added example to docstring. Thanks to Issac
2383 Trotts!
2384
5d35ad81
MV
2385 * unif.c (scm_list_to_typed_array): Allow the specification of the
2386 upper bound as well. This is needed for empty arrays.
2387 (l2ra): Give needed number of elements in error message.
2388 (scm_i_print_array): Print length information for arrays that need
2389 it.
2390 (scm_i_read_array): Parse it.
2391
66d33784
MV
2392 * deprecated.h, deprecated.c (SCM_CHARS, SCM_UCHARS, SCM_LENGTH,
2393 scm_i_object_chars, scm_i_object_length): Brought back from the
2394 dead.
2395
d7d7d401
MV
23962005-01-10 Marius Vollmer <mvo@zagadka.de>
2397
74c58fce
MV
2398 * ramap.c: Replaced single-index uses of scm_array_set_x with
2399 scm_c_generalized_vector_set_x.
2400
d7d7d401
MV
2401 * unif.c (scm_array_rank, scm_array_dimensions,
2402 scm_shared_array_offset, scm_shared_array_increments,
2403 scm_array_ref, scm_array_set_x): Use scm_t_array_handle operations
2404 to simplify code and make it more general.
2405 (scm_shared_array_root): Work with all kinds of arrays, including
2406 naked vectors.
2407 (indices_to_pos): New.
74c58fce
MV
2408 (scm_make_shared_array): Use it instead of scm_aind; use handle
2409 for oldra.
2410
4475d3fe
KR
24112005-01-10 Kevin Ryde <user42@zip.com.au>
2412
2413 * posix.c (scm_mkstemp): Update docstring from manual.
2414
d3ddc95e
KR
2415 * stime.c (scm_mktime): Missing default errno=EINVAL from prev change.
2416
8c8491f5
MV
24172005-01-09 Marius Vollmer <mvo@zagadka.de>
2418
b89ecc6f
MV
2419 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_i_uniform_vector_ref_proc,
2420 scm_i_uniform_vector_set_proc): New.
2421 (u8ref, u8set, s8ref, s8set, etc): New.
2422 (uvec_reffers, uvec_setters): New.
2423 (uvec_to_list): Use generic scm_array_handle_ref instead of
2424 uvec_fast_ref since scm_array_handle_ref should be faster now.
8cb01d9f
MV
2425 (coerce_to_uvec, scm_c_uniform_vector_ref,
2426 scm_c_uniform_vector_set_x): Likewise.
b89ecc6f
MV
2427
2428 * unif.h, unif.c, inline.h (scm_i_t_array_ref, scm_i_t_array_set):
2429 New.
2430 (scm_t_array_handle): Added ref, set, elements and
2431 writable_elements for fast inline operation of
2432 scm_array_handle_ref and scm_array_handle_set.
2433 (scm_array_handle_ref, scm_array_handle_set): Moved to inline.h
2434 and replaced with inline code that simply calls the ref/set
2435 members of the handle.
2436 (enclosed_ref, vector_ref, string_ref, bitvector_ref, memoize_ref,
2437 enclosed_set, vector_set, string_set, bitvector_set, memoize_set):
2438 New.
2439 (scm_array_handle_get): Initialize ref/set fields to memoize_ref
2440 and memoize_set.
2441 (scm_bitvector_fill_x, scm_bitvector_to_list, scm_bit_count,
2442 scm_bit_position, scm_bit_set_star_x, scm_bit_count_star,
2443 scm_bit_invert_x): Correctly multiply index with increment in the
2444 general case.
2445
8c8491f5
MV
2446 * unif.c (scm_array_handle_set): Correctly execute only one
2447 alternative. D'Oh!
2448 (scm_list_to_typed_array, l2ra): Use scm_t_array_handle to fill
2449 the array; this covers all cases with much simpler code.
2450
2451 * srfi-4.c (scm_uniform_element_size): Deprecated implementation
2452 as well.
2453
cd5d55c7
MV
24542005-01-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2455
2456 * srfi-4.c (uvec_type): New.
2457 (uvec_to_list, uvec_ref, uvec_set_x, scm_c_uniform_vector_ref,
2458 scm_c_uniform_vector_x): Use it to get concrete type.
2459
2460 * unif.h (scm_t_array_dim): Changed type of members to ssize_t, to
2461 fit the docs.
2462
2463 * unif.c (ra2l): Handle zero rank arrays.
2464 (scm_i_print_array): Print zero rank arrays specially.
2465 (tag_to_type): Return #t for an empty tag, not the empty symbol.
2466 (scm_i_read_array): Allow zero rank arrays.
2467
a4aad74e
MV
24682005-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2469
2470 * hashtab.h, hashtab.c (SCM_HASHTAB_BUCKET_LOC): Removed.
2471 (scan_weak_hashtables): Rewrote its use with SCM_HASHTAB_BUCKET
2472 and SCM_SET_HASHTAB_BUCKET.
2473
2474 * print.h, print.c (scm_print_state, SCM_PRINT_STATE_LAYOUT):
2475 Removed ref_stack field.
2476 (PSTATE_STACK_REF, PSTATE_STACK_SET): New, for accessing the stack
2477 of a print state. Use them everywhere instead of ref_stack.
2478
3a40d5e1
MV
2479 * srfi-4.h (scm_uniform_element_size): Deprecated for real.
2480
a4aad74e
MV
2481 * srfi-4.c: Include deprecation.h.
2482
2483 * vectors.h, vectors.c, unif.h, unif.c, deprecated.h,
2484 deprecated.c, eq.c
2485 (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR): Removed.
2486 (scm_vector_elements, scm_vector_writable_elements,
2487 scm_generalized_vector_get_handle): Moved to vectors.[hc] from
2488 unif.[hc].
2489 (SCM_SIMPLE_VECTOR_LOC): Removed.
2490 (SCM_VECTOR_MAX_LENGTH, SCM_VECTOR_LENGTH, SCM_VELTS,
2491 SCM_WRITABLE_VELTS, SCM_VECTOR_REF, SCM_VECTOR_SET,
2492 scm_vector_equal_p): Moved from vectors.[hc] to deprecated.[hc].
2493 (scm_vector_equal_p, scm_i_vector_equal_p): Renamed former to
2494 latter. Changed use in eq.c.
2495
f01fe441
MV
24962005-01-07 Marius Vollmer <mvo@zagadka.de>
2497
2498 Make the uniform vector routines also deal with one dimensional
2499 arrays.
2500
2501 * srfi-4.c (SCM_IS_UVEC): New, use it instead of
2502 SCM_SMOB_PREDICATE in this file.
2503 (is_uvec): Also recognize one-dimensional uniform numeric arrays
2504 of the right type.
2505 (scm_is_uniform_vector): Likewise.
2506 (uvec_fast_ref): Made BASE param const.
2507 (uvec_writable_elements, uvec_elements): New.
2508 (uvec_to_list, uvec_ref, uvec_set_x, uvec_length,
2509 scm_c_uniform_vector_length, scm_c_uniform_vector_ref,
2510 scm_c_uniform_set_x): Use them to also deal with one-dimensional
2511 arrays.
2512 (scm_uniform_vector_ref, scm_uniform_vector_set_x): Deprecate old
2513 argument convention.
2514 (scm_uniform_vector_to_list): Let uvec_to_list do all the
2515 checking.
2516 (scm_uniform_vector_length): Use uvec_length.
2517
2aaf5726
MV
25182005-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2519
2520 * srfi-4.h, srfi-4.c (scm_c_uniform_vector_element_size,
2521 scm_c_uniform_vector_size): Removed.
2522 (scm_array_handle_uniform_element_size): New.
2523
2524
2525 * unif.h (scm_array_handle_ref, scm_array_handle_set): Changed
2526 type of POS parameter to be signed, positions can be negative.
2527 (scm_array_handle_release): New, changed all uses of
2528 scm_t_array_handle to properly call it.
2529 (scm_vector_get_handle, scm_generalized_vector_get_handle):
2530 Renamed former to latter, changed all uses.
2531
34ae52fc
MV
25322005-01-05 Marius Vollmer <mvo@zagadka.de>
2533
2534 Updated bitvector routines to also use scm_t_array_handles.
2535
2536 * unif.h (scm_bitvector_elements,
2537 scm_bitvector_writable_elements): Use a scm_t_array_handle and
2538 deliver offset, length and increment to caller. Changed all uses.
2539 (scm_bitvector_release_elements,
2540 scm_frame_bitvector_release_elements,
2541 scm_bitvector_release_writable_elements,
2542 scm_frame_bitvector_release_writable_elements): Removed.
2543 (scm_array_handle_bit_elements,
2544 scm_array_handle_bit_writable_elements,
2545 scm_array_handle_bit_elements_offset): New.
2546 (scm_make_typed_array): The special value for non-initialized
2547 arrays is now SCM_UNSPECIFIED. The old special value SCM_BOOL_F
2548 was a valid value to fill bitvectors with, so it can't really be
2549 specialed out.
2550
c4cb7628
KR
25512005-01-04 Kevin Ryde <user42@zip.com.au>
2552
2553 * stime.c (scm_strftime): Free t.tm_zone produced by bdtime2c.
2554 Reported by Bill Schottstaedt.
2555
0356881d
MV
25562005-01-02 Marius Vollmer <mvo@zagadka.de>
2557
2558 * sort.c (quicksort): Added INC parameter for non-contigous
2559 vectors.
2560 (quicksort1): New, for contigous vectors. Both functions are
2561 generated from the same code by including "quicksort.i.c".
2562 (scm_restricted_vector_sort_x): Call one of quicksort and
2563 quicksort1, depending on increment of vector.
2564 (scm_sort): Simply call scm_sort_x on a copy of the list or
2565 vector.
2566 (scm_merge_vector_x, scm_merge_vector_step): Changed indices to
2567 size_t, added inc parameter.
2568 (scm_stable_sort_x): Allocate temporary storage as Scheme vector
2569 so that it doesn't leak.
2570 (scm_stable_sort): Simply call scm_stable_sort_x on a copy of the
2571 list or vector.
2572
2573 * ramap.c (scm_array_map_x): Do not try to convert fill value
2574 before filling, any necessary conversion is done while storing.
2575
2576 * gc-card.c (scm_i_sweep_card): Call scm_i_vector_free instead of
2577 doing it inline.
2578
2579 * hashtab.c, hashtab.h (SCM_HASHTABLE_BUCKETS): Removed.
2580 (SCM_HASHTABLE_BUCKET, SCM_HASHTABLE_BUCKET_LOC): New. Replaced
2581 all uses of SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
2582
2583 * tags.h, weaks.c, vports.c, hashtab.c, convert.c, sort.c,
2584 convert.c, convert.h, convert.i.c, deprecated.c, environments.c,
2585 eval.c, filesys.c, fluids.c, gc-mark.c, gh.h, gh_data.c, goops.c,
2586 hash.c, init.c, libguile_la-arrays.loT, modules.c, net_db.c,
2587 objects.c, ports.c, posix.c, print.c, random.c, read.c,
2588 regex-posix.c, scmsigs.c, socket.c, stime.c, symbols.c: Use new
2589 vector elements API or simple vector API, as appropriate. Removed
2590 SCM_HAVE_ARRAYS ifdefery. Replaced all uses of
2591 SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
2592
2593 * srfi-4.h, srfi-4.c,
2594 srfi-4.i.c (scm_array_handle_uniform_elements,
2595 scm_array_handle_uniform_writable_elements,
2596 scm_uniform_vector_elements,
2597 scm_uniform_vector_writable_elements):
2598 (scm_<foo>vector_elements, scm_<foo>vector_writable_elements): Use
2599 scm_t_array_handle, deliver length and increment.
2600 (scm_array_handle_<foo>_elements,
2601 scm_array_handle_<foo>_writable_elements): New.
2602
2603 * gen-scmconfig.h.in (SCM_I_GSC_HAVE_ARRAYS): Removed.
2604 * gen-scmconfig.c: Hard code SCM_HAVE_ARRAYS to "1".
2605
2606 * unif.h, unif.c (scm_t_array_handle, scm_array_get_handle,
2607 scm_array_handle_rank, scm_array_handle_dims, scm_array_handle_ref
2608 scm_array_handle_set, scm_array_handle_elements
2609 scm_array_handle_writable_elements, scm_vector_get_handle): New.
2610 (scm_make_uve, scm_array_prototype, scm_list_to_uniform_array,
2611 scm_dimensions_to_uniform_array): Deprecated for real.
2612 (scm_array_p, scm_i_array_p): Use latter for SCM_DEFINE since
2613 snarfing wont allow a mismatch between C and Scheme arglists.
2614 (scm_make_shared_array, scm_enclose_array): Correctly use
2615 scm_c_generalized_vector_length instead of
2616 scm_uniform_vector_length.
2617
2618 * validate.h (SCM_VALIDATE_VECTOR,
2619 SCM_VALIDATE_VECTOR_OR_DVECTOR): use scm_is_simple_vector instead
2620 of SCM_VECTORP.
2621
2622 * weaks.h, weaks.c: Use new internal weak vector API from
2623 vectors.h.
2624
2625 * Makefile.am (libguile_la_SOURCES, DOT_X_FILES, DOT_DOC_FILES,
2626 EXTRA_libguile_la_SOURCES): Changed ramap.c and unif.c from being
2627 'extra' to being regular sources.
2628 (noinst_HEADERS): Added quicksort.i.c.
2629 * quicksort.i.c: New file.
2630
2631 * vectors.h, vector.c (SCM_VECTORP, SCM_VECTOR_LENGTH, SCM_VELTS,
2632 SCM_WRITABLE_VELTS, SCM_VECTOR_REF, SCM_VECTOR_SET): Deprecated
2633 and reimplemented. Replaced all uses with scm_vector_elements,
2634 scm_vector_writable_elements, or SCM_SIMPLE_VECTOR_*, as
2635 appropriate.
2636 (scm_is_simple_vector, SCM_SIMPLE_VECTOR_LENGTH,
2637 SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET,
2638 SCM_SIMPLE_VECTOR_LOC): New.
2639 (SCM_VECTOR_BASE, SCM_SET_VECTOR_BASE, SCM_VECTOR_MAX_LENGTH,
2640 SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
2641 SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS):
2642 Removed.
2643 (scm_vector_copy): New.
2644 (scm_vector_elements, scm_vector_writable_elements): Use
2645 scm_t_array_handle, deliver length and increment. Moved to
2646 unif.h. Changed all uses.
2647 (scm_vector_release_elements,
2648 scm_vector_release_writable_elements,
2649 (scm_frame_vector_release_elements,
2650 scm_frame_vector_release_writable_elements): Removed.
2651 (SCM_I_IS_VECTOR, SCM_I_VECTOR_ELTS, SCM_I_VECTOR_WELTS,
2652 SCM_I_VECTOR_LENGTH, scm_i_vector_free): New internal API.
2653 (SCM_I_WVECTP SCM_I_WVECT_LENGTH SCM_I_WVECT_VELTS
2654 SCM_I_WVECT_GC_WVELTS SCM_I_WVECT_TYPE SCM_I_WVECT_GC_CHAIN
2655 SCM_I_SET_WVECT_GC_CHAIN, scm_i_allocate_weak_vector): New, for
2656 weak vectors.
2657
0336d18b
MV
26582004-12-29 Marius Vollmer <mvo@zagadka.de>
2659
2660 No longer use creators to specify the type of an array. Creators
2661 expose the fact that arrays are wrapped around vectors, but that
2662 might change.
2663
2664 * srfi-4.h (scm_i_proc_make_u8vector, scm_i_proc_make_s8vector,
2665 scm_i_proc_make_u16vector, scm_i_proc_make_s16vector,
2666 scm_i_proc_make_u32vector, scm_i_proc_make_s32vector,
2667 scm_i_proc_make_u64vector, scm_i_proc_make_s64vector,
2668 scm_i_proc_make_f32vector, scm_i_proc_make_f64vector,
2669 scm_i_proc_make_c32vector, scm_i_proc_make_c64vector,
2670 uvec_proc_vars): Removed.
2671 (scm_i_generalized_vector_creator): Removed.
2672 (scm_i_generalized_vector_type): New.
2673
2674 * unif.h, unif.c (scm_typed_array_p, scm_make_array,
2675 scm_make_typed_array, scm_array_type, scm_list_to_array,
2676 scm_list_to_typed_array, scm_is_array, scm_is_typed_array): New.
2677 (scm_array_creator): Removed.
2678 (scm_array_p): Deprecated second PROT argument.
2679 (scm_dimensions_to_uniform_array, scm_list_to_uniform_array):
2680 Deprecated, reimplemented in terms of scm_make_typed_array and
2681 scm_list_to_typed_array.
2682 (scm_i_proc_make_vector, scm_i_proc_make_string,
2683 scm_i_proc_make_bitvector): Removed.
2684 (type_creator_table, init_type_creator_table, type_to_creator,
2685 make_typed_vector): New.
2686 (scm_i_convert_old_prototype): Removed.
2687 (prototype_to_type): New.
2688 (scm_make_uve): Deprecated, reimplemented using make_typed_vector.
2689 (scm_array_dimensions): Use scm_list_1 instead of scm_cons for
2690 minor added clarity.
2691 (scm_make_shared_array, scm_ra2contig): Use make_typed_vector
2692 instead of scm_make_uve.
2693 (tag_creator_table, scm_i_tag_to_creator): Removed.
2694 (tag_to_type): New.
2695 (scm_i_read_array): Use scm_list_to_typed_array instead of
2696 scm_list_to_uniform_array.
2697
277e8472
MV
26982004-12-27 Marius Vollmer <mvo@zagadka.de>
2699
32b26202
MV
2700 * unif.h, unif.c (scm_bitvector_elements): Made return value "const".
2701 (scm_bitvector_writable_elements): New.
2702 (scm_bitvector_release, scm_bitvector_release_elements):
2703 Renamed former to latter. Added explicit call to
2704 scm_remember_upto_here_1.
2705 (scm_frame_bitvector_release,
2706 scm_frame_bitvector_release_elements): Renamed former to latter.
2707 (scm_bitvector_release_writable_elements,
2708 scm_bitvector_release_writable_elements): New.
2709 Changed all uses as required by the changes above.
2710
2711 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_uniform_vector_elements,
2712 scm_u8vector_elements, etc): Made return value "const".
2713 (scm_uniform_vector_writable_elements,
2714 scm_u8vector_writable_elements, etc): New.
2715 (scm_uniform_vector_release, scm_uniform_vector_release_elements):
2716 Renamed former to latter. Added explicit call to
2717 scm_remember_upto_here_1.
2718 (scm_frame_uniform_vector_release,
2719 scm_frame_uniform_vector_release_elements): Renamed former to latter.
2720 (scm_uniform_vector_release_writable_elements,
2721 scm_frame_uniform_vector_release_writable_elements): New. Takes
2722 crown of longest identifier yet.
2723 Changed all uses as required by the changes above.
2724
277e8472
MV
2725 * vectors.h, vectors.c (scm_c_vector_set_x): Make return type
2726 void.
2727 (scm_is_vector, scm_vector_p, scm_vector_length,
2728 scm_c_vector_length, scm_vector_ref, scm_c_vector_ref,
2729 scm_vector_set_x, scm_c_vector_set_x, scm_vector_to_list,
2730 scm_vector_move_left_x, scm_vector_move_right_x,
2731 scm_vector_fill_x): handle one-dimensional arrays.
32b26202
MV
2732 (scm_vector_elements, scm_vector_release_elements,
2733 scm_vector_frame_release_elements, scm_vector_writable_elements,
2734 scm_vector_release_writable_elements,
2735 scm_vector_frame_release_writable_elements): New.
2736 (scm_list_to_vector, scm_vector_to_list, scm_vector_fill,
2737 scm_vector_move_left_x, scm_vector_move_right_x): Use them.
277e8472
MV
2738
2739 * ramap.c (scm_ramapc, scm_raeql): Use
2740 scm_c_generalized_vector_length instead of
2741 scm_uniform_vector_length.
2742 (scm_ramap, rafe): Use scm_c_vector_ref instead of SCM_VELTS. use
2743 scm_c_generalized_vector_ref instead of scm_uniform_vector_ref.
2744
49c51610
MV
27452004-12-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2746
2747 * continuations.h, continuations.c (scm_t_contregs): New 'offset'
2748 member for relocating debug frames.
2749 (scm_make_continuation): Set it.
2750
2751 * stacks.c (read_frame, read_frames, scm_make_stack,
2752 scm_last_stack_frame, scm_stack_id): Use the new 'offset' member
2753 of continuations instead of calculating the offset ourselves.
2754 Relocate 'vect' member of scm_t_debug_frame.
2755
3b2ee265
KR
27562004-12-16 Kevin Ryde <user42@zip.com.au>
2757
2758 * ramap.c (scm_array_map_x): Check for at least one source argument.
2759
e120686a
KR
27602004-12-14 Kevin Ryde <user42@zip.com.au>
2761
2762 * srfi-13.c (string-any, string-every): Use a scheme wrapper around
2763 the C code so for the final call to the predicate procedure is a tail
2764 call, per SRFI-13 spec.
2765
680b5237
KR
27662004-12-10 Kevin Ryde <user42@zip.com.au>
2767
2768 * eq.c (scm_eq_p, scm_eqv_p, scm_equal_p): Update docstrings from
2769 recent revision to the reference manual.
2770
2771 * numbers.c (scm_modulo): Amend fixme comment about negative divisor
2772 with "%", C99 says it's well-defined.
2773
2774 * socket.c (scm_from_ipv6): Just use mpz_import. Don't bother trying
2775 to fit scm_from_ulong_long, since that uses mpz_import anyway. Don't
2776 bother trying to fit scm_from_ulong, not really worth the trouble if
2777 addresses are more than 4 bytes usually.
2778
446d320c
KR
27792004-11-30 Kevin Ryde <user42@zip.com.au>
2780
2781 * gc_os_dep.c (NetBSD): Test __m68k__ and __arm__ as well as m68k and
2782 arm32. Reported by Greg Troxel.
2783
f2654760
MV
27842004-11-14 mvo <mvo@zagadka.de>
2785
2786 * unif.c, unif.h (scm_i_cvref): Made non-static for ramap.c.
2787
2788 * Makefile.am (INCLUDES): It is "@LTDLINCL@", not "@LTDLINC@".
2789
d550e35f
MV
27902004-11-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2791
2792 Enclosed arrays are now their own smob. This has been done to
2793 make the code more explicit about them and to prepare for the time
f2654760
MV
2794 when generalized vectors include arbitrary one-dimensional
2795 arrays. (Uptonow, enclosed arrays have been recognized by their
2796 use of an array as their storage 'vector'. When all generalized
2797 vectors are allowed as storage, including one-dimensional arrays,
2798 this will no longer work.)
d550e35f
MV
2799
2800 * unif.h, unif.c: (scm_tc16_enclosed_array, SCM_ENCLOSED_ARRAYP):
2801 New.
2802 (exactly_one_third, singp): Removed.
2803 (scm_array_p, scm_array_dimensions, scm_shared_array_root,
2804 scm_shared_array_offset, scm_shared_array_increments): Handle
2805 enclosed arrays explicitely.
2806 (scm_array_rank): Likewise. Also, do not return zero for
2807 non-arrays, signal an error instead since arrays with rank zero do
2808 exist.
2809 (scm_i_make_ra): New, for specifying the tag of the new array.
2810 (scm_make_enclosed_array): Use it.
2811 (scm_make_ra): Reimplemented in terms of scm_i_make_ra.
2812 (scm_make_shared_array): Use scm_c_generalized_vector_length
2813 instead of scm_uniform_vector_length.
2814 (scm_array_in_bounds_p): Rewritten to be much cleaner.
2815 (scm_i_cvref): New, doing the job of scm_cvref.
2816 (scm_cvref): Use scm_i_cvref.
2817 (scm_array_ref): Do not accept non-arrays when no indices are
2818 given. Use scm_i_cvref to do the actual access.
2819 ("uniform-array-set1"): Do not register.
2820 (scm_array_set_x, scm_uniform_array_read_x,
2821 scm_uniform_array_write): Handle enclosed arrays explicitly.
2822 (ra2l): Use scm_i_cvref instead of scm_uniform_vector_ref to also
2823 handle enclosed arrays.
2824 (scm_array_to_list): Handle enclosed arrays explicitly.
2825 (rapr1): Removed.
2826 (scm_i_print_array_dimension): Use scm_i_cvref to also handle
2827 enclosed arrays.
2828 (scm_i_print_enclosed_array): New.
2829 (tag_proto_table, tag_creator_table): Renamed former to latter.
2830 Added "a" and "b" for strings and bitvectors, resp.
2831 (scm_i_tag_to_prototype, scm_i_tag_to_creator): Renamed former to
2832 latter. Tag "a" is in the table now, no need to handle it as a
2833 legacy tag.
2834 (scm_raprin1): Just call scm_iprin1.
2835 (scm_array_creator, scm_array_prototype): Handle enclosed arrays
2836 explicitly.
2837 (scm_init_unif): Initialize scm_tc16_enclosed_array smob.
2838 Use scm_i_print_array as printer for scm_tc16_array.
2839
2ed34885
MV
28402004-11-10 Marius Vollmer <mvo@zagadka.de>
2841
823086c1
MV
2842 * ramap.c (cind): Changed second arg to be pointer to long instead
2843 of uniform vector.
2844 (scm_ramapc): Allocate index vector with scm_malloc and not as
d550e35f 2845 uniform vector. Wrap it in a frame so that it gets properly freed.
823086c1
MV
2846 (scm_array_index_map_x): Likewise.
2847
2848 * unif.c: Changed all uses of scm_array_prototype to
2849 scm_array_creator. (scm_i_get_old_prototype): Signal error when no
2850 prototype is known.
2851 (scm_uniform_array_read_x, scm_uniform_array_write): Reimplemented
2852 in terms of scm_uniform_vector_read_x and
2853 scm_uniform_vector_write, respectively. Strings and
2854 bitvector support has been dropped.
2855
2ed34885
MV
2856 * srfi-4.h, srfi-4.c: Do not include <libguile.h>, include the
2857 needed files directly. Include config.h, <unistd.h> and <io.h>
2858 when available.
2859 (scm_uniform_vector_read_x, scm_uniform_vector_write): New.
2860
2c72f253
MV
28612004-11-09 Marius Vollmer <mvo@zagadka.de>
2862
2863 * gh_data.c (gh_uniform_vector_length): Properly use
2864 scm_c_uniform_vector_length instead of scm_uniform_vector_length.
2865
3cc0a296
MV
28662004-11-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2867
2868 * srfi-4.h (scm_c_uniform_vector_ref, scm_c_uniform_vector_set_x):
2869 New.
2870 (scm_i_uniform_vector_creator): Removed.
2871 (scm_i_generalized_vector_creator): New.
2872 (scm_uniform_vector_length, scm_uniform_element_size): Do not
2873 handle generalized vectors, only uniform numeric vectors.
2874 (alloc_uvec): Do length check here...
2875 (make_uvec): ...but not here.
2876 (coerce_to_uvec): Use new generalized vector functions to handle
2877 all kinds of vectors in one go.
2878
2879 * tags.h (scm_tc7_bvect): Renamed to scm_tc7_unused7, renaming the
2880 remaining scm_tc7_unused tags to get a neatly ordered list.
2881
2882 * eq.c, evalext.c, gc-card.c, gc-mark.c, objects.c, print.c: Do no
2883 longer handle scm_tc7_bvect bitvectors.
2884
2885 * ramap.c: Use the new generalized vector functions to handle all
2886 vector like things.
2887
2888 * vectors.h, vectors.c (scm_is_vector, scm_c_vector_length,
2889 scm_c_vector_ref, scm_c_vector_set_x, scm_generalized_vector_p,
2890 scm_generalized_vector_length, scm_generalized_vector_ref,
2891 scm_generalized_vector_set_x, scm_generalized_vector_to_list,
2892 scm_is_generalized_vector, scm_c_generalized_vector_length,
2893 scm_c_generalized_vector_ref, scm_c_generalized_vector_set_x):
2894 New.
2895
2896 * unif.h, unif.c (scm_bitvector_p, scm_bitvector,
2897 scm_make_bitvector, scm_bitvector_length, scm_bitvector_ref,
2898 scm_bitvector_set_x, scm_list_to_bitvector, scm_bitvector_to_list,
2899 scm_bitvector_fill_x, scm_is_bitvector, scm_c_make_bitvector,
2900 scm_c_bitvector_length, scm_c_bitvector_ref,
2901 scm_c_bitvector_set_x, scm_bitvector_elements,
2902 scm_bitvector_release, scm_frame_bitvector_release,
2903 scm_tc16_bitvector, bitvector_free, bitvector_print,
2904 bitvector_equalp, count_ones, find_first_one): New.
2905 (scm_bit_count, scm_bit_position, scm_bit_set_star_x,
2906 scm_bit_count_star, scm_bit_invert_x, scm_istr2bve): Rewritten
2907 using the new C API for bitvectors and maybe count_ones or
2908 find_first_one, as appropriate.
2909 (SCM_I_MAX_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
2910 SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
2911 SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
2912 SCM_SET_BITVECTOR_LENGTH): Removed. Replaced all uses with the
2913 new functions from above.
2914 (scm_i_proc_make_vector, scm_i_proc_make_string,
2915 scm_i_proc_make_bitvector): Made non-static for use in
2916 scm_i_generalized_vector_creator.
2917 (scm_make_u1vector): Removed, replaced by scm_make_bitvector.
2918 (scm_make_uve): Validate that the created object is a generalized
2919 vector.
2920 (scm_i_legacy_tag): Removed.
2921 (scm_i_print_array): Do it here.
2922 (scm_raprin1): Only print enclosed arrays.
2923
2924 * Makefile.am (DOT_DOC_FILES): Added srfi-4.doc.
2925
c24d026b
MV
29262004-11-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2927
1f2328fe
MV
2928 * srfi-4.c (make_uvec): Use SCM_I_SIZE_MAX instead of SIZE_MAX for
2929 added portability.
2930
2931 * chars.c (scm_charnames, scm_charnums): Added "sp" as an alias
2932 for "space". Thanks to Bruce Korb!
2933
c24d026b
MV
2934 * rw.c (scm_read_string_x_partial): Bugfix, apply offset to dest
2935 only after dest has been set. Thanks to Hyper Division!
2936
2937 * gh_data.c (gh_uniform_vector_length): Use
2938 scm_uniform_vector_length instead of SCM_UVECTOR_LENGTH.
2939
d4ea47c8
MV
29402004-11-03 Marius Vollmer <mvo@zagadka.de>
2941
2942 * unif.h (SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
2943 SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
2944 SCM_SET_UVECTOR_LENGTH): Removed.
2945
236288e2
MV
29462004-11-02 Marius Vollmer <mvo@zagadka.de>
2947
9a5fa6e9 2948 Mac OS X and OpenBSD compatibility patches from Andreas Vögele.
236288e2
MV
2949 Thanks!
2950
2951 * backtrace.c (scm_display_backtrace_with_highlights): Join the
2952 first and the second line of the SCM_DEFINE macro call, since old
2953 preprocessors cannot handle definitions that are split into two
2954 lines.
2955
2956 * inline.h (scm_cell, scm_double_cell): Don't use C99 variable
2957 declarations.
2958
2959 * pairs.c (scm_i_chase_pairs): Replace scm_t_bits with
2960 scm_t_uint32 to fix the mismatch between the function declaration
2961 and definition.
2962
2963 * sort.c (quicksort): Don't use C99 variable declarations.
2964
2965 * srfi-4.c (uvec_fast_ref): Avoid a compiler warning by returning
2966 SCM_BOOL_F if no type matches.
2967
2968 * threads.c (thread_print): Cast a pointer to size_t when printing
2969 with scm_uintprint.
2970
2971 * unif.c (scm_i_tag_to_prototype): Make sure that "instead" gets
2972 defined.
2973 (scm_array_prototype): Deprecated.
2974
f738b51d
MV
29752004-11-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2976
5d1015ec
MV
2977 * srfi-4.h, srfi-4.c (scm_frame_uniform_vector_release): New.
2978 * unif.c (scm_bit_set_star_x, scm_bit_count_star_x): Use it to get
2979 more efficient access to the u32vector.
2980
034486df
MV
2981 * tags.h (scm_tc7_llvect, scm_tc7_uvect, scm_tc7_fvect,
2982 scm_tc7_dvect, scm_tc7_cvect, scm_tc7_svect, scm_tc7_byvect,
2983 scm_tc7_ivect): Renamed to scm_tc7_unused_1 to scm_tc7_unused_8.
2984
2985 * validate.h (SCM_VALIDATE_VECTOR_OR_DVECTOR): Accept f64vectors
2986 instead of the old-style dvectors.
2987
2988 * gh_data.c: Use new-style uniform arrays in place of old-style
2989 ones.
2990
2991 * eq.c, evalext.c, gc-card.c, gc-mark.c, objects.c, print.c,
2992 ramap.c, unif.c: Do no longer handle old-style uniform vectors.
2993
2994 * unif.c (scm_bit_set_star_x, scm_bit_count_star_x): Use u32vectors
2995 instead of old-sytle uvectors.
2996
2997 * convert.c, convert.i.c: Rewritten completely, using
2998 scm_any_to_u8vector, etc and other new-style uniform vector
2999 functions.
3000
3001 * random.c (scm_random_solid_sphere_x,
3002 scm_random_hollow_sphere_x): Do not validate vector argument, this
3003 is already done elsewhere.
3004
3005 * srfi-4.h, srfi-4.i.c, srfi-4.c (coerce_to_uvec,
3006 scm_any_to_u8vector, etc): New.
3007 (scm_uniform_element_size, scm_uniform_vector_length): Do no
3008 longer handle old-style uniform vectors.
3009
f738b51d
MV
3010 * read.c (scm_lreadr): Bugfix: include the last bit in the
3011 bit vector.
3012
5e9c05a1
MV
30132004-10-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3014
327114a2
MV
3015 * unif.h, unif.c (scm_array_creator): New.
3016 (scm_i_get_old_prototype): New.
3017 (scm_array_prototype): use it to return old-style prototype, never
3018 return creators.
3019 (scm_make_uve): Use scm_call_1 instead of scm_call_2 with a second
3020 arg of SCM_UNDEFINED. The latter is wrong.
3021
5e9c05a1
MV
3022 * unif.h, unif.c (scm_make_u1vector): New, but only temporary.
3023 (make_uve): Removed.
3024 (scm_i_proc_make_vector, scm_i_proc_make_string,
3025 scm_i_proc_make_u1vector): New.
3026 (scm_init_unif): Initialize them.
3027 (scm_i_convert_old_prototype): New.
3028 (scm_make_uve): Use it to get the creator procedure. Removed all
3029 old code that created old-style uniform vectors.
3030 (scm_array_p): Handle generic vectors.
3031 (scm_dimensions_to_uniform_array): Do not fill new array with
3032 prototype when that is a procedure.
3033 (scm_list_to_uniform_array): Also accept a list of lower bounds as
3034 the NDIM argument.
3035 (scm_i_print_array): Print rank for shared or non-zero-origin
3036 vectors.
3037 (tag_proto_table, scm_i_tag_to_prototype, scm_i_read_array): New.
3038 (scm_raprin1): Do not call scm_i_array_print for enclosed arrays,
3039 which I do not understand yet.
3040 (scm_array_prototype): Explicitely handle generic vectors.
327114a2 3041
5e9c05a1
MV
3042 * numbers.c, number.h (scm_i_print_complex, icmplx2str): New.
3043 (iflo2str): Use icmplx2str for complex numbers.
3044
3045 * srfi-4.c, srfi-4.h (scm_i_read_homogenous_vector,
3046 scm_i_uniform_vector_prototype): Removed.
3047 (scm_i_uniform_vector_creator): New.
3048 (SCM_UVEC_C32, scm_c32vector, scm_make_c32vector, etc,
3049 SCM_UVEC_C64, scm_c64vector, scm_make_c64vector, etc): New.
3050 Updated all tables and generic functions to support them.
3051 (scm_i_proc_make_u8vector, scm_i_proc_make_s8vector, etc): New.
3052 (scm_init_srfi_4): Initialize them.
3053
3054 * srfi-4.i.c (scm_take_u8vector, etc): use uvec_sizes instead of
3055 sizeof(CTYPE) as explained in the comment.
3056
3057 * read.c (scm_lreadr): Call scm_i_read_array for all characters
50472546 3058 following '#' that can start an array. Explicitely disambiguate
5e9c05a1
MV
3059 'i' and 'e' between introducing numbers and uniform vectors. Do
3060 not call scm_i_read_homogenous_vector, since that is also handled
3061 by scm_i_read_array now.
3062
f984af07
MV
30632004-10-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3064
3065 First cut at integrating uniform vectors from srfi-4 with the rest
3066 of Guile. This change replaces scm_tc7_byvect with a s8 uniform
3067 vector. The plan is to gradually replace one type after the other
3068 until none is left and then to consider general cleanups and
3069 optimizations.
3070
3071 * srfi-4.h, srfi-4.i.c (scm_u8vector_elements, etc): New.
3072
3073 * srfi-4.h, srfi-4.c (scm_uniform_vector_p,
3074 scm_uniform_vector_ref, scm_uniform_vector_set_x,
3075 scm_uniform_vector_to_list, scm_is_uniform_vector,
3076 scm_c_uniform_vector_lengths, scm_c_uniform_vector_size,
3077 scm_uniform_vector_elements, scm_uniform_vector_element_size,
3078 scm_uniform_vector_release): New.
3079 (scm_i_uniform_vector_prototype, scm_i_uniform_vector_tag): New.
3080 (scm_uniform_element_size, scm_uniform_vector_length): Moved here
3081 from unif.h, unif.c and extended to handle both the old and new
3082 uniform vectors.
3083
3084 * tags.h (scm_tc7_byvect): Commented out.
3085
3086 * unif.h, unif.c (scm_uniform_vector_ref, scm_array_ref): Renamed
3087 the former to the latter.
3088 (scm_uniform_vector_length, scm_uniform_element_size): Moved to
3089 srfi-4.h, srfi-4.c.
3090 (scm_make_uve): Call scm_make_s8vector for #\nul prototype.
3091 (scm_array_p, scm_array_rank, scm_array_dimensions,
3092 scm_transpose_array, scm_enclose_array, scm_array_ref, scm_cvref,
3093 scm_array_set_x, scm_array_contents, scm_uniform_array_read_x,
3094 scm_array_to_list, scm_array_prototype): Handle srfi-4 uniform
3095 vectors. Removed code for scm_tc7_byvect.
3096 (scm_dimensions_to_uniform_array): Fill array with 0 when
3097 prototype is #\nul.
3098 (scm_i_print_array_dimension, scm_i_legacy_tag,
3099 scm_i_print_array): New.
3100 (scm_raprin1): Call scm_i_print_array for arrays. Removed code
3101 for scm_tc7_byvect.
3102
3103 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp,
3104 scm_array_index_map_x, raeql_1, scm_array_equal_p): Handle srfi-4
3105 uniform vectors. Removed code for scm_tc7_byvect
3106
3107 * print.c (iprin1): Removed code for scm_tc7_byvect.
3108 * objects.c (scm_class_of): Likewise.
3109 * gc-mark.c (scm_gc_mark_dependencies): Likewise.
3110 * gc-card.c (scm_i_sweep_card): Likewise.
3111 * evalext.c (scm_self_evaluating_p): Likewise.
3112 * eq.c (scm_equal_p): Likewise.
3113
3114 * gh_data.c (gh_chars2byvect): Reimplemented with
3115 scm_make_s8vector.
3116 (gh_scm2chars): Handle s8vectors, removed code for scm_tc7_byvect.
3117
3118 * srfi-4.c (take_uvec): New.
3119 (alloc_uvec): Use it.
3120 * srfi-4.h, srfi-4.i.c (scm_take_u8vector, etc): New.
3121
3122 * random.c (vector_scale, vector_scale_x): Renamed former to the
3123 latter, since it modifies its argument.
3124 (vector_scale_x, vector_sum_squares, scm_random_normal_vector_x):
3125 Do not use scm_universal_vector_length for non-uniform vectors.
3126 Use scm_f64vector_elements to access innards of uniform vectors.
3127
3128 * convert.i.c: Convert srfi-4 style uniform vectors when
3129 requested.
3130 * convert.c (scm_c_scm2chars, scm_c_chars2scm,
3131 scm_c_chars2byvect): Use a s8vector instead of a scm_tc7_byvect.
3132
79d52182
MV
31332004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3134
3135 * numbers.h, numbers.c (scm_i_print_double): New.
3136
3137 * srfi-4.c, srfi-4.h, srfi-4.i.c: New files, initially from
3138 ../srfi/ but heavily modified.
3139 * Makefile.am: Add them in all the right places.
3140 * init.c (scm_init_guile_1): Call scm_init_srfi_4.
3141 * read.c (scm_lreadr): Call scm_i_read_homogenous_vector for '#f',
3142 '#u', and '#s'.
3143
3144 * read.h, read.c (scm_i_input_error): Renamed from scm_input_error
3145 and made non-static. Changed all uses.
3146
6191ccec
MV
31472004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3148
e64e80b0
MV
3149 * variable.c, threads.c, struct.c, stackchk.c, smob.c, root.c,
3150 print.c, ports.c, mallocs.c, hooks.c, hashtab.c, fports.c,
3151 guardians.c, filesys.c, coop-pthreads.c, continuations.c: Use
3152 scm_uintprint to print unsigned integers, raw heap words, and
3153 adresses, using a cast to scm_t_bits to turn pointers into
3154 integers.
3155
3156 * unif.c: Include "libguile/print.h".
3157
c90ac3a8
MV
3158 * numbers.h, numbers.c (SCM_T_INTBUFLEN): Increased to cover
3159 scm_t_intmax values.
3160 (scm_uint2str): New, for scm_t_uintmax.
3161 (scm_iint2str): Argument type changed to scm_t_intmax,
3162 reimplemented in terms of scm_uint2str.
3163
3164 * print.c, print.h (scm_uintprint): New, for printing
3165 scm_t_uintmax values.
3166 (scm_intprint): Argument type changed to scm_t_intmax.
3167
77c2594f
MV
3168 * sort.c (quicksort, scm_merge, scm_merge_list_x,
3169 scm_merge_list_step, scm_merge_vector_step): Inserted SCM_TICKs at
3170 strategic places so that the loops can be interrupted.
3171
6191ccec
MV
3172 * Makefile.am (INCLUDES): Use @LTDLINC@ instead of
3173 "-I$(top_srcdir)/libguile-ltdl".
3174 (libguile_la_LIBADD): Use @LIBLTDL@ instead of
3175 "../libguile-ltdl/libguile-ltdl.a".
3176
3177 * guile.c, dynl.c: Switched to using libltdl directly. Replaced
3178 all references to scm_lt_* with just lt_*. Include <ltdl.h>
3179 instead of <libguile-ltdl.h>.
3180
77600f3e
MV
31812004-10-20 Marius Vollmer <mvo@zagadka.de>
3182
3183 * sort.c (quicksort): Copy pivot out of the array while
3184 constructing the partitions; it could get overwritten otherwise.
3185 Because of the ultimate insertion sort, this bug did not cause
3186 quicksort to fail, it just put all the burdon on the insertion
3187 sort and was thus very slow. Thanks to Rolan Orre for reporting
3188 the slowness!
3189
5000379b
MV
31902004-10-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3191
192cd792
MV
3192 * numbers.c (scm_i_range_error): New.
3193 * conv-integer.i.c, conv-uinteger.i.c: Use it instead of
3194 scm_out_of_range.
3195
3196 * sort.c (scm_restricted_vector_sort_x): Validate startpos <=
6191ccec 3197 endpos. State inclusiveness/exclusiveness of bounds in docstring.
192cd792
MV
3198
3199 * unif.c (scm_array_p): When no prototype is given, explicitely
3200 test for allowable types, do not simply return true. Thanks to
3201 Roland Orre for reporting this!
3202
5000379b
MV
3203 * private-gc.h (SCM_DEFAULT_MAX_SEGMENT_SIZE): Increase to 20 Mib.
3204
3205 * gc-segment.c (scm_i_get_new_heap_segment): Limit size of new
3206 segment to scm_max_segment_size.
3207
497eb0b7
HWN
32082004-10-08 Han-Wen Nienhuys <hanwen@xs4all.nl>
3209
1367aa5e
HWN
3210 * gc.c (scm_igc): put scm_gc_running-- before running hooks.
3211
497eb0b7
HWN
3212 * inline.h (scm_double_cell): abort if GC running.
3213 (scm_cell): idem.
3214
aef0bdb4
MV
32152004-10-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3216
3217 * error.c (scm_wrong_type_arg): Do not talk about "argument" for
3218 pos == 0.
3219
3220 Keywords no longer store a 'dash symbol'. Instead, they store a
3221 symbol with their real name.
3222
3223 * keywords.h, keywords.c, deprecated.h, deprecated.c
3224 (SCM_KEYWORDP, SCM_KEYWORDSYM): Deprecated and implemented in
3225 terms of scm_is_keyword and scm_keyword_dash_symbol.
3226
3227 * keywords.h, keywords.c, discouraged.h, discouraged.c
3228 (scm_make_keyword_from_dash_symbol, scm_keyword_dash_symbol,
3229 scm_c_make_keyword): Discouraged.
3230
3231 * keywords.h, keywords.c (scm_symbol_to_keyword,
3232 scm_keyword_to_symbol): Implemented in C.
3233 (scm_is_keyword, scm_from_locale_keyword,
3234 scm_from_locale_keywordn): New.
3235
3236 * goops.c: Replaced SCM_KEYWORDP with scm_is_keyword.
3237
3238 * snarf.h (SCM_KEYWORD, SCM_GLOBAL_KEYWORD): Use
3239 scm_from_locale_keyword instead of scm_c_make_keyword.
3240
3241 * keywords.c (scm_symbol_to_keyword): Use SCM_ASSERT_TYPE for a
3242 better error message.
3243
3244 * deprecated.c: Include discouraged.h and keywords.h.
3245
3246 * read.c (scm_lreadr): Simply do (symbol->keyword (read)) after
3247 reading '#:' or ':'. See NEWS for consequences.
3248
818deb11
MV
32492004-09-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3250
43c25626
MV
3251 * read.c (scm_lreadr): Revert change from 2004-09-22: string
3252 literals are now read-write again (until SCM_STRING_CHARS is
3253 removed).
3254
3255 * strings.c (SCM_STRING_CHARS): Explicitely reject read-only
3256 strings with an error message that blames SCM_STRING_CHARS.
3257
3258 * options.c (change_option_setting): Use scm_car instead of
3259 explicit type check plus SCM_CAR.
3260
3261 * print.h, print.c (SCM_PRINT_HIGHLIGHT_PREFIX,
3262 SCM_PRINT_HIGHLIGHT_SUFFIX): New printer options.
3263 (scm_iprin1): Use them instead of the previoulsy hardcoded
3264 strings.
3265 (scm_init_print): Initialize them.
3266
3267 * backtrace.c (display_frame_expr): Do not remove control
3268 characters from the final string. Print it directly using
3269 scm_display.
3270
818deb11
MV
3271 * ramap.c (scm_array_equal_p): Include scm_tc7_svect in switch.
3272 Thanks to Roland Orre!
3273
d748089e
KR
32742004-09-29 Kevin Ryde <user42@zip.com.au>
3275
3276 * regex-posix.c (scm_regexp_exec): Correction to last change, should
3277 be whole original string in match struct, not offsetted substring.
3278
0ff7e3ff
HWN
32792004-09-24 Han-Wen Nienhuys <hanwen@xs4all.nl>
3280
3281 * gc.c (scm_gc_unprotect_object): abort if called during GC.
3282
ad7de4b8
MV
32832004-09-24 Marius Vollmer <mvo@zagadka.de>
3284
2edf319f
MV
3285 * Makefile.am (EXTRA_DIST): Added gettext.h.
3286
d180337b
MV
3287 * smob.c, smob.h (scm_assert_smob_type): New.
3288
05d7cf89 3289 * Makefile.am (guile_CFLAGS, guile_LDFLAGS, libguile_la_CFLAGS):
ad7de4b8
MV
3290 Include GUILE_CFLAGS.
3291 (libguile_la_LIBADD): Removed THREAD_LIBS_LOCAL, which is unused
3292 now.
3293 (libpath.h): Put GUILE_CFLAGS in the build-info.
3294
c9fedf8a
MV
32952004-09-23 Marius Vollmer <mvo@zagadka.de>
3296
3297 * print.h (scm_print_state): Added highlight_objects.
3298 * print.c (make_print_state, scm_free_print_state): Initialize it
3299 to SCM_EOL.
3300 (scm_iprin1): Wrap output in '{...}' when object is contained in
3301 highlight_objects.
3302
3303 * backtrace.h, backtrace.c (scm_display_backtrace_with_highlights,
3304 scm_backtrace_with_highlights): New. Set highlight_objects of
3305 printstate.
3306
3307 * error.c (scm_error_scm): Document new meaning of data/rest
3308 argument for out-of-range and wrong-type-arg errors.
3309 (scm_out_of_range, scm_out_of_range_pos, scm_wrong_type_arg,
3310 scm_wrong_type_arg_msg): Pass bad_value in rest argument of
3311 exception so that it gets highlighted in the backtrace.
3312 Don't talk about "argument" when not giving a position.
3313
3314 * throw.c (handler_message): The rest argument is the fourth
3315 argument, not everything after the third. Call
3316 scm_display_backtrace_with_highlights, passing the rest argument
3317 when appropriate.
3318
d5ac9b2a
MV
33192004-09-22 Marius Vollmer <mvo@zagadka.de>
3320
3321 From Jan Nieuwenhuizen <janneke@gnu.org> and Bruno Haible
3322 <bruno@clisp.org>:
3323
3324 * i18n.c: Handle --disable-nls (thanks Bruno).
3325
3326 * posix.c (scm_init_posix): Add LC_PAPER, LC_NAME, LC_ADDRESS,
3327 LC_TELEPHONE, LC_MEASUREMENT, LC_IDENTIFICATION.
3328
3329 * i18n.c (scm_i_to_lc_category): New name and export. Support all
3330 LC categories.
05d7cf89 3331 * posix.c (scm_setlocale): Use it.
d5ac9b2a
MV
3332
3333 * i18n.h, i18n.c (scm_textdomain, scm_bindtextdomain,
3334 scm_bind_textdomain_codeset): Make wrappers similar to C function
3335 they wrap.
3336
3337 * i18n.h: New file.
3338 * i18n.c: New file.
3339 * gettext.h: New file, taken from GNU gettext.
3340 * init.c: Include libguile/i18n.h.
3341 (scm_init_guile_1): Add call to scm_init_i18n().
3342 * Makefile.am (libguile_la_SOURCES): Add i18n.c.
3343 (DOT_X_FILES): Add i18n.x.
3344 (DOT_DOC_FILES): Add i18n.doc.
3345 (libguile_la_LDFLAGS): Add @LTLIBINTL@.
3346 (modinclude_HEADERS): Add i18n.h.
3347
d2e53ed6
MV
33482004-09-22 Marius Vollmer <mvo@zagadka.de>
3349
2cdfe016
MV
3350 * gh_list.c: Replaced SCM_CAR, etc with scm_car, etc.
3351
d2e53ed6
MV
3352 * discouraged.h, tags.h (SCM_CONSP, SCM_NCONSP): Moved to
3353 discouraged.h. Replaced all uses with scm_is_pair.
3354 (SCM_I_CONSP): New name for SCM_CONSP.
3355
3356 * pairs.h, pairs.c (scm_is_pair, scm_is_null, scm_car, scm_cdr,
3357 scm_i_chase_pairs, SCM_I_A_PAT, SCM_I_D_PAT, etc, scm_caar,
3358 scm_cadr, etc): New.
3359 (SCM_NULLP, SCM_NNULLP): Moved to discouraged.h. Replaced all
3360 uses with scm_is_null.
5dd82006 3361
d2e53ed6
MV
3362 * eval.c (scm_eval, scm_apply, call_cxr_1): Use scm_i_chase_pairs
3363 instead of explicit code.
5dd82006 3364
5dfdf243
MV
33652004-09-22 Marius Vollmer <mvo@zagadka.de>
3366
b50c53e5
MV
3367 * srfi-13.c (scm_string_contains, scm_string_contains_ci):
3368 Reworded logic a bit so that #f is returned immediately when s1 is
3369 too short to contain s2.
3370
5dfdf243 3371 * regex-posix.c (scm_regexp_exec): Convert string to
05d7cf89 3372 zero-terminated locale string before matching against it.
5dfdf243
MV
3373
3374 * strings.h, strings.c (scm_substring_read_only,
3375 scm_c_substring_read_only, scm_i_substring_read_only): New.
3376 (RO_STRING_TAG, IS_RO_STRING): New.
3377 (scm_i_string_writable_chars): Bail on read-only strings.
3378
3379 * read.c (scm_lreadr): use scm_c_substring_read_only for string
3380 literals, thus making them read-only as specified by R5RS.
3381
22ab5ba3
MV
33822004-09-22 Marius Vollmer <mvo@zagadka.de>
3383
3384 * eq.c (scm_equal_p): Allow smobs with different flags to be equal
3385 by testing for smobs before insisting on equal SCM_CELL_TYPES.
3386
2663421c
MV
33872004-09-21 Marius Vollmer <mvo@zagadka.de>
3388
0d83cb90
MV
3389 * numbers.h, numbers.c: Include <gmp.h> in numbers.h, not in
3390 numbers.c.
3391 (scm_to_mpz, scm_from_mpz): New.
9a5fa6e9 3392 Thanks to Andreas Vögele!
0d83cb90 3393
2663421c
MV
3394 * read.c (skip_scsh_block_comment): Recognize "!#" everywhere, not
3395 just on a line of its own.
3396
3397 * srfi-13.c (scm_string_any, scm_string_every,
3398 scm_string_tabulate, string_upcase_x, string_down_case_x,
3399 string_titlecase_x, string_reverse_x, scm_string_tokenize): Use
3400 size_t instead of int for indices into strings. Make sure that no
9a5fa6e9 3401 over- or underflow occurs. Thanks to Andreas Vögele!
2663421c
MV
3402 (scm_xsubstring, scm_string_xcopy_x): Use ints for 'extended'
3403 indices, which can also be negative.
3404
b00b73f9
MV
34052004-09-20 Marius Vollmer <mvo@zagadka.de>
3406
3407 * gc-mark.c (SCM_MARK_BACKING_STORE): Removed, it was unused.
3408
3409 * threads.c (scm_threads_mark_stacks): Call
3410 SCM_MARK_BACKING_STORE. Also, do not use stack_len local, it was
3411 only used once.
3412
adba74f3
HWN
34132004-09-13 Jan Nieuwenhuizen <janneke@gnu.org>
3414
05d7cf89 3415 * srfi-13.c (scm_string_contains, scm_string_contains_ci):
adba74f3
HWN
3416 Bugfix: when subtracting unsigned values, make sure that result
3417 does not wrap.
3418
f6de32c8
KR
34192004-09-09 Kevin Ryde <user42@zip.com.au>
3420
3421 * filesys.c, stime.c (_POSIX_C_SOURCE): Use this only on hpux, it
3422 causes too many problems elsewhere (glibc, freebsd, mingw). Reported
9a5fa6e9 3423 by Andreas Vögele.
f6de32c8 3424
e548be5f
MV
34252004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3426
eb8d0af1
MV
3427 * Makefile.am (EXTRA_libguile_la_SOURCES): Removed "alloca.c".
3428
e548be5f
MV
3429 * eq.c (real_eqv): Pretend that all NaNs are equal.
3430
3431 * numbers.c (scm_integer_expt): Do not accept inexact integers.
3432
e7acba81
MV
34332004-09-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3434
874fbad1
MV
3435 * srfi-13.c (scm_string_trim_right, scm_string_xcopy_x): Correctly
3436 use size_t for some locals instead of int.
3437
e7acba81
MV
3438 * read.c (scm_flush_ws): Detect "#!"-style comments here.
3439 (scm_lreadr): Abort on seeing "#!", which should no longer happen.
3440 (skip_scsh_block_comment): Use scm_input_error instead of
3441 scm_misc_error in case of EOF.
3442
5de12658
KR
34432004-09-07 Kevin Ryde <user42@zip.com.au>
3444
3445 * numbers.c (scm_integer_expt): Reject exponent +/-inf.
5de12658
KR
3446 Bug report by Bill Schottstaedt.
3447
3448 * ports.c (scm_getc, scm_lfwrite): Recognise \a \b and \r for port
3449 column.
3450 * ports.h (SCM_ZEROCOL, SCM_DECCOL): New macros.
3451
3452 * posix.c (scm_access): Update docstring per manual.
3453
3454 * posix.c (scm_nice): Correction to error detection. Reported by
3455 Matthias Koeppe.
3456
3457 * stime.c (scm_current_time, scm_gettimeofday, scm_strptime): Don't
3458 throw error before unlocking mutex with SCM_ALLOW_INTS.
3459
e227addf
KR
34602004-09-06 Kevin Ryde <user42@zip.com.au>
3461
3462 * stime.h (SCM_TIME_UNITS_PER_SECOND): Use sysconf(_SC_CLK_TCK) when
3463 available. This also gets around CLK_TCK being absent when
3464 _GNU_SOURCE and _POSIX_C_SOURCE are defined in stime.c.
3465
edea856c
SJ
34662004-09-03 Stefan Jahn <stefan@lkcc.org>
3467
3468 * threads.c (scm_threads_mark_stacks): Fixed local variable
3469 definitions.
3470
e7acba81 3471 * strings.c (scm_i_substring_copy, scm_string_append): Fixed
edea856c
SJ
3472 local variable definitions.
3473
3474 * stime.c (_POSIX_C_SOURCE): Do not define this item on
3475 MinGW32 because it conflicts with its pthread headers.
874fbad1
MV
3476 (scm_mktime): Consider the HAVE_STRUCT_TM_TM_ZONE define.
3477 (scm_strftime): Using scm_from_locale_string() instead of
edea856c
SJ
3478 scm_makfrom0str().
3479
874fbad1 3480 * posix.c (scm_putenv): Fixed typo in the !HAVE_UNSETENV
edea856c
SJ
3481 part.
3482
3483 * numbers.c (scm_init_numbers): Removed check_sanity() call
3484 inside GUILE_DEBUG. The function has been removed somewhen...
3485
3486 * filesys.c (_POSIX_C_SOURCE): Do not define this item on
3487 MinGW32 because it conflicts with its pthread headers.
3488
d9eb2d67
MV
34892004-08-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3490
3491 * strings.c (SCM_STRINGP): Accept all strings.
3492 (SCM_STRING_CHARS): Reject shared substrings here.
3493
3494 * script.c (scm_compile_shell_switches): Added 2003 and 2004 to
3495 the Copyright years.
3496
c495c342
KR
34972004-08-27 Kevin Ryde <user42@zip.com.au>
3498
3499 * socket.c (scm_fill_sockaddr): Use HAVE_STRUCT_SOCKADDR_SIN_LEN and
3500 HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN for sockaddr fields, SIN_LEN and
3501 SIN_LEN6 are not defined on all systems. Reported by Michael Tuexen.
3502
57aa5515
MV
35032004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3504
3505 * strings.h, strings.c (scm_i_make_symbol): Added FLAGS parameter.
3506 * symbols.h, symbols.c (SCM_I_F_SYMBOL_UNINTERNED,
3507 scm_i_symbol_is_interned, scm_i_mem2symbol,
3508 scm_i_mem2uninternedsymbol): Use it to store uninternedness flag.
3509
ce25760f
MV
35102004-08-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3511
19ff6ffc
MV
3512 * srfi-13.c: First cut at thread-safeness and proper use of
3513 scm_i_string_chars et al. Copious scm_remember_upto_heres have
3514 been inserted. Made sure that no internal string pointer is used
3515 across a SCM_TICK or a possible GC.
3516
ce25760f
MV
3517 * script.c (scm_compile_shell_switches): Use
3518 scm_from_locale_string instead of scm_makfrom0str.
3519
3520 * srfi-13.c (scm_string_rindex): Export to Scheme, as it has
3521 always been.
3522
c5080b51
MV
35232004-08-25 Marius Vollmer <mvo@zagadka.de>
3524
3525 Moved SRFI-13 and SRFI-14 into the core, taking over the role of
3526 strop.c.
3527
3528 * srfi-13.c, srfi-13.h, srfi-14.c, srfi-14.h: New files.
3529 * strop.h, strop.c: Removed, they are now empty.
3530 * Makefile.am: Updated for new and removed files.
3531
3532 * symbols.h, symbols.c (scm_string_ci_to_symbol): Moved here, next
3533 to scm_string_to_symbol.
3534
3535 * chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
3536 scm_char_whitespace_p, scm_upper_case_p, scm_lower_case_p,
3537 scm_char_is_both_p): Use scm_char_set_contains_p with the proper
3538 charset instead of libc functions.
3539
3540 * strorder.c (scm_string_equal_p, scm_string_ci_equal_p,
3541 scm_string_less_p, scm_string_leq_p, scm_string_gr_p,
3542 scm_string_geq_p, scm_string_ci_less_p, scm_string_ci_leq_p,
3543 scm_string_ci_gr_p, scm_string_ci_geq_p): Use scm_string_eq, etc
3544 instead of explicit code.
3545
3546 * deprecated.c, load.c, posix.c, unif.c, symbols.c: Include
3547 "srfi-13.h" instead of "strop.h".
3548
3549 * init.c (scm_init_guile_1): Call scm_init_srfi_13 and
3550 scm_init_srfi_14. Do not call scm_init_strop.
3551
4b0d27f2
MV
35522004-08-24 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3553
3554 * numbers.c (scm_inf_p): Synced docstring back from manual.
3555
3ece39d6
MV
35562004-08-22 Marius Vollmer <mvo@zagadka.de>
3557
3558 * strings.c (get_str_buf_start): New helper function.
3559 (scm_i_substring, scm_i_substring_copy, scm_i_substring_shared,
3560 scm_i_string_char, scm_i_string_writable_chars): Use it.
3561 (scm_i_substring_copy): Make START argument optional for C
3562 callers, for upcoming SRFI-13 integration.
3563
35642004-08-21 Marius Vollmer <mvo@zagadka.de>
3565
3566 From Richard Todd, Thanks!
3567
3568 * script.c (scm_compile_shell_switches): added '-L' switch to add
3569 to the %load-path.
3570
5fa0939c
DH
35712004-08-21 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
3572
3573 * eval.c (unmemoize_exprs): When dropping internal body markers
3574 from the output during unmemoization, also drop those that are not
3575 immediately at the beginning of a body.
3576
2146fdeb
MV
35772004-08-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3578
c1f54b3d
MV
3579 * eval.c (scm_lookupcar1): Report "Variable used before given a
3580 value" insetad of an "Unbound" one for variables that are found
3581 but still contain SCM_UNDEFINED.
2146fdeb
MV
3582
3583 * posix.c (scm_mkstemp): Correction to the correction, mkstemp
3584 expects a null-terminated string in the locale encoding, but
3585 scm_i_string_writable_chars doesn't give that. Fixed by letting
3586 mkstemp modify a locale version of the tmpl argument and copying
3587 the result back into tmpl.
3588
3589 * strop.c (scm_substring_move_x): Store into str2, not str1.
3590
d4f76919
KR
35912004-08-20 Kevin Ryde <user42@zip.com.au>
3592
3593 * posix.c (scm_mkstemp): Correction to new locale_string stuff, need
3594 to modify the input string.
3595
b5247a6b
MV
35962004-08-19 Marius Vollmer <mvo@zagadka.de>
3597
3598 * deprecated.c (SCM_SYMBOL_CHARS): Cast away const in return.
3599 (SCM_SYMBOL_LENGTH): It's scm_i_symbol_length, not
3600 scm_c_symbol_length.
3601
f26b9395
MV
36022004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3603
3604 New string implementation, with copy-on-write strings and
3605 mutation-sharing substrings, and a new internal string API.
3606 Symbols can now share memory with strings.
3607
3608 * tags.h (scm_tc7_stringbuf): New tag.
3609
3610 * strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
3611 scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
3612 replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
3613 uses.
3614 (scm_i_make_string, scm_c_make_string): New, to replace
3615 scm_allocate_string. Updated all uses.
3616 (SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
3617 SCM_STRING_LENGTH): Deprecated.
3618 (scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
3619 scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
3620 Discouraged. Replaced all uses with scm_from_locale_string or
3621 similar, as appropriate.
3622 (scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
3623 scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
3624 scm_substring_shared, scm_substring_copy): New.
3625
3626 * symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
3627 SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
3628 SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
3629 scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
3630 (SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
3631 Deprecated.
3632 (SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
3633 SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
3634 (scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
3635 New, to replace scm_str2symbol and scm_mem2symbol, respectively.
3636 Updated all uses.
3637 (scm_gensym): Generate only the number suffix in the buffer, just
3638 string-append the prefix.
3639
3640 * error.c (scm_memory_error): Do not try to throw, just abort.
3641 Throwing will not work anyway.
3642
3643 * gh.h, gh-data.c (gh_set_substr): Made src const.
3644
3645 * ports.c (scm_i_mode_bits_n): New, for counted strings.
3646 (scm_mode_bits): Use it.
3647 (scm_c_port_for_each): Blocking GC does not seem to work, allocate
3648 a vector normally and fill that instead of consing a list with a
3649 blocked GC.
3650
3651 * read.c (scm_i_casei_streq): New, for counted strings.
3652
3653 * threads.c (gc_section_count): Removed, thread-sleeping can not
3654 be nested.
3655 (scm_i_thread_put_to_sleep): Call scm_i_leave_guile before locking
3656 admin mutex so that we can be put to sleep by other threads while
3657 blocking on that mutex. Lock all the heap mutex of all threads,
3658 including ourselves.
3659 (scm_i_thread_wake_up): Unlock all threads, including ourselves,
3660 call scm_i_enter_guile.
3661 (scm_thread_mark_stacks): Expect all threads to be suspended.
3662
3663 * gc.h, gc.c (scm_i_gc_admin_mutex): New, to protect
3664 scm_gc_mallocated, for now.
3665 (scm_init_storage): Initialize it.
3666 * gc-malloc.c (descrease_mtrigger, increase_mtrigger): Use it.
3667
3668 * gc-mark.c (scm_gc_mark_dependencies): Call scm_i_string_mark,
3669 scm_i_stringbuf_mark and scm_i_symbol_mark, as appropriate.
3670 * gc-card.c (scm_i_sweep_card): Call scm_i_string_free,
3671 scm_i_stringbuf_free and scm_i_symbol_free, as appropriate.
3672
cd505b38
MV
3673 * strop.c (scm_string_copy): Use scm_c_substring to get a
3674 copy-on-write string.
3675
8a807b26
KR
36762004-08-18 Kevin Ryde <user42@zip.com.au>
3677
3678 * arbiters.c (FETCH_STORE): New macro.
3679 (SCM_LOCK_VAL, SCM_UNLOCK_VAL): New constants.
3680 (SCM_LOCK_ARB, SCM_UNLOCK_ARB): Remove, effectively absorbed into
3681 scm_try_arbiter and scm_release_arbiter.
3682 (scm_try_arbiter, scm_release_arbiter): Use FETCH_STORE to get xchg
3683 for speed on i386, otherwise using mutex.
3684
3685 * eq.c (scm_equal_p): Remove real==fraction and fraction==real, they
3686 must be #f according to R5RS. (equal? follows eqv?, and for eqv? an
3687 exact and inexact is #f.)
3688
3689 * fports.c (fport_print): Use scm_ttyname instead of ttyname directly,
3690 to get thread safety of scm_ttyname.
3691
3692 * ports.c (ttyname): Remove prototype, unused.
3693
d6cd4c36 3694 * socket.c (scm_init_socket): Add SOCK_SEQPACKET and SOCK_RDM.
1f3cc0d3 3695 Reported by Michael Tuexen.
d6cd4c36 3696
fa0c0a4b
MV
36972004-08-13 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3698
3699 * load.c (scm_init_load_path): Do not pass NULL to
3700 scm_to_locale_string, which would happen when GUILE_LOAD_PATH is
3701 not set. Thanks to Bill Schottstaedt.
3702
70f7ee41
MV
37032004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3704
3705 * socket.c (scm_inet_aton, scm_inet_pton): Convert SCM strings to
3706 locale strings instead of accessing their internals.
3707 (scm_recv, scm_send, scm_recvfrom, scm_sendto): Use
3708 SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH instead of
3709 SCM_STRING_CHARS and SCM_STRING_LENGTH.
3710
3711 * simpos.c (scm_system): Convert SCM strings to locale strings
3712 instead of accessing their internals.
3713
3714 * script.c (scm_compile_shell_switches): Convert version to locale
3715 string before printing it.
3716
3717 * rdelim.c (scm_read_delimited_x): Avoid
3718 SCM_VALIDATE_SUBSTRING_SPEC_COPY and use scm_from_size_t instead
3719 of scm_from_long for the returned number of read characters.
3720
3721 * ioext.c (scm_fdopen): Use scm_i_fdes_to_port together with
3722 scm_i_mode_bits to avoid accessing internals of SCM string from C.
3723
3724 * filesys.c (STRING_SYSCALL, STRING2_SYSCALL): New helper macros.
3725 Use them instead of SCM_SYSCALL when one or two strings need to be
3726 converted into locale strings.
3727 (my_rename): New, gathers platform dependent code for renaming.
3728 (scm_rename): Use it.
3729 (scm_readlink, scm_copy_file): Convert SCM strings to locale
3730 strings instead of accessing their internals.
3731 (scm_basename, scm_dirname): Use SCM_I_STRING_CHARS and
3732 SCM_I_STRING_LENGTH instead of SCM_STRING_CHARS and
3733 SCM_STRING_LENGTH.
3734
3735 * extensions.c (load_extension): Convert lib and init to locale
3736 strings instead of accessing the internals directly.
3737 (scm_c_load_extension): Use scm_from_locale_string instead of
3738 scm_makfrom0str.
3739
3740 * fports.h, fports.c (scm_i_fdes_to_port): New, like
3741 scm_fdes_to_port, but take mode bits directly instead of as a C
3742 string.
3743 (scm_i_fdes_to_port): Implement using above.
3744 (scm_open_file): Use scm_i_fdes_to_port together with
3745 scm_i_mode_bits to avoid accessing internals of SCM string from C.
3746 * vports.c (scm_make_soft_port): Use scm_i_fdes_to_port together
3747 with scm_i_mode_bits to avoid accessing internals of SCM string
3748 from C.
3749
3750 * ports.h (scm_i_mode_bits): New, same as scm_mode_bits but with a
3751 SCM string as argument.
3752
3753 * ports.c (scm_i_void_port): New, like scm_void_port but take mode
3754 bits directly instead of C string.
3755 (scm_void_port): Implement using above.
3756 (scm_sys_make_void_port): Use scm_i_void_port together with
3757 scm_i_mode_bits to avoid accessing internals of SCM string.
3758
3759 * strings.h, strings.c (scm_i_get_substring_spec): New.
3760
3761 * socket.c, rw.c, deprecated.h, validate.h
3762 (SCM_VALIDATE_STRING_COPY): Deprecated. Replaced all uses with
3763 SCM_VALIDATE_STRING plus SCM_I_STRING_CHARS or
3764 scm_to_locale_string, etc.
3765 (SCM_VALIDATE_SUBSTRING_SPEC_COPY): Deprecated. Replaced as
3766 above, plus scm_i_get_substring_spec.
3767
3768 * regex-posix.c, read.c, random.c, ramap.c, print.c, numbers.c,
3769 hash.c, gc.c, gc-card.c, convert.i.c, backtrace.c, strop.c,
3770 strorder.c, strports.c, struct.c, symbols.c, unif.c, ports.c: Use
3771 SCM_I_STRING_CHARS, SCM_I_STRING_UCHARS, and SCM_I_STRING_LENGTH
3772 instead of SCM_STRING_CHARS, SCM_STRING_UCHARS, and
3773 SCM_STRING_LENGTH, respectively. Also, replaced scm_return_first
3774 with more explicit scm_remember_upto_here_1, etc, or introduced
3775 them in the first place.
3776
3777 * posix.c (WITH_STRING): New helper macro. Use it where one
3778 locale string is needed for a short piece of code.
3779 (STRING_SYSCALL): New helper macro. Use it instead of SCM_SYSCALL
3780 when one locale string is needed.
3781 (scm_mkstemp): Convert tmpl to a locale string.
3782 (scm_putenv): Rewritten to use only C strings.
3783 (scm_setlocale, scm_crpt): Convert argument strings to locale
3784 strings.
3785
37862004-08-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3787
3788 * load.c (scm_primitive_load_path): Do not check for absolute
3789 filenames when scm_sys_search_load_path returns false, which will
3790 return absolute filenames unchanged.
3791
bb26cc2d
MV
37922004-08-11 Marius Vollmer <mvo@zagadka.de>
3793
3794 * gc.c, procprop.c (scm_init_storage, scm_stand_in_procs,
3795 scm_stand_in_proc): Use a hastable for scm_stand_in_procs instead
3796 of an alist. Thanks to Matthias Koeppe!
3797
02573e4c
MV
37982004-08-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3799
3800 * strings.h, deprecated.h (SCM_STRING_COERCE_0TERMINATION_X):
3801 Moved from string.h to deprecated.h.
3802
3803 * deprecated.c, deprecated.h (SCM_CHARS, SCM_LENGTH): Removed.
3804
f9751e86 3805 * strings.h, strings.c (SCM_MAKE_STRING_TAG): Renamed to
02573e4c
MV
3806 SCM_I_MAKE_STRING_TAG, changed all uses.
3807 (SCM_STRING_CHARS, SCM_STRING_UCHARS, SCM_STRING_LENGTH): Renamed
3808 to SCM_I_STRING_CHARS, SCM_I_STRING_UCHARS, and SCM_I_LENGTH
3809 respectively. For a short time, the old names are still there as
3810 aliases. Not all uses have been changed yet, but the ones in
3811 strings.c have.
3812 (SCM_STRING_MAX_LEN): Do not hardcode to 24 bits, compute from
3813 SCM_T_BITS_MAX.
3814 (scm_is_string, scm_from_locale_string, scm_from_locale_stringn,
3815 scm_take_locale_string, scm_take_locale_stringn,
3816 scm_to_locale_string, scm_to_locale_stringn,
3817 scm_to_locale_stringbuf): New.
3818 (scm_c_string2str, scm_c_substring2str): Deprecated by moving to
3819 deprecated.[hc]. Implemented in terms of the new functions above.
3820 (scm_take_str, scm_take0str, scm_mem2string, scm_str2string,
3821 scm_makfrom0str): Reimplemented in terms of the new functions from
3822 above. They will be discouraged shortly.
3823 (scm_substring): Do not use scm_mem2string.
3824 (scm_i_allocate_string_pointers, scm_i_free_string_pointers): New,
3825 to replace similar code from posix.c, simpos.c, and dynl.c.
3826 (scm_string_append): Use memcpy instead of explicit loop. Do not
3827 use register keyword. Use plain 'char' instead of 'unsigned
3828 char'.
3829
3830 * strports.c (scm_mkstrport): Use SCM_I_STRING_UCHARS instead of
3831 SCM_STRING_UCHARS. Use SCM_I_STRINGP instead of SCM_STRINGP.
3832
3833 * strop.c (scm_i_index): Replaced SCM_STRINGP, SCM_STRING_CHARS,
3834 and SCM_STRING_LENGTH with SCM_I_STRINGP, SCM_I_STRING_CHARS, and
3835 SCM_I_STRING_LENGTH, respectively. Pass string object directly,
3836 not as a pointer. Use scm_remember_upto_here_1 to protect it.
3837
3838 * read.c (scm_input_error): Use a SCM value for 'fn', not a C
3839 string. This avoids a conversion round-trip.
3840
3841 * gh_data.c: Replaced SCM_STRINGP, SCM_STRING_CHARS, and
3842 SCM_STRING_LENGTH with SCM_I_STRINGP, SCM_I_STRING_CHARS, and
3843 SCM_I_STRING_LENGTH, respectively.
3844 (gh_scm2newstr): Implement in terms of scm_to_locale_string.
3845
3846 * environments.c: Instead calling scm_puts on the SCM_STRING_CHARS
3847 of a string, call scm_display on the string itself.
3848
3849 * dynwind.c, dynwind.h (scm_frame_free): New.
3850
3851 * stime.c, socket.c, simpos.c, procs.c, posix.c, ports.c,
3852 net_db.c, fports.c, filesys.c, eval.c, deprecation.c, dynl.c:
3853 Replaced uses of SCM_STRING_CHARS with proper uses of
3854 scm_to_locale_string. Replaced SCM_STRINGP with scm_is_string.
3855 Replaced scm_mem2string with scm_from_locale_string.
3856
3857 * simpos.c, posix.c (allocate_string_pointers, environ_list_to_c):
3858 Removed, replaced all uses with scm_i_allocate_string_pointers.
3859
3860 * load.h, load.c (scm_internal_parse_path): Removed.
3861 (scm_parse_path): Use scm_string_split to do the work.
3862 (scm_init_load_path): Use scm_parse_path instead of
3863 scm_internal_parse_path.
3864 (scm_search_path): Rewritten string handling part of the code in
3865 terms of scm_to_locale_stringbuf and so that it is thread safe.
3866
3867 * error.c (scm_error_scm): Throw directly instead of calling
3868 scm_error, this avoids the back and forth conversion of SUBR and
3869 MESSAGE and also plugs a memory leak.
3870 (scm_error): Call scm_error_scm.
3871
3872 * backtrace.c: Replaced SCM_STRINGP with scm_is_string.
3873 (display_header): Print FNAME when it is true, not
3874 merely when it is a string.
3875
3876 * strings.h (SCM_SET_STRING_LENGTH, SCM_SET_STRING_CHARS): Removed
3877 unceremoniously. They were unused by Guile itself, and external
3878 use should stop immediately.
3879
3880
409eb4e5
MV
38812004-08-10 Marius Vollmer <mvo@zagadka.de>
3882
3883 * numbers.h, number.c, deprecated.h, deprecated.c (scm_round,
3884 scm_truncate): Renamed to scm_c_round and scm_c_truncate;
3885 deprecated versions installed in deprecated.h and deprecated.c.
3886 Changed all uses.
3887
a00eaf19
RB
38882004-08-06 Rob Browning <rlb@defaultvalue.org>
3889
3890 * net_db.c (scm_resolv_error): don't cause an exception while
3891 trying to throw an exception -- call scm_misc_error with correct
3892 arguments. The previous arguments needed a format escape that
3893 wasn't in any of the format strings.
3894
bcb88c93
KR
38952004-08-06 Kevin Ryde <user42@zip.com.au>
3896
8f094b97
KR
3897 * ramap.c (scm_array_fill_x): For byvect char fill, force signed char
3898 so as not to depend on signedness of plain char. For byvect range
3899 check, throw out-of-range rather than wrong-type-arg.
3900
bcb88c93
KR
3901 * unif.c (scm_uniform_vector_ref, scm_array_set_x): For byvect, force
3902 signed byte range checks by using scm_to_schar and scm_from_schar,
3903 don't want to depend on signedness of C char.
3904
29e61124
KR
39052004-08-05 Kevin Ryde <user42@zip.com.au>
3906
3907 * arbiters.c (scm_try_arbiter): Use scm_i_misc_mutex instead of
3908 SCM_DEFER_INTS.
3909 (scm_release_arbiter): Use scm_i_misc_mutex so return value can be
3910 guaranteed if multiple threads compete to unlock.
3911 Update docstrings per doc/ref/api-scheduling.texi.
3912
99de794f
KR
3913 * filesys.c (scm_copy_file): Use fstat on the input fd rather than
3914 stat on the filename, to be certain a file rename can't mean we get
3915 info on one filesystem object but open another. This fstat usage is
3916 similar to Emacs copy-file.
3917
29e61124
KR
3918 * posix.c (scm_setgroups): Enhance docstring, per doc/ref/posix.texi.
3919
3920 * simpos.c (scm_system_star): Change scm_from_long to scm_from_int on
3921 SIGINT and SIGQUIT, since those values are ints.
3922
759aa8f9
MV
39232004-08-03 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3924
7241f213
MV
3925 * num2integral.i.c, num2float.i.c: Removed.
3926 * Makefile.am (noinst_HEADERS): Updated.
3927
f9656a9f
MV
3928 * numbers.h. numbers.c (scm_make_ratio): Renamed to
3929 scm_i_make_ratio and made static, replaced uses with scm_divide.
96d8c217
MV
3930 (scm_complex_p): New, export as "complex?" to Scheme.
3931 (scm_number_p): Export as "number?" to Scheme.
3932 (scm_is_complex, scm_is_number): New.
3933 (scm_c_make_rectangular, scm_c_make_polar): New.
3934 (scm_make_rectangular, scm_make_polar): Use above.
3935 (scm_c_real_part, scm_c_imag_part, scm_c_magnitude, scm_c_angle):
3936 New.
3937 (scm_make_complex): Discouraged by moving to discouraged.h and
3938 discouraged.c. Replaced all uses with scm_c_make_rectangular.
3939
759aa8f9
MV
3940 * discouraged.h, discouraged.c, numbers.c, numbers.h
3941 (scm_is_rational): New.
3942 (scm_i_short2big, scm_i_int2big, scm_i_uint2big, scm_i_size2big,
3943 scm_i_ptrdiff2big, scm_i_long_long2big, scm_i_ulong_long2big):
3944 Removed prototypes.
3945 (scm_make_real, scm_num2dbl, scm_float2num, scm_double2num):
3946 Discouraged by moving to discouraged.h and discouraged.c.
3947 Replaced all uses with scm_from_double.
3948 (scm_num2float, scm_num2double): Discouraged by moving prototype
3949 to discouraged.h and rewriting in terms of scm_to_double.
3950 Replaced all uses with scm_to_double.
3951 (scm_to_double): Do not implement in terms of scm_num2dbl, use
3952 explicit code.
3953 (scm_from_double): Do not implement in terms of scm_make_real, use
3954 explicit code.
3955
531bf3e6
MV
39562004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3957
759aa8f9
MV
3958 * init.c (scm_init_guile_1): Call scm_i_init_discouraged.
3959
531bf3e6
MV
3960 * gen-scmconfig.h.in (SCM_I_GSC_ENABLE_DISCOURAGED): New.
3961 * gen-scmconfig.c (SCM_ENABLE_DISCOURAGED): Emit based on above.
3962
3963 * eval.c (SCM_EVALIM, SCM_EVALIM2, SCM_XEVAL, SCM_XEVALCAR):
3964 Renamed to SCM_I_* in order to avoid collisions with the versions
3965 defined in deprecated.h.
3966
3967 * discouraged.h, discouraged.c: New files.
3968
3969 * deprecated.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP, SCM_EQ_P,
3970 SCM_NEGATE_BOOL, SCM_BOOL, SCM_BOOT_NOT): Promoted from being
3971 deprecated to being discouraged by moving to discouraged.h.
3972
3973 * numbers.h, numbers.c, discouraged.h, discouraged.c
3974 (scm_short2num, scm_ushort2num, scm_int2num, scm_uint2num,
3975 scm_long2num, scm_ulong2num, scm_size2num, scm_ptrdiff2num,
3976 scm_num2short, scm_num2ushort, scm_num2int, scm_num2uint,
3977 scm_num2long, scm_num2ulong, scm_num2size, scm_num2ptrdiff,
3978 scm_long_long2num, scm_ulong_long2num, scm_num2long_long,
3979 scm_num2ulong_long): Discouraged by moving to discouraged.h and
3980 discouraged.c and reimplementing in terms of scm_from_* and
3981 scm_to_*. Changed all uses to the new scm_from_* and scm_to_*
3982 functions.
3983
3984 * numbers.h, numbers.c: Removed GUILE_DEBUG code.
3985 (scm_i_short2big, scm_i_ushort2big, scm_i_int2big, scm_i_uint2big,
3986 scm_i_size2big, scm_i_ptrdiff2big): Removed.
3987 (scm_i_long2big, scm_i_ulong2big): New, explicit definitions.
3988 * conv-integer.i.c, conv-uinteger.i.c: Use them instead of
3989 explicit code.
3990
5ec82e96
KR
39912004-08-02 Kevin Ryde <user42@zip.com.au>
3992
3993 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Add comments about past
3994 and current usage and migration.
3995
58f28989
KR
39962004-07-31 Kevin Ryde <user42@zip.com.au>
3997
3998 * error.c (scm_strerror): Use scm_i_misc_mutex around strerror since
3999 it's not thread safe.
4000 (scm_syserror): Use scm_strerror rather than SCM_I_STRERROR, to take
4001 advantage of this.
4002 * fports.c (scm_open_file): Use scm_strerror likewise.
4003 * filesys.c (scm_stat, scm_lstat): Ditto.
4004
4005 * filesys.c (scm_copy_file): Avoid fd leak when destination file
4006 cannot be opened.
4007
4008 * symbols.c (scm_gensym): Use scm_i_misc_mutex around gensym_counter
4009 update, for thread safety.
4010 (gensym_counter): Move into scm_gensym which is its only user.
4011 (scm_init_symbols): No need to explicitly initialize gensym_counter.
4012
03696aab
MV
40132004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4014
51fdb325
MV
4015 * numbers.h (scm_to_schar, scm_to_uchar, scm_to_char,
4016 scm_to_short, scm_to_ushort, scm_to_int, scm_to_uint, scm_to_long,
4017 scm_to_ulong, scm_to_long_long, scm_to_ulong_long, scm_to_intmax,
4018 scm_to_uintmax, scm_to_size_t, scm_to_ssize_t scm_from_schar,
4019 scm_from_uchar, scm_from_char, scm_from_short, scm_from_ushort,
4020 scm_from_int, scm_from_uint, scm_from_long, scm_from_ulong,
4021 scm_from_long_long, scm_from_ulong_long, scm_from_intmax,
4022 scm_from_uintmax, scm_from_size_t, scm_from_ssize_t): No longer
4023 defined in terms of scm_to_signed_integer, etc, but in terms of
4024 scm_to_int8, etc.
4025
4026 * gen-scmconfig.c (SCM_SIZEOF_INTMAX, SCM_SIZEOF_SIZE_T): New.
4027
03696aab
MV
4028 * gen-scmconfig.h.in: Removed SCM_I_GSC_*_LIMITS macros, they are
4029 no longer used.
4030
4031 * __scm.h (SCM_I_UTYPE_MAX, SCM_I_TYPE_MAX, SCM_I_TYPE_MIN,
4032 SCM_I_SIZE_MAX, SCM_I_SSIZE_MIN, SCM_I_SSIZE_MAX): New.
4033
4034 * __scm.h, gen-scmconfig.c (SCM_I_LLONG_MAX, SCM_I_LLONG_MIN,
4035 SCM_I_ULLONG_MAX, SCM_T_INT8_MIN, SCM_T_INT8_MAX, SCM_T_UINT8_MAX,
4036 SCM_T_INT16_MIN, SCM_T_INT16_MAX, SCM_T_UINT16_MAX,
4037 SCM_T_INT32_MIN, SCM_T_INT32_MAX, SCM_T_UINT32_MAX,
4038 SCM_T_INT64_MIN, SCM_T_INT64_MAX, SCM_T_UINT64_MAX,
4039 SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX, SCM_T_UINTMAX_MAX): Moved
4040 definition into __scm.h, using new SCM_I_TYPE_MIN, etc.
4041
4042 * conv-integer.i.c, conv-uinteger.i.c: New files, used to generate
4043 the functions below.
4044
4045 * Makefile.am (noinst_HEADERS): Added conv-integer.i.c and
4046 conv-uinteger.i.c.
4047
4048 * numbers.c, numbers.h (scm_to_int8, scm_to_uint8, scm_to_int16,
4049 scm_to_uint16, scm_to_int32, scm_to_uint32, scm_to_int64,
4050 scm_to_uint64, scm_from_int8, scm_from_uint8, scm_from_int16,
4051 scm_from_uint16, scm_from_int32, scm_from_uint32, scm_from_int64,
4052 scm_from_uint64): Turned from macros into proper functions.
4053 (scm_to_signed_integer, scm_to_unsigned_integer,
4054 scm_from_signed_integer, scm_from_unsigned_integer): Generate via
4055 conv-integer.i.c and conv-uinteger.i.c, as well.
4056
4057 * number.h (scm_to_ssize_t, scm_to_size_t): Use the new
4058 SCM_I_SSIZE_MIN, SCM_I_SSIZE_MAX, and SCM_I_SIZE_MAX macros for
4059 the limits. Those are always defined.
4060
1f15779e
KR
40612004-07-29 Kevin Ryde <user42@zip.com.au>
4062
4063 * posix.c (scm_ttyname): Use scm_i_misc_mutex for thread safety.
4064
48360eb3
KR
40652004-07-28 Kevin Ryde <user42@zip.com.au>
4066
4067 * posix.c (scm_ctermid): Use an L_ctermid buf on the stack, for thread
4068 safety.
4069
c3f3c841
KR
4070 * unif.c (scm_array_set_x): For svect, use scm_num2short for
4071 consistency with other vector types and to get arg and func name into
4072 error message.
4073
c82f8ed6
MV
40742004-07-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4075
4076 * deprecated.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP, SCM_BOOL):
4077 Reimplement using scm_is_false, scm_is_true, scm_is_bool, and
4078 scm_from_bool, respectively.
4079 (SCM_NINUMP): Added.
4080
4081 * tags.h, deprecated.h (SCM_EQ_P): Deprecated by moving it into
4082 deprecated.h. Replaced all uses with scm_is_eq.
4083
317b4c4a
KR
40842004-07-24 Kevin Ryde <user42@zip.com.au>
4085
4086 * threads.c, threads.h (scm_i_misc_mutex): New SCM_GLOBAL_MUTEX.
4087 * posix.c (scm_crypt): Use it to protect static data in crypt().
4088
e11e83f3
MV
40892004-07-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4090
4091 * deprecated.h, deprecated.c, numbers.h (SCM_INUMP, SCM_NINUMP,
c82f8ed6 4092 SCM_INUM): Deprecated by renaming them to SCM_I_INUMP,
e11e83f3
MV
4093 SCM_I_NINUMP and SCM_I_INUM, respectively and adding deprecated
4094 versions to deprecated.h and deprecated.c. Changed all uses to
4095 either use the SCM_I_ variants or scm_is_*, scm_to_*, or
4096 scm_from_*, as appropriate.
4097
4098 * dynwind.c (scm_i_dowinds): Removed unused code that would call
4099 the unexisting scm_cross_dynwind_binding_scope for inums on the
4100 windlist.
4101
a55c2b68
MV
41022004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4103
4104 * socket.c (ipv6_net_to_num, scm_from_ipv6): Renamed
e11e83f3 4105 ipv6_net_to_num to scm_from_ipv6, for converting from an IPv6
a55c2b68
MV
4106 byte-wise address to a SCM integer. Changed all uses.
4107 (ipv6_num_to_net, scm_to_ipv6): Renamed ipv6_num_to_net to
4108 scm_to_ipv6 and added type and range checking, for converting from
4109 an IPv& byte-wise address to a SCM integer. Changed all uses.
4110 (bignum_in_ipv6_range_p, VALIDATE_INET6): Removed, their function
4111 is now done by scm_to_ipv6.
4112
4113 * numbers.c (scm_to_signed_integer, scm_to_unsigned_integer): dot
4114 not accept inexact integers.
4115
4116 * validate.h, deprecated.h (SCM_VALIDATE_INUM,
4117 SCM_VALIDATE_INUM_COPY, SCM_VALIDATE_BIGINT,
4118 SCM_VALIDATE_INUM_MIN, SCM_VALIDATE_INUM_MIN_COPY,
4119 SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
4120 SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
4121 SCM_VALIDATE_INUM_RANGE_COPY): Deprecated because they make the
4122 fixnum/bignum distinction visible. Changed all uses to
4123 scm_to_size_t or similar.
4124
41252004-07-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4126
4127 * cpp_cnvt.awk: Use scm_from_int instead of SCM_MAKINUM.
4128
48a06bd5
KR
41292004-07-10 Kevin Ryde <user42@zip.com.au>
4130
4131 * hash.c (scm_hashq, scm_hashv, scm_hash): Restrict to size>=1 rather
4132 than size>=0, since 0<=hash<size cannot be satisfied for size==0, and
4133 such a size causes divide-by-zeros in scm_hasher.
4134
052fbfd9
KR
4135 * regex-posix.c (scm_make_regexp): Free rx on error, to avoid memory
4136 leak.
4137
43240c9c
MV
41382004-07-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4139
4140 * numbers.c (scm_is_signed_integer, scm_is_unsigned_integer):
4141 Rewritten using the same logic as scm_to_signed_integer and
4142 scm_to_unsigned_integer, respectively, which is better(tm). Also,
4143 use CHAR_BIT instead of hardcoding 8.
4144 (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Removed and used
4145 SCM_I_LLONG_MIN etc. instead.
4146
4147 * numbers.h (SCM_MAKINUM, SCM_I_MAKINUM): Renamed SCM_MAKINUM to
4148 SCM_I_MAKINUM and changed all uses.
4149 * deprecated.h, deprecated.c (SCM_MAKINUM): Newly deprecated.
4150
a3de8e7b
MV
4151 * gen-scmconfig.c (SCM_I_LLONG_MIN, SCM_I_LLONG_MAX,
4152 SCM_I_ULLONG_MAX): Instead of hard-coding the numbers, compute
43240c9c
MV
4153 them by assuming twos-complement.
4154
c9eb03bb
MV
41552004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4156
4157 * gen-scmconfig.h.in: Added all the new SCM_I_GSC_*_LIMITS that
4158 configure now produces.
4159 * gen-scmconfig.c: Use them to output SCM_T_INT8_MIN, etc
4160 definitions, giving the limits of the integer types defined by
4161 Guile. Also, output a hard coded SCM_I_LLONG_MIN, etc since
4162 LLONG_MIN or LONG_LONG_MIN is hard to get at.
4163
4164 * numbers.h (scm_to_short, scm_to_ushort): It's SHRT_MIN, etc, not
4165 SHORT_MIN.
4166 (scm_to_size_t): Use SIZE_MAX instead of cooking our own.
4167 (scm_to_long_long, scm_to_ulong_long, scm_to_int8, scm_to_uint8,
4168 scm_to_int16, scm_to_uint16, scm_to_int32, scm_to_uint32,
4169 scm_to_int64, scm_to_uint64, scm_to_intmax, scm_to_uintmax,
4170 scm_from_long_long, scm_from_ulong_long, scm_from_int8,
4171 scm_from_uint8, scm_from_int16, scm_from_uint16, scm_from_int32,
4172 scm_from_uint32, scm_from_int64, scm_from_uint64, scm_from_intmax,
4173 scm_from_uintmax): New.
4174
7888309b
MV
41752004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4176
4177 * tags.h (scm_is_eq): New.
4178
4179 * deprecated.h, boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,
4180 SCM_NEGATE_BOOL, SCM_BOOLP): Deprecated by moving into
4181 "deprecated.h". Replaced all uses with scm_is_false, scm_is_true,
4182 scm_from_bool, and scm_is_bool, respectively.
4183
4184 * boolean.h (scm_is_bool): Fix bug in prototype.
4185 (scm_from_bool): The argument is "x" not "f", stupid.
4186
4187 * boolean.c (scm_is_bool): Fix typo.
4188
4189 * numbers.h, numbers.c (scm_is_integer, scm_is_signed_integer,
4190 scm_is_unsigned_integer, scm_to_signed_integer,
4191 scm_to_unsigned_integer, scm_to_schar, scm_to_uchar, scm_to_char,
4192 scm_to_short, scm_to_ushort, scm_to_long, scm_to_ulong,
4193 scm_to_size_t, scm_to_ssize_t, scm_from_schar, scm_from_uchar,
4194 scm_from_char, scm_from_short, scm_from_ushort, scm_from_int,
4195 scm_from_uint, scm_from_long, scm_from_ulong, scm_from_size_t,
4196 scm_from_ssize_t, scm_is_real, scm_to_double, scm_from_double):
4197 New.
4198
800570a6
MV
41992004-07-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4200
4201 * boolean.h, boolean.c (scm_is_true, scm_is_false, scm_from_bool,
4202 scm_to_bool): New.
4203
9fcf3cbb
DH
42042004-06-27 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4205
4206 * backtrace.c (display_expression, display_frame): Call
4207 scm_i_unmemoize_expr for unmemoizing a memoized object holding a
4208 single memoized expression.
4209
4210 * debug.c (memoized_print): Don't try to unmemoize the memoized
4211 object, since we can't know whether it holds a single expression
4212 or a body.
4213
4214 (scm_mem_to_proc): Removed check for lambda expression, since it
4215 was moot anyway. Whoever uses these functions for debugging
4216 purposes should know what they do: Creating invalid memoized code
4217 will cause crashes, independent of whether this check is present
4218 or not.
4219
4220 (scm_proc_to_mem): Take the closure's code as it is and don't
4221 append a SCM_IM_LAMBDA isym. To allow easier debugging, the
4222 memoized code should not be modified.
4223
4224 * debug.[ch] (scm_unmemoize, scm_i_unmemoize_expr): Removed
4225 scm_unmemoize from public use, but made scm_i_unmemoize_expr
4226 available as a guile internal function instead. However,
4227 scm_i_unmemoize_expr will only work on memoized objects that hold
4228 a single memoized expression. It won't work with bodies.
4229
4230 * debug.c (scm_procedure_source), macros.c (macro_print), print.c
4231 (scm_iprin1): Call scm_i_unmemocopy_body for unmemoizing a body,
4232 i. e. a list of expressions.
4233
4234 * eval.c (unmemoize_exprs): Drop internal body markers from the
4235 output during unmemoization.
4236
4237 * eval.[ch] (scm_unmemocopy, scm_i_unmemocopy_expr,
4238 scm_i_unmemocopy_body): Removed scm_unmemocopy from public use,
4239 but made scm_i_unmemocopy_expr and scm_i_unmemocopy_body available
4240 as guile internal functions instead. scm_i_unmemoize_expr will
4241 only work on a single memoized expression, while
4242 scm_i_unmemocopy_body will only work on bodies.
4243
90df793f
DH
42442004-06-21 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4245
4246 * eval.c (unmemoize_exprs): Handle semi-memoized code.
4247
4248 (scm_cons_source, scm_primitive_eval): Prefer higher level
4249 predicate SCM_FALSEP over SCM_IMP.
4250
8048c00b
RB
42512004-06-15 Rob Browning <rlb@defaultvalue.org>
4252
4253 * script.c (scm_shell_usage): minor phrasing change.
4254
4255 * gc_os_dep.c: update ifdefery for macosx.
4256 (scm_get_stack_base): separate result initialization from
4257 declaration to slience warnings with macosx and hp-ux using gcc
9a5fa6e9 4258 3.3. Thanks to Andreas Vögele.
8048c00b 4259
d93294d4
HWN
42602004-06-13 Han-Wen Nienhuys <hanwen@xs4all.nl>
4261
4262 * eval.c (unmemoize_exprs): use SCM_CONSP for the loop condition.
4263
212e58ed
DH
42642004-06-06 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4265
4266 * list.[ch] (scm_i_finite_list_copy): New internal function to
4267 copy lists that are known to be finite (though not necessarily
4268 proper).
4269
4270 * debug.c (scm_procedure_source): Don't have scm_unmemocopy treat
4271 a closure's argument list like an expression of a body.
4272
4273 * eval.c (unmemoize_expression, unmemoize_exprs, unmemoize_and,
4274 unmemoize_begin, unmemoize_case, unmemoize_cond, unmemoize_delay,
4275 unmemoize_do, unmemoize_if, unmemoize_lambda, unmemoize_let,
4276 unmemoize_letrec, unmemoize_letstar, unmemoize_or,
4277 unmemoize_set_x, unmemoize_apply, unmemoize_atcall_cc,
4278 unmemoize_at_call_with_values, unmemoize_future, sym_atslot_ref,
4279 unmemoize_atslot_ref, sym_atslot_set_x, unmemoize_atslot_set_x,
4280 unmemoize_builtin_macro): New static functions and symbols.
4281
4282 (scm_unmemocopy): Rewritten in terms of the above. scm_unmemocopy
4283 now has a slightly different meaning: The memoized form that is
4284 receives as its argument is now interpreted as a sequence of
4285 expressions from a body.
4286
4287 (unmemocar, scm_unmemocar): Since the whole functionality of
4288 unmemocar and scm_unmemocar is not needed any more, scm_unmemocar
4289 has its old content back and is deprecated, while unmemocar has
4290 been removed.
4291
4292 (SCM_BIT7): Removed.
4293
4294 (CEVAL): For unmemoizing a single expression, call
4295 unmemoize_expression instead of scm_unmemocopy, which now expects
4296 a sequence of body expressions. Eliminated unnecessary empty
4297 environment frame when executing let* forms. Eliminated
4298 unmemoization step from evaluator.
4299
9ccea370
MV
43002004-06-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4301
4302 * eval.c (scm_macroexp, macroexp): Renamed scm_macroexp to
4303 macroexp and made static. Added new version of scm_macroexp that
4304 emits a deprecation warning and then calls macroexp.
4305 (scm_m_undefine): Issue deprecation warning.
4306
57d23e25
DH
43072004-05-30 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4308
4309 * eval.c (lookup_global_symbol, literal_p, try_macro_lookup):
4310 Modified to make set! work on symbols that represent syntactic
4311 keywords.
4312
141521ad
HWN
43132004-05-26 Han-Wen Nienhuys <hanwen@xs4all.nl>
4314
4315 * gc.h (SCM_CELL_OBJECT_LOC): use SCM_GC_CELL_OBJECT to prevent
4316 compound expression as lvalue errors.
4317
7c2f56a4
MV
43182004-05-24 Marius Vollmer <mvo@zagadka.de>
4319
4320 * dynwind.c (winder_mark): Use SCM_PACK to correctly convert the
4321 WINDER_DATA to a SCM.
4322
366ecaec
DH
43232004-05-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4324
4325 * goops.c (compute_getters_n_setters, create_standard_classes,
4326 scm_add_slot): Compute closures by calling scm_i_eval_x on a
4327 lambda expression rather than creating them with scm_closure.
4328
26ecfa39
DH
43292004-05-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4330
4331 * eval.c (s_macro_keyword, scm_m_set_x): Remove checking for
4332 misplaced syntactic keywords. This will not work unless guile's
4333 defmacro feature is deprecated.
4334
4335 (scm_m_case): Fixed a bug that caused the list of labels to grow
4336 with every case form.
4337
f865229a
KR
43382004-05-19 Kevin Ryde <user42@zip.com.au>
4339
4340 * numbers.c (scm_round_number): For inum and big, just return x. For
4341 real, use scm_round for 2^54-1 etc problems covered there.
4342
4343 * numbers.c (trunc): Remove #define to scm_truncate when the C library
4344 doesn't provide trunc. This was for when `truncate' was done as a
4345 scm_tc7_dsubr, no longer required.
4346
4347 * threads.c (scm_threads_mark_stacks) [SCM_STACK_GROWS_UP]: Correction
4348 to stack marking call, two parameters and no cast on t->base.
4349
63947c7a
MV
43502004-05-18 Marius Vollmer <mvo@zagadka.de>
4351
4352 * hashtab.c (rehash_after_gc): Bug fix: properly link the
4353 processed hashtables back into the weak_hashtables list. Thanks
4354 to Bill Schottstaedt!
4355
e7313a9d
DH
43562004-05-16 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4357
4358 * eval.c (unmemoize_quote): New static function.
4359
4360 (scm_m_quote, scm_m_atslot_ref, SCM_CEVAL): Changed the byte code
4361 representation of 'quote' and '@slot-ref' to an improper list.
4362 This reduces execution time, the number of cells used to hold the
4363 memoized code, and thus also reduces garbage collection time.
4364
4365 (scm_unmemocopy): Use unmemoize_quote for quote expressions.
4366
4367 (SCM_CEVAL): Changed macro handling to also work with macros that
4368 return improper lists. Added an assertion, that the code returned
4369 by a macro transformer will not lead to cycles in the memoized
4370 code.
4371
e5156567
DH
43722004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4373
4374 No functional change, just rearrangements of functions within the
4375 file.
4376
4377 * eval.c (scm_ilookup, scm_unbound_variable_key,
4378 error_unbound_variable, scm_lookupcar1, scm_lookupcar): Moved to
4379 the definitions used for execution, since that's where they will
4380 belong to later.
4381
651f07f8
DH
43822004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4383
4384 * numbers.h (SCM_SLOPPY_FRACTIONP): Removed. It was not used
4385 throughout guile, has not been part of an official release yet,
4386 and the concept of sloppy predicates has never been a good idea.
4387
4388 (SCM_FRACTION_NUMERATOR, SCM_FRACTION_DENOMINATOR,
4389 SCM_FRACTION_SET_NUMERATOR, SCM_FRACTION_SET_DENOMINATOR):
4390 Simplified.
4391
770e048f
DH
43922004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4393
4394 * throw.c (SETJBJMPBUF, SCM_SETJBDFRAME): Add cast to scm_t_bits
4395 to make explicit what happens.
4396
2ff08405
DH
43972004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4398
4399 * dynl.c (SET_DYNL_HANDLE): Add cast to scm_t_bits to make
4400 explicit what happens.
4401
4402 * guardians.c (TCONC_IN): Use SCM_SET_CELL_OBJECT_x rather than
4403 SCM_SET_CELL_WORD_x when writing scheme objets to cell elements.
4404
89afb9cd
MV
44052004-05-11 Marius Vollmer <mvo@zagadka.de>
4406
4407 * scmsigs.c (scm_sigaction_for_thread): Validate that the handler
4408 is indeed a procedure when it isn't a number.
4409
3d5ebfa9
MV
44102004-05-10 Marius Vollmer <mvo@zagadka.de>
4411
4412 Convert floating point numbers into strings with an arbitrary
4413 radix. Thanks to Richard Todd!
4414
4415 * numbers.c (FLOBUFLEN): Increase so that radix 2 strings will
4416 fit.
4417 (fx): Removed.
4418 (scm_dblprec, fx_per_radix, init_dblprec, init_fx_radix,
4419 number_chars): New, to support variable radices.
4420 (idbl2str): Use above instead of the old base-10 only tables.
4421 (iflo2str): Pass on new RADIX argument to idbl2str.
4422 (scm_number_to_string): Pass radix to iflo2str.
4423 (scm_print_real, scm_print_complex): Explicitly pass radix 10 to
4424 iflo2str.
4425 (scm_init_numbers): Call init_dblprec and init_fx_radix for all
4426 possible radices.
4427
3ae69bb4
KR
44282004-05-10 Kevin Ryde <user42@zip.com.au>
4429
4430 * numbers.c (scm_logbit_p): Correction to test above the end of an
4431 inum. Reported by Jan Konecny.
4432
27968825
MV
44332004-05-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4434
4435 * gc.h (scm_t_cell): Fields are now of type SCM instead of
4436 scm_t_bits. Updated all users.
4437 (SCM_GC_CARD_SIZE_MASK): Use SCM_GC_SIZEOF_CARD instead of
4438 duplicating the code.
4439 (SCM_CELL_OBJECT_LOC): New.
4440 (SCM_CARLOC, SCM_CDRLOC): Use it instead of SCM_CELL_WORD_LOC.
4441 (SCM_CELL_WORD_LOC): Moved to "deprecated.h".
4442
4443 * smob.h (SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, SCM_SMOB_FLAGS,
4444 SCM_SET_SMOB_DATA_2, SCM_SET_SMOB_DATA_3, SCM_SET_SMOB_FLAGS,
4445 SCM_SMOB_OBJECT, SCM_SMOB_OBJECT_2, SCM_SMOB_OBJECT_3,
4446 SCM_SET_SMOB_OBJECT, SCM_SET_SMOB_OBJECT_2, SCM_SET_SMOB_OBJECT_3,
4447 SCM_SMOB_OBJECT_LOC, SCM_SMOB_OBJECT_2_LOC,
4448 SCM_SMOB_OBJECT_3_LOC): New.
4449 * smob.c (scm_i_set_smob_flags): New function.
4450
4451 * dynl.c, dynwind.c, eval.h, fluids.h, futures.h, hashtab.h,
4452 hooks.h, keywords.h, macros.h, macros.c, mallocs.c, mallocs.h,
4453 random.h, regex-posix.h, root.h, srcprop.h, srcprop.c, threads.h:
4454 Use SCM_SMOB_* instead of SCM_CELL_* as appropriate. Use
4455 SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS instead of accessing the
4456 zeroth word directly. Use SCM_SMOB_PREDICATE as appropriate.
4457
4458 * numbers.h (SCM_I_BIG_MPZ): Use SCM_CELL_OBJECT_LOC instead of
4459 taking the address of SCM_CELL_WORD_1, the latter being no longer
4460 an lvalue.
4461
4462 * variable.h (SCM_VARIABLE_LOC): Use SCM_CELL_OBJECT_LOC instead
4463 of casting SCM_CELL_WORD_LOC.
4464
3cf17ef0
KR
44652004-05-02 Kevin Ryde <user42@zip.com.au>
4466
37026925 4467 * eval.c (scm_macroexp): Add prototype, since it's not in eval.h under
9a5fa6e9 4468 --disable-deprecated. Reported by Andreas Vögele.
37026925 4469
3cf17ef0 4470 * filesys.c (_POSIX_C_SOURCE): Define to 199506L to get readdir_r (in
9a5fa6e9 4471 particular on HP-UX). Reported by Andreas Vögele.
3cf17ef0 4472
c5854598
KR
4473 * list.c (varargs.h): Remove, leave just stdarg.h which is all the
4474 code has support for. Fixes building with AIX cc, which is ansi but
4475 doesn't define __STDC__. Reported by Keith Crane.
4476 (var_start): Remove macro, this variation no longer required.
4477 (scm_list_n): Use va_start directly.
4478
f26c1a32
KR
44792004-05-01 Kevin Ryde <user42@zip.com.au>
4480
4481 * continuations.c (scm_dynthrow): Use >= instead of SCM_PTR_GE which
9a5fa6e9 4482 is now gone. Reported by Andreas Vögele.
f26c1a32 4483
dfa6017e
KR
44842004-04-28 Kevin Ryde <user42@zip.com.au>
4485
4486 * backtrace.c (display_frame_expr), numbers.c (XDIGIT2UINT,
4487 mem2uinteger, mem2decimal_from_point, mem2ureal): Cast char to int for
4488 ctype.h tests, to avoid warnings from gcc on HP-UX about char as array
9a5fa6e9 4489 subscript. Reported by Andreas Vögele.
dfa6017e
KR
4490 Also cast through unsigned char to avoid passing negatives to those
4491 macros if input contains 8-bit values.
4492
4493 * num2integral.i.c (NUM2INTEGRAL): Under non-BIGMPZ_FITSP case,
4494 corrections to range check for signed numbers. Remove
4495 scm_remember_upto_here_1(num) from these checks, since num is used
4496 subsequently anyway.
4497
4498 * num2integral.i.c (NUM2INTEGRAL): Test BIGMPZ_FITSP with "!= 0" to
4499 avoid warning from gcc 3.4. Reported by Hyperdivision.
4500
4501 * numbers.c (scm_bit_extract): Use min instead of MIN.
4502 (MIN): Remove, this conflicts with similar macro defined by limits.h
9a5fa6e9 4503 on HP-UX. Reported by Andreas Vögele.
dfa6017e
KR
4504
4505 * stime.c (_POSIX_C_SOURCE): Define to 199506L to get gmtime_r (in
9a5fa6e9 4506 particular on HP-UX). Reported by Andreas Vögele.
dfa6017e 4507
a0d06a00 4508 * threads.c (scm_threads_mark_stacks): Correction sizet -> size_t.
9a5fa6e9 4509 Reported by Andreas Vögele.
a0d06a00 4510
dfa6017e
KR
4511 * threads-plugin.h (SCM_MUTEX_MAXSIZE): Increase to 25*sizeof(long),
4512 for the benefit of hpux11 where pthread_mutex_t is 88 bytes. Reported
9a5fa6e9 4513 by Andreas Vögele.
dfa6017e 4514
36245b66
DH
45152004-04-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4516
4517 * eval.c (s_macro_keyword): New static identifier.
4518
4519 (scm_m_define): Change order to first create binding and
4520 evaluating the expression afterwards.
4521
4522 (scm_m_set_x): Memoize complete set! expression. Only leave
4523 symbols if no binding exists at memoization time. Throw error if
4524 assigning to a syntactic keyword.
4525
4526 (lazy_memoize_variable): New function.
4527
4528 (CEVAL): When execution set!, perform lazy memoization if
4529 unmemoized symbol is detected.
4530
4531 * modules.c (module_variable): Return variables with unbound
4532 value.
4533
4534 * tags.h: Fix comment.
4535
4d81111e
KR
45362004-04-25 Kevin Ryde <user42@zip.com.au>
4537
da8bcb2f
KR
4538 * chars.c (scm_char_upcase, scm_char_downcase, scm_c_upcase,
4539 scm_c_downcase): Use ctype.h toupper and tolower. This will be useful
4540 in 8-bit locales, and ensures consistency with char-upper-case? and
4541 char-lower-case? which already use ctype.h.
4542 (scm_c_upcase_table, scm_c_downcase_table, scm_lowers, scm_uppers):
4543 Remove.
4544 * chars.c, chars.h, init.c (scm_tables_prehistory): Remove.
4545
4d81111e
KR
4546 * socket.c (VALIDATE_INET6): Correction to bignum_in_ipv6_range_p
4547 call. Reported by Hyperdivision.
4548
4549 * threads.c (scm_yield): Correction, actually call scm_thread_yield.
4550 Reported by Hyperdivision.
4551
4552 * unif.c (s_scm_make_uve): Remove unused local variable. Reported by
4553 Hyperdivision.
4554
7e6e6b37
DH
45552004-04-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4556
4557 Hide the implementation of ilocs and isyms in eval.c.
4558
4559 * deprecated.h (SCM_IFRINC, SCM_ICDR, SCM_IFRAME, SCM_IDIST,
4560 SCM_ICDRP), eval.c (SCM_IFRINC, SCM_ICDR, SCM_IFRAME, SCM_IDIST,
4561 SCM_ICDRP), eval.h (SCM_ICDR, SCM_IFRINC, SCM_IFRAME, SCM_IDIST,
4562 SCM_ICDRP): Deprecated and added to deprecated.h. Moved from
4563 eval.h to eval.c.
4564
4565 * deprecated.c (scm_isymnames), deprecated.h (scm_isymnames,
4566 SCM_ISYMNUM, SCM_ISYMCHARS), eval.c (SCM_ISYMNUM, isymnames,
4567 scm_unmemocopy, CEVAL), print.c (scm_isymnames), tags.h
4568 (SCM_ISYMNUM, scm_isymnames, SCM_ISYMCHARS): Deprecated
4569 scm_isymnames, SCM_ISYMNUM and SCM_ISYMCHARS and added to
4570 deprecated.[hc]. Moved scm_isymnames from print.c to eval.c and
4571 renamed to isymnames. Moved SCM_ISYMNUM from tags.h to eval.c and
4572 renamed to ISYMNUM.
4573
4574 * eval.c (scm_i_print_iloc, scm_i_print_isym), eval.h
4575 (scm_i_print_iloc, scm_i_print_isym), print.c (scm_iprin1):
4576 Extracted printing of ilocs and isyms to guile internal functions
4577 scm_i_print_iloc, scm_i_print_isym of eval.c.
4578
caab294f
KR
45792004-04-22 Kevin Ryde <user42@zip.com.au>
4580
7aaf4758
KR
4581 * numbers.c (scm_bit_extract): Use SCM_SRS for signed right shift.
4582
caab294f
KR
4583 * numbers.c (scm_round): Test for x already an integer, to avoid bad
4584 rounding in x+0.5 when x is a big value already an integer. In
4585 certain hardware rounding cases x+0.5 can give an adjacent integer,
4586 leading to that as the result, when we really just wanted x itself.
4587
b1cb24ff
DH
45882004-04-19 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4589
4590 * eval.c (scm_unmemocopy): Fixed unmemoization of let*.
4591
4592 (deval_args, CEVAL): Minor improvements: Reduced variable scopes,
4593 added const qualifiers, cast intentionally unused expressions to
4594 void for emphasis, improved comment.
4595
5065b40d
DH
45962004-04-18 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4597
4598 * tags.h (scm_tags, scm_tc8_tags, scm_tc9_flag, scm_tc8_flag,
4599 scm_tc8_isym): Renamed scm_tags to scm_tc8_tags. Renamed
4600 scm_tc9_flag to scm_tc8_flag. Introduced new identifier
4601 scm_tc8_isym. Defined tc8-tags relative to scm_tc3_imm24.
4602 Defined the tc8-tag for flags to be 0x04, which will mean that
4603 SCM_BOOL_F will also have the value 0x04 instead of 0x013c. Due
4604 to the reduced number of bits and the simpler bit pattern for
4605 SCM_BOOL_F, certain machines may be able to use more efficient
4606 processor instructions to deal with SCM_BOOL_F.
4607
4608 (SCM_ITAG9, SCM_MAKE_ITAG9, SCM_ITAG9_DATA): Removed. These have
4609 never been defined in a released version, thus no need to
4610 deprecate them.
4611
4612 (SCM_IFLAGP, SCM_MAKIFLAG, SCM_IFLAGNUM): Flags now use tc8
4613 instead of tc9 tags.
4614
4615 (SCM_ISYMP, SCM_MAKISYM, SCM_ISYMNUM): Isyms now use tc8 instead
4616 of tc9 tags.
4617
4618 (SCM_MAKSPCSYM): Removed. It is almost impossible that user code
4619 could have used this definition.
4620
4621 (SCM_IM_AND, SCM_IM_BEGIN, SCM_IM_CASE, SCM_IM_COND, SCM_IM_DO,
4622 SCM_IM_IF, SCM_IM_LAMBDA, SCM_IM_LET, SCM_IM_LETSTAR,
4623 SCM_IM_LETREC, SCM_IM_OR, SCM_IM_QUOTE, SCM_IM_SET_X): Now encoded
4624 as isyms, as special isyms don't exist any more.
4625
9fa6c119
KR
46262004-04-18 Kevin Ryde <user42@zip.com.au>
4627
e08d2eee
KR
4628 * filesys.c (scm_readdir): Use readdir_r when available, for thread
4629 safety.
4630
9fa6c119
KR
4631 * numbers.c (scm_max, scm_min): For big/real, use SCM_SWAP rather than
4632 explicit swapping code.
4633
c9cdd396
KR
46342004-04-15 Kevin Ryde <user42@zip.com.au>
4635
4636 * cpp_sig_symbols.in: Add SIGSYS.
4637
4638 * list.c (scm_append_x): Use iterative style, to avoid non-tail
4639 recursion.
4640
4641 * numbers.c (scm_max, scm_min): For inum/frac, frac/inum, big/frac,
4642 frac/big and frac/frac, use scm_less_p for exact comparison.
4643
83ac9c59
KR
4644 * numbers.c (scm_gcd): For inum/big, use mpz_gcd_ui by sharing code
4645 with big/inum.
4646
84a4be9a
KR
4647 * numbers.c (xisinf): Add a comment about solaris 7 lacking isinf.
4648
84fad130
HWN
46492004-04-06 Han-Wen Nienhuys <hanwen@xs4all.nl>
4650
6b69393d
HWN
4651 * inline.h (scm_cell): use SCM_GC_CELL_WORD for checking tag.
4652
84fad130
HWN
4653 * chars.h (scm_init_chars): change scm_{upcase,downcase} to
4654 scm_c_{up,down}case.
4655 (SCM_MAKE_CHAR): add (unsigned char) cast. This prevents havoc
4656 when hi-bit ASCII is subjected to SCM_MAKE_CHAR().
4657
c3110a30
KR
46582004-04-06 Kevin Ryde <user42@zip.com.au>
4659
0b288f36
KR
4660 * numbers.c (scm_ash): Remove stray "}" in docstring.
4661
ea2508c8
KR
4662 * numbers.c (scm_make_ratio): For inum/bignum integer detection, use
4663 x==SCM_MOST_NEGATIVE_FIXNUM explicitly, for clarity and to avoid
4664 calling mpz_cmp_ui in most cases.
4665
c3110a30
KR
4666 * numbers.c (scm_quotient, scm_remainder): In inum/big, use mpz_cmp_ui
4667 for big == abs(most-negative-fixnum) special case.
4668 (abs_most_negative_fixnum): Remove, no longer used.
4669
4670 * scmsigs.c (scm_sigaction_for_thread): Correction to signum range
4671 test, avoids SCM_VECTOR_REF outside bounds of signal_handlers on
4672 calling (sigaction NSIG).
4673
4674 * simpos.c (scm_system_star): Fix execargv memory leak, merge parent
4675 and fork error cases to do this.
4676
dec40cd2
DH
46772004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4678
4679 * eval.c (CEVAL): Don't distinguish between short and long
4680 instructions when dispatching - just always dispatch on the
4681 instruction code, which is common for short and long instructions.
4682 Further, removed unnecessary goto statements and added comment.
4683
0e7bb795
DH
46842004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4685
4686 * eval.c (scm_unmemocopy): Don't distinguish between short and
4687 long instructions when dispatching - just always dispatch on the
4688 instruction code, which is common for short and long instructions.
4689 Further, removed unnecessary goto statements, fixed indentation
4690 and replaced SCM_IMP predicates by SCM_NULLP.
4691
f9986767
DH
46922004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4693
4694 * eval.c (scm_lookupcar1, CEVAL): Use SCM_ILOCP instead of
4695 comparison with SCM_ILOC00. In CEVAL, eliminate goto-label
4696 'checkmacro'.
4697
fbc42231
KR
46982004-03-31 Kevin Ryde <user42@zip.com.au>
4699
4700 * simpos.c: Include <signal.h> for SIG_IGN and friends.
4701
434f2f7a
DH
47022004-03-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4703
4704 Introduce scm_debug_mode_p as a replacement for scm_debug_mode and
4705 SCM_DEBUGGINGP:
4706
4707 * debug.h (scm_debug_mode_p, scm_debug_mode, SCM_DEBUGGINGP),
4708 eval.c (scm_debug_mode_p): Deprecated scm_debug_mode and
4709 SCM_DEBUGGINGP. Provided scm_debug_mode_p instead, to have one
4710 single interface that also matches the naming conventions.
4711 Probably scm_debug_mode_p should be part of the private interface
4712 anyway.
4713
4714 * debug.h (scm_debug_mode_p), backtrace.c (display_error_body),
4715 eval.c (SCM_APPLY, scm_trampoline_0, scm_trampoline_1,
4716 scm_trampoline_2): Change uses of scm_debug_mode or SCM_DEBUGGINGP
4717 to scm_debug_mode_p.
4718
4719
4720 Deprecate direct access to scm_ceval, scm_deval and scm_ceval_ptr:
4721
4722 * eval.h (scm_ceval, scm_deval, scm_ceval_ptr), debug.h
4723 (scm_ceval_ptr): Deprecated. Moved declaration of scm_ceval_ptr
4724 from debug.h to eval.h.
4725
4726 * debug.h (SCM_RESET_DEBUG_MODE): Don't access scm_ceval_ptr any
4727 more, just leave it with setting scm_debug_mode_p, which is
4728 equivalent for practical purposes.
4729
4730 * deprecated.h (SCM_XEVAL, SCM_XEVALCAR): Call scm_i_eval_x
4731 instead of *scm_ceval_ptr. Leave all evaluating to scm_i_eval_x.
4732
4733 * gdbint.c (gdb_eval): Call scm_i_eval_x instead of scm_ceval.
4734
4735 * eval.c (ceval, deval, scm_ceval, scm_deval): Made scm_ceval
4736 static and renamed it to ceval throughout. Provide a new exported
4737 but deprecated function scm_ceval as a wrapper for backwards
4738 compatibility. The same is done for the deval/scm_deval pair of
4739 functions.
4740
4741 * eval.c (CEVAL, SCM_CEVAL): Renamed SCM_CEVAL to CEVAL
4742 throughout. Defined CEVAL to ceval or deval, based on compilation
4743 phase.
4744
4745 * eval.c (SCM_XEVAL, SCM_XEVALCAR): Dispatch on scm_debug_mode_p
4746 to ceval and deval instead of calling *scm_ceval_ptr.
4747
4748 * eval.c (dispatching_eval): New deprecated static function.
4749
4750 * eval.c (scm_ceval_ptr): Initialized to dispatching_eval in order
4751 to emulate its old behaviour as closely as possible.
4752
4753
4754 Change the evaluator such that only expressions for which pair? is
4755 true are passed to CEVAL, and such that all other expressions are
4756 evaluated outside of CEVAL:
4757
4758 * eval.c (EVAL): New, provided in analogy to EVALCAR. Evaluate an
4759 expression that is assumed to be memoized already. All but
4760 expressions of the form '(<form> <form> ...)' are evaluated inline
4761 without calling an evaluator.
4762
4763 * eval.c (SCM_XEVAL, SCM_XEVALCAR, EVALCAR): Evaluate all but
4764 expressions of the form '(<form> <form> ...)' inline without
4765 calling an evaluator.
4766
4767 * eval.c (scm_i_eval_x, scm_i_eval, scm_ceval, scm_deval): Handle
4768 the special case of unmemoized symbols passed on the top level.
4769
4770 * eval.c (CEVAL): Change calls to CEVAL to EVAL, except where it
4771 is known that the expression passed to CEVAL is of the form
4772 '(<form> <form> ...)'. Remove handling of the tc7-objects, since
4773 now it is known that the input expression of CEVAL is a pair.
4774
47752004-03-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5fb64383
DH
4776
4777 * eval.c (is_self_quoting_p): New static function.
4778
4779 (scm_m_quote): Use is_self_quoting_p.
4780
4781 (copy_tree): Corrected typo in comment.
4782
702551e6
HWN
47832004-03-28 Han-Wen Nienhuys <hanwen@xs4all.nl>
4784
bfefbf18
HWN
4785 * eval.c (s_scm_copy_tree): idem.
4786
4787 * list.c (s_scm_filter): remove "pointer" from doc string.
4788
702551e6
HWN
4789 * gc.h (SCM_GC_CELL_TYPE): SCM_GC_CELL_TYPE uses SCM_GC_CELL_OBJECT.
4790
4791 * goops.h (SCM_NUMBER_OF_SLOTS): don't SCM_UNPACK the result.
4792
4793 * backtrace.c ("display_backtrace_body"): SCM_PACK before SCM_EQ_P
4794 (display_frame): idem.
4795 (display_backtrace_file_and_line): idem.
4796
4797 * tags.h (SCM_UNPACK): stricter typechecking on SCM_UNPACK
4798 arguments.
4799
3cd23214
KR
48002004-03-26 Kevin Ryde <user42@zip.com.au>
4801
88a7ae1f
KR
4802 * filesys.c (scm_getcwd, scm_readlink): Avoid memory leak on errors.
4803
3cd23214
KR
4804 * numbers.c (scm_modulo): For inum/big and big/big, remove test of
4805 big==0 since that never occurs.
4806
4807 * numbers.c, numbers.h (scm_modulo_expt): Renamed from
4808 scm_modular_expt, matching scheme level name `modulo-expt'.
4809
4810 * numbers.c (scm_modular_expt): Return a negative remainder for a
4811 negative divisor, the same as `modulo' does.
4812
48132004-03-26 Eric Hanchrow <offby1@blarg.net>
4814
4815 * numbers.c, numbers.h (scm_modular_expt): New function.
4816
2926035a
KR
48172004-03-25 Kevin Ryde <user42@zip.com.au>
4818
4819 * numbers.c (scm_min, scm_max): Correction to big/real and real/big,
4820 return inexact as required by r5rs.
4821
62360b89
DH
48222004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4823
4824 * eval.c: Separated some definitions relevant for execution from
4825 the memoization part of the file.
4826
4827 (copy_tree): New static function
4828
4829 (scm_copy_tree): Rewritten to fix two kinds or bugs: First, cyclic
4830 structures are detected now and will lead to an exception instead
4831 of forcing guile to run in an endless loop, using up all the
4832 system's memory. Second, arrays in the cdr of an improper list
4833 are now copied. See the new test cases in eval.test.
4834
48352004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
b28f5b3c
DH
4836
4837 * posix.c (scm_gethostname): Make sure len is initialised before
4838 it is used. Restructured to (hopefully) represent possible
4839 configurations more clearly in the code. Added unwind handler.
4840
3bd3bae8
KR
48412004-03-23 Kevin Ryde <user42@zip.com.au>
4842
4843 * posix.c (scm_gethostname): Use sysconf(_SC_HOST_NAME_MAX) and/or
4844 MAXHOSTNAMELEN when available.
4845
254bf78d
MV
48462004-03-21 Marius Vollmer <mvo@zagadka.de>
4847
4848 * read.c (skip_scsh_block_comment): Also recognize '\r' as a line
4849 terminator. Rewritten the logic as a state machine, I must have
4850 been doing too much VHDL lately...
4851
4852 * eval.c (scm_ceval, scm_deval): Explicitely evaluate ports to
4853 themselves. Thanks to Han-Wen Nienhuys!
4854
4855 * list.c: Changed docstrings so that they no longer talk about
4856 returning 'pointers' to something.
4857
009c34a2
HWN
48582004-03-20 Han-Wen Nienhuys <hanwen@xs4all.nl>
4859
4860 * gc.c: remove set_debug_cell_accesses! when
4861 SCM_DEBUG_CELL_ACCESSES is not defined. Scheme source code should
4862 use (if (defined? 'set-debug-cell-accesses!) .. ) to switch on
4863 debugging conditionally.
4864
54733c95
KR
48652004-03-21 Kevin Ryde <user42@zip.com.au>
4866
4867 * stime.c (scm_gmtime): Use gmtime_r when available, for thread safety.
4868
bbaf8747
KR
48692004-03-20 Kevin Ryde <user42@zip.com.au>
4870
4871 * posix.c (scm_gethostname): Preserve errno across free() call.
4872
726f82e7
HWN
48732004-03-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
4874
4875 * gc-card.c (sweep_card): use SCM_GC_SET_CELL_WORD for setting
4876 free cells.
4877
e1350d6a
KR
48782004-03-14 Kevin Ryde <user42@zip.com.au>
4879
4880 * stime.c: Define _GNU_SOURCE for strptime prototype from glibc.
4881 (strptime): Use HAVE_DECL_STRPTIME for when to give own prototype.
4882
62055253
KR
48832004-03-07 Kevin Ryde <user42@zip.com.au>
4884
4885 * stime.c (scm_gmtime): Return bd_time->tm_zone when available, rather
4886 than "GMT" always.
4887 (filltime): Make zname parameter "const".
4888
92e64b87
MD
48892004-03-03 Mikael Djurfeldt <mdj@chunk.mit.edu>
4890
4891 * threads.c, threads.h (scm_c_scm2thread): New function.
4892
004ad931
KR
48932004-02-29 Kevin Ryde <user42@zip.com.au>
4894
4895 * numbers.c (guile_ieee_init): Use C99 INFINITY and NAN when
4896 available. Test HAVE_DINFINITY and HAVE_DQNAN for those globals, in
4897 particular don't assume "defined (__alpha__) && ! defined (linux)"
4898 means OSF. Remove "SCO" code, which was not really SCO specific and
4899 which John W. Eaton advises should be long past being needed.
4900
4901 * posix.c (scm_execl, scm_execlp, scm_execle): Avoid memory leak under
4902 error throw.
4903
72ea45ac
KR
49042004-02-24 Kevin Ryde <user42@zip.com.au>
4905
4906 * posix.c (scm_cuserid): Use a private result buffer, for thread safe.
4907
2af0602e
KR
49082004-02-22 Kevin Ryde <user42@zip.com.au>
4909
4910 * numbers.c (scm_max, scm_min): For one arg, dispatch to generic for
4911 complex, same as for two args. (Handle only inum, big, real, frac).
4912
b114eafe
KR
49132004-02-21 Kevin Ryde <user42@zip.com.au>
4914
4915 * posix.c (scm_crypt): Use new HAVE_CRYPT.
4916 (<crypt.h>): Remove HAVE_LIBCRYPT condition.
db752bb5 4917 Reported by Andreas Voegele.
b114eafe 4918
1e55d288
NJ
49192004-02-20 Neil Jerram <neil@ossau.uklinux.net>
4920
4921 * list.c (scm_list_n): Add #if SCM_DEBUG_CELL_ACCESSES_P around
4922 validation.
4923
4924 * read.c (scm_lreadparen): Removed.
4925 (scm_lreadparen1): Renamed scm_i_lreadparen.
4926
eb741d98
HWN
49272004-02-20 Han-Wen Nienhuys <hanwen@xs4all.nl>
4928
4929 * list.c (scm_list_n): validate non-immediate arguments;
4930 this will catch forgotten a SCM_UNDEFINED.
4931
4e28ba5e
MV
49322004-02-18 Marius Vollmer <mvo@zagadka.de>
4933
4934 * gc.h (scm_gc_cells_collected): Removed duplicated declaration.
4935 Thanks to Bill Schottstaedt!
4936
4937 * socket.h (scm_gethost): Removed prototype it is already in
4938 "net_db.h". Thanks to Bill Schottstaedt!
4939
ef861ead
KR
49402004-02-18 Kevin Ryde <user42@zip.com.au>
4941
4942 * num2integral.i.c (INTEGRAL2BIG): WORDS_BIGENDIAN not right for word
4943 order parameter to mpz_import, in fact with just one word there's no
4944 order to worry about at all.
4945
4946 * numbers.c (scm_num_eq_p): For real==frac, complex==frac, frac==real
4947 and frac==complex, make an exact comparison rather than converting
4948 with fraction2double.
4949
4950 * posix.c, putenv.c, stime.c (environ): Use _NSGetEnviron in Darwin
4951 shared library, since environ is not directly available there.
4952
4953 * script.c (scm_shell_usage): Print to stdout for --help, per GNU
4954 standard.
4955
4956 * stime.c (scm_localtime, scm_gmtime, scm_mktime): Provide a default
4957 errno EINVAL in case localtime and gmtime don't set it.
4958 (scm_mktime, scm_strptime): Forcibly use errno EINVAL for our
4959 SCM_SYSERROR, since mktime and strptime generally don't set errno.
4960
ae43d08e 49612004-02-16 Kevin Ryde <kevin@swox.se>
292dfa7f 4962
c9ea6462
KR
4963 * gc-malloc.c (scm_done_malloc, scm_done_free): Allow negative sizes,
4964 which were permitted in the past for these.
4965
292dfa7f
KR
4966 * num2float.i.c (NUM2FLOAT): Expand isfinite to !xisinf, as per
4967 previous change to numbers.c.
4968
ae43d08e
KR
4969 * script.c (scm_shell_usage): Print bug-guile email address, as per
4970 GNU standard. Reported by Han-Wen Nienhuys.
4971
711a9fd7
MD
49722004-02-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4973
4974 * unif.c (scm_make_uve): Removed local variable and simplified
4975 code in order to avoid compiler used uninitialized warnings.
4976
4977 * hashtab.c, hashtab.h (scm_hash_map_to_list): Renamed from
4978 scm_hash_map.
4979 (scm_hash_fold): Use scm_call_3 directly in the call to
4980 scm_internal_hash_fold instead of going via fold_proc (which is
4981 now removed).
4982 (scm_hash_for_each): Use a trampoline +
4983 scm_internal_hash_for_each_handle.
4984 (scm_internal_hash_for_each_handle, scm_hash_for_each_handle): New
4985 functions.
4986
3da7f6b2
KR
49872004-02-12 Kevin Ryde <user42@zip.com.au>
4988
344a212f
KR
4989 * ports.c (scm_port_line): In docstring, note first line is 0.
4990 (scm_set_port_line_x): In docstring, note first line is 0.
4991 (scm_port_column): In docstring, there's no default to current input
4992 port, and remove shared port-line @defun.
4993 (scm_set_port_column_x): In docstring, there's no default to current
4994 input port, note first column is 0, remove shared set-port-line!
4995 @defun.
4996
3da7f6b2
KR
4997 * ramap.c (scm_array_fill_x): For fvect and dvect, use scm_num2dbl to
4998 convert args the same way that array-set! does.
4999
5000 * unif.c (scm_make_uve, scm_array_p): Allow fraction 1/3 as prototype
5001 for dvect.
5002 (scm_array_p): Add missing "break"s in switch, fix llvect test look
5003 for "l" not "s", fix dvect to be false for singp(prot) since such a
5004 value is for fvect.
5005 (scm_array_prototype): Return 1/3 for dvect, rather than 0.33..33.
88531a74
KR
5006 (exactly_one_third): New variable.
5007 (scm_init_unif): Initialize it.
3da7f6b2 5008
cd21f5eb
NJ
50092004-02-10 Neil Jerram <neil@ossau.uklinux.net>
5010
5011 * read.c (scm_read_opts): Change `escaped-parens' to
5012 `elisp-strings'.
5013
16353acc
NJ
50142004-02-08 Neil Jerram <neil@ossau.uklinux.net>
5015
5016 * read.c (scm_read_opts): New opts `elisp-vectors' and
5017 `escaped-parens'.
5018 (s_vector): New.
5019 (scm_lreadr): Use scm_lreadparen1 instead of scm_lreadparen. Make
5020 handling of elisp vector syntax dependent on SCM_ENABLE_ELISP and
5021 `elisp-vectors' option instead of SCM_ELISP_READ_EXTENSIONS.
5022 Allow "\(" and "\)" in strings when SCM_ENABLE_ELISP defined and
5023 `escaped-parens' option set.
5024 (scm_read_token): If elisp vector syntax active, disallow [ and ]
5025 in tokens.
5026 (scm_lreadparen): Rewrite as interface to scm_lreadparen1.
5027 (scm_lreadparen1): New.
5028
5029 * read.h: Remove conditionally compiled last arg to
5030 scm_lreadparen.
5031 (SCM_ELISP_VECTORS_P, SCM_ESCAPED_PARENS_P): New.
5032
f62b9dff
HWN
50332004-01-23 Han-Wen Nienhuys <hanwen@xs4all.nl>
5034
5035 * eval.c (m_expand_body): remove stray variable new_body.
5036
ef5b6b61
MV
50372004-01-22 Marius Vollmer <mvo@zagadka.de>
5038
5039 * eval.c (m_expand_body): Rewrite the expression in place (by
5040 overwriting FORMS) also when a letrec is constructed, not only
5041 when no definitions are found. Do not return rewritten expression
5042 to emphasize the in-place rewriting. Changed all users.
5043
7eec4c37
HWN
50442004-01-19 Han-Wen Nienhuys <hanwen@xs4all.nl>
5045
5046 * gc.c: add protected_object_count, a number that is dumped from
5047 gc_stats()
5048
25ffbdac
MV
50492004-01-11 Marius Vollmer <mvo@zagadka.de>
5050
5051 * dynwind.h, dynwind.c (scm_frame_unwind,
5052 scm_frame_unwind_handler): Renamed and changed all uses.
5053 (scm_frame_rewind, scm_frame_rewind_handler): Likewise.
5054
08568c95
KR
50552004-01-11 Kevin Ryde <user42@zip.com.au>
5056
5057 * unif.c (scm_bit_count, scm_bit_position, s_scm_bit_set_star_x,
5058 s_scm_bit_count_star, s_scm_bit_invert_x): Clarify docstrings, as per
5059 changes made to scheme-compound.texi.
5060
5565749c
MV
50612004-01-10 Marius Vollmer <mvo@zagadka.de>
5062
25ffbdac
MV
5063 * print.c (scm_print_symbol_name): Handle #{`foo}#, #{,foo}#,
5064 #{.}#, and all numeric strings specially. Thanks to Paul Jarc!
5065
5066 * guile-snarf.in: Use mkdir to create a unique temporary directory
5067 that we can safely use. Thanks to Stefan Nordhausen!
5565749c 5068
fc6bb283
MV
50692004-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5070
7ebccde8
MV
5071 * dynwind.h, dynwind.c (scm_i_dowinds): Removed 'explicit'
5072 argument since it is always zero now. Changed all callers.
5073 Removed code for handling fluids.
96e3b2f8
MV
5074
5075 * fluids.c (scm_c_with_fluids): Use frames instead of adding to
5076 the wind chain explicitely. Use scm_c_with_fluid for the common
5077 case of only one fluid.
5078 (scm_with_fluid): New.
5079 (scm_c_with_fluid): Use frames instead of scm_c_with_fluids.
5080
fc6bb283 5081 * fluids.h, fluids.c (scm_frame_fluid): New.
96e3b2f8
MV
5082 (scm_with_fluid): New.
5083 (scm_i_swap_fluids, scm_i_swap_fluids_reverse): Removed.
fc6bb283
MV
5084
5085 * dynwind.c (scm_frame_end): Do not use scm_i_dowinds. Instead,
5086 do the unwinding directly. It is simple enough.
5087
5088 * dynwind.h, dynwind.c: Did the following renamings:
5089 scm_begin_frame -> scm_frame_begin,
5090 scm_end_frame -> scm_frame_end,
5091 scm_on_unwind -> scm_frame_unwind,
5092 scm_on_rewind -> scm_frame_rewind,
5093 scm_on_unwind_with_scm -> scm_frame_unwind_with_scm,
5094 scm_on_rewind_with_scm -> scm_frame_rewind_with_scm.
5095 Changed all uses.
5096
5097 * aync.h, async.c: Did the follwing renamings:
5098 scm_with_blocked_asyncs -> scm_frame_block_asyncs,
5099 scm_with_unblocked_asyncs -> scm_frame_unblock_asyncs.
5100 Changed all uses.
5101
5102 * ports.h, ports.c: Did the follwing renamings:
5103 scm_with_current_input_port -> scm_frame_current_input_port,
5104 scm_with_current_output_port -> scm_frame_current_output_port,
5105 scm_with_current_error_port -> scm_frame_current_error_port.
5106 Changed all uses.
5107
298ab996
KR
51082004-01-07 Kevin Ryde <user42@zip.com.au>
5109
5110 * numbers.c (s_bignum): Remove, not used since gmp bignums.
5111 Reported by Richard Todd.
5112
ba40113e
KR
5113 * threads-plugin.h (SCM_MUTEX_MAXSIZE): Increase to 12*sizeof(long),
5114 for the benefit of powerpc-apple-darwin5.5. Reported by Richard Todd.
5115
298ab996
KR
5116 * unif.c (scm_aind): Test SCM_CONSP rather than !SCM_NULLP while
5117 traversing the args list, fixes segv if an improper list is given.
5118 Reported by Rouben Rostamian.
5119
aacff585
MV
51202004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5121
5122 * ports.c (swap_ports, scm_with_current_foo_port): Do not allocate
5123 swap_data on stack, use a 'malloc obj'.
5124
5125 * fluids.h, fluids.c (scm_make_initial_fluids, scm_copy_fluids,
5126 scm_swap_fluids, scm_swap_fluids_reverse): Renamed to
5127 scm_i_... since they are internal. Changed all uses.
5128
5129 * dynwind.c (frame_print): Removed, use the default printer.
5130 (WINDER_F_MARK, WINDER_MARK_P, winder_mark): New.
5131 (scm_on_unwind_with_scm, scm_on_rewind_with_scm): New. Use above
5132 to protect SCM values.
5133
5134 * dynwind.h (SCM_F_WIND_EXPLICITELY,
5135 SCM_F_WIND_EXPLICITLY): It's "explicitly" not "explicitely", damn.
5136 Changed all uses.
5137 (scm_on_unwind_with_scm, scm_on_rewind_with_scm): New.
5138
49c00ecc
MV
51392004-01-05 Marius Vollmer <mvo@zagadka.de>
5140
5141 * ports.h, ports.c (scm_with_current_input_port,
5142 scm_with_current_output_port, scm_with_current_error_port): New.
5143
5144 * async.h, async.c (scm_with_blocked_asyncs,
5145 scm_with_unblocked_asyncs): New.
5146
dab514a8
MV
51472004-01-03 Marius Vollmer <mvo@zagadka.de>
5148
5149 * dynwind.h, scm_dynwind.c (scm_t_frame_flags, scm_t_wind_flags,
5150 scm_begin_frame, scm_end_frame, scm_on_unwind, scm_on_rewind):
5151 New.
5152 (scm_dowinds, scm_i_dowinds): scm_dowinds has been renamed to
5153 scm_i_dowinds and extended to handle frames and to invoke a 'turn'
5154 function when the outermost wind point has been reached. The
5155 latter is used to copy a continuation stack at the right time.
5156 scm_dowinds remains available.
5157 (SCM_GUARDSP, SCM_BEFORE_GUARD, SCM_AFTER_GUARD, SCM_GUARD_DATA,
5158 tc16_guard, guards_print): Removed.
5159 (scm_internal_dynamic_wind): Reimplemented using frames.
5160
5161 * continuations.c (copy_stack): New, do only the stack copying
5162 part of copy_stack_and_call.
5163 (copy_stack_and_call): Copy the stack after unwinding and before
5164 rewinding.
5165 (scm_dynthrow): Do not call scm_dowinds, this is now done by
5166 copy_stack_and_call.
5167
441a25d9
KR
51682004-01-04 Kevin Ryde <user42@zip.com.au>
5169
5170 * numbers.c (scm_less_p): Don't convert frac to float for compares,
dab514a8 5171 can give bad results due to rounding.
441a25d9 5172
e0499207
KR
5173 * stime.c (scm_current_time, scm_gettimeofday): Add a comment about
5174 setzone/restorezone protection for DOS.
5175
89fcf1b4
MV
51762003-12-26 Marius Vollmer <mvo@zagadka.de>
5177
5178 * gen-scmconfig.h.in, gen-scmconfig.c: Arrange for scm_t_intmax
5179 and scm_t_uintmax to be defined in scmconfig.h
5180
caff34d4
KR
51812003-12-03 Kevin Ryde <user42@zip.com.au>
5182
5183 * numbers.c (scm_less_p): Remove spurious xisnan from frac+big case.
5184
5185 * numbers.c (scm_make_ratio): Check for numerator equal to
5186 SCM_MOST_NEGATIVE_FIXNUM and bignum denominator the negative of that,
5187 giving integer -1.
5188
5189 * numbers.c (scm_real_part): Return fraction unchanged rather than
5190 converting to flonum.
5191
2d0b85ac
DH
51922003-11-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
5193
5194 * modules.c (module_variable): Fixed (and thus simplified) the
5195 definition of SCM_BOUND_THING_P to reflect the fact that since
5196 after the 1.4 series of guile, obarrays only hold variable
5197 objects.
5198
2297981d
MV
51992003-11-30 Marius Vollmer <mvo@zagadka.de>
5200
5201 * numbers.c (scm_logand): It's "#b...", not "#\b...".
5202
5203 From Paul Jarc:
5204
5205 * read.c (scm_lreadr): Signal an error for invalid escape
5206 sequences in strings. Code cleanups too.
5207
5208 * print.c (scm_iprin1): use \xNN hexadecimal sequences when
5209 writing control characters in strings.
5210
52112003-11-21 Marius Vollmer <mvo@zagadka.de>
5212
5213 * ports.c (scm_drain_input): Bug fix: only access the port after
5214 checking that it indeed is one.
5215
5c264007
DH
52162003-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
5217
5218 * eval.c (s_bad_define): New static identifier.
5219
5220 (m_body): Fixed comment.
5221
5222 (scm_m_define): Don't generate memoized code for definitions that
5223 are not on the top level. As a consequence, no memoized code at
5224 all is generated for definitions any more: Top level definitions
5225 are executed immediately during memoization and internal
5226 definitions are handled separately in m_expand_body.
5227
5228 (scm_unmemocopy, unmemocopy): Removed code for unmemoizing
5229 definitions. Consequently, there is no unmemoizing code any more
5230 that might modify the environment. Thus, the old scm_unmemocopy
5231 is removed and the old unmemocopy is renamed to scm_unmemocopy.
5232
5233 (SCM_CEVAL): The SCM_IM_DEFINE keyword can no longer occur in
5234 memoized code. Call EVALCAR for continuations. Prefer !SCM_NULLP
5235 over SCM_NIMP in places, where the argument is known to be part of
5236 a proper list.
5237
018d4730
KR
52382003-11-21 Kevin Ryde <user42@zip.com.au>
5239
5240 * numbers.c (scm_abs): Allocate a new real only for negatives, as done
5241 for bignums.
5242
5243 * numbers.c (scm_bit_extract): Use mpz functions, rearrange inum case
5244 to share some shifting.
5245
5246 * numbers.c (scm_integer_expt): Don't mpz_init after scm_i_clonebig or
5247 scm_i_mkbig, since they do so already. Don't mpz_clear a bignum SCM,
5248 since gc does this.
5249
4bca30d8
MV
52502003-11-19 Marius Vollmer <mvo@zagadka.de>
5251
fb16d26e
MV
5252 * numbers.c (scm_make_ratio): Rewritten to have a simpler
5253 structure. Previously, not all cases with a negative denominator
5254 were covered.
5255
4bca30d8
MV
5256 * numbers.c (mem2decimal_from_point): use scm_divide instead of
5257 scm_divide2real when forming the fractional part. This allows
5258 "#e1.2" to yield 6/5.
5259
5260 * numbers.c (scm_i_fraction_equalp): Do not treat the return value
5261 of scm_equal_p as a C boolean, use SCM_FALSEP. Previously, all
5262 fractions were equal to each other regardless of value. Ooops.
5263
5264 * numbers.c (scm_rationalize): Return an inexact result when given
5265 inexact arguments.
5266
5267 * numbers.c (scm_exact_p, scm_inexact_p): Throw error for
5268 non-numbers.
5269
bdf26b60
MV
52702003-11-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5271
5272 Support for exact fractions from Bill Schottstaedt! Thanks!
5273
5274 * print.c (scm_iprin1): Handle fractions.
5275
5276 * objects.h (scm_class_fraction): New.
5277 * objects.c (scm_class_fraction): New.
5278 (scm_class_of): Handle fractions.
5279
5280 * hash.c (scm_hasher): Handle fractions.
5281
5282 * numbers.c: New code for handling fraction all over the place.
5283 (scm_odd_p, scm_even_p): Handle inexact integers.
5284 (scm_rational_p): New function, same as scm_real_p.
5285 (scm_round_number, scm_truncate_number, scm_ceiling, scm_floor):
5286 New exact functions that replace the inexact 'dsubr'
5287 implementations.
5288 (scm_numerator, scm_denominator): New.
5289
5290 * numbers.h (SCM_NUMP): Recognize fractions.
5291 (SCM_FRACTIONP, SCM_SLOPPY_FRACTIONP, SCM_FRACTION_NUMERATOR,
5292 SCM_FRACTION_DENOMINATOR, SCM_FRACTION_SET_NUMERATOR,
5293 SCM_FRACTION_SET_DENOMINATOR, SCM_FRACTION_REDUCED_BIT,
5294 SCM_FRACTION_REDUCED_SET, SCM_FRACTION_REDUCED_CLEAR,
5295 SCM_FRACTION_REDUCED): New.
5296 (scm_floor, scm_ceiling, scm_truncate_number, scm_round_number):
5297 New prototypes.
5298 (scm_make_ratio, scm_rationalize, scm_numerator, scm_denominator,
5299 scm_rational_p): New prototypes.
5300 (scm_i_dbl2num, scm_i_fraction2double, scm_i_fraction_equalp,
5301 scm_i_print_fraction): New prototypes.
5302
5303 * goops.c (create_standard_classes): Create "<fraction>" class.
5304
5305 * gc-mark.c (scm_gc_mark_dependencies): Handle fractions.
5306
5307 * gc-card.c (scm_i_sweep_card): Include scm_tc16_fraction as a
5308 case in the switch, but do nothing for now.
5309
5310 * eval.c (SCM_CEVAL, SCM_APPLY, call_dsubr_1): Convert fractions
5311 to doubles when calling 'dsubr' functions.
5312
5313 * eq.c (scm_eqv_p, scm_equal_p): Handle fractions.
5314
28fda544
RB
53152003-11-18 Rob Browning <rlb@defaultvalue.org>
5316
5317 * gen-scmconfig.c (main): remove public definition of
5318 SCM_SIZEOF___INT64 and SCM_SIZEOF_UNSIGNED___INT64 and add
5319 direct typedef of long_long and ulong_long inside deprecated block
5320 when appropriate.
5321
5322 * deprecated.h: move long_long and ulong_long definitions to
5323 gen-scmconfig.c so that we don't need to add SCM_SIZEOF___INT64
5324 and SCM_SIZEOF_UNSIGNED___INT64 to the public namespace.
5325
b58e7420
MV
53262003-11-17 Marius Vollmer <mvo@zagadka.de>
5327
9a1d7d7c
MV
5328 * hash.c (scm_string_hash): New hashing algorithm that takes the
5329 complete string into account.
5330
b58e7420
MV
5331 * eval.c (scm_m_generalized_set_x): Macroexpand the target when it
5332 is a list. This allows (@ ...) to work with set!.
9a1d7d7c
MV
5333 (scm_m_generalized_set_x): Use ASSERT_SYNTAX_2 instead of
5334 SCM_ASSYNT.
b58e7420
MV
5335
5336 * script.c (scm_compile_shell_switches): Use scm_c_read_string for
5337 the "-e" option instead of scm_str2symbol. This allows things
5338 like (@ ...) to be specified for the entry point.
5339
461bffb1
DH
53402003-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
5341
5342 * eval.c (scm_m_letstar): Create memoized code in place to
5343 minimize consing.
5344
6f81708a
DH
53452003-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
5346
5347 * eval.c (s_splicing): Commented and reformulated.
5348
5349 (lookup_global_symbol, lookup_symbol): New static functions.
5350
5351 (s_test, s_bindings, s_duplicate_bindings, s_variable): Removed.
5352
5353 (try_macro_lookup, literal_p): Use lookup_symbol instead of
5354 creating a temporary pair for scm_lookupcar.
5355
5356 (scm_unmemocar, unmemocar): Renamed scm_unmemocar to unmemocar,
5357 created deprecated wrapper function scm_unmemocar.
5358
5359 (SCM_VALIDATE_NON_EMPTY_COMBINATION, scm_sym_else,
5360 scm_sym_unquote, scm_sym_uq_splicing, scm_sym_enter_frame,
5361 scm_sym_apply_frame, scm_sym_exit_frame, scm_sym_trace, f_apply,
5362 undefineds, sym_three_question_marks): Moved around without
5363 modifications.
5364
5365 * eval.c, eval.h (scm_macroexp, scm_unmemocar): Deprecated.
5366
910b5125
DH
53672003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5368
5369 * eval.c (try_macro_lookup, expand_user_macros, is_system_macro_p,
5370 m_expand_body, scm_m_expand_body): Grouped together with m_body.
5371 No further modifications.
5372
c86c440b
DH
53732003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5374
5375 * eval.c (s_mixed_body_forms): New static identifier.
5376
5377 (canonicalize_define, scm_m_define): The check for a bad
5378 expression is performed in canonicalize_define now.
5379
5380 (try_macro_lookup, expand_user_macros, is_system_macro_p): New
5381 static helper functions for m_expand_body.
5382
5383 (m_expand_body): Use ASSERT_SYNTAX to signal syntax errors. Only
5384 expand user defined macros. Fixed handling of the definition/
5385 expression boundary. Fixed handling of definitions grouped with
5386 'begin. Use canonicalize_define to expand definitions.
5387
3890131a
MV
53882003-11-13 Marius Vollmer <mvo@zagadka.de>
5389
b58e7420
MV
5390 * read.c (scm_lreadr): detect EOF after backslash, and interpret
5391 \xNN hexadecimal sequences. From Paul Jarc, thanks!
5392
5df36eac
MV
5393 * snarf.h (SCM_SMOB, SCM_GLOBAL_SMOB, SCM_SMOB_MARK,
5394 SCM_GLOBAL_SMOB_MARK, SCM_SMOB_FREE, SCM_GLOBAL_SMOB_FREE,
5395 SCM_SMOB_PRINT, SCM_GLOBAL_SMOB_PRINT, SCM_SMOB_EQUALP,
5396 SCM_GLOBAL_SMOB_EQUALP, SCM_SMOB_APPLY, SCM_GLOBAL_SMOB_APPLY):
5397 New macros from Paul Jarc. Thanks!
5398
3890131a
MV
5399 * gc_os_dep.c (scm_get_stack_base): Provide a definition that
5400 return NULL when the machine type is unknown. Previously,
5401 gc_os_dep.c would refuse to compile.
5402
430b8401
DH
54032003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
5404
5405 * eval.c (scm_m_body, m_body, scm_m_lambda, memoize_named_let,
5406 scm_m_let, scm_m_letrec, m_expand_body): Renamed static function
5407 scm_m_body to m_body.
5408
328dc9a3
DH
54092003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
5410
5411 * eval.c, eval.h (scm_m_expand_body, m_expand_body): Deprecated
5412 public use of scm_m_expand_body in eval.h. In eval.c, renamed
5413 scm_m_expand_body to m_expand_body and made it static. Added
5414 deprecated wrapper scm_m_expand_body.
5415
5416 (scm_eval_body, SCM_CEVAL, SCM_APPLY): Use m_expand_body instead
5417 of scm_m_expand_body.
5418
c2337a61
KR
54192003-11-09 Kevin Ryde <user42@zip.com.au>
5420
5421 * dynl.c (scm_dynamic_unlink): Need scm_list_1 on error message
5422 argument. Reported by Mike Gran.
5423
ced8edb0
DH
54242003-11-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
5425
5426 * eval.c (s_missing_body_expression): New static identifier.
5427
5428 (s_body): Removed.
5429
5430 (scm_m_expand_body): Fixed core dump when passing a body with
5431 defines, but without expressions (see additions to syntax.test).
5432 Use ASSERT_SYNTAX to signal syntax errors.
5433
0f572ba7
DH
54342003-11-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
5435
5436 * eval.c (canonicalize_define): New static helper function.
5437
5438 (memoize_define, canonicalize_define): Extract handling of
5439 function currying to canonicalize_define.
5440
2510c810
DH
54412003-11-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
5442
5443 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
5444 Make sure that error checking in debug mode is not worse than in
5445 standard mode.
5446
34adf7ea
DH
54472003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
5448
5449 * eval.c (scm_m_body, scm_m_lambda): Documentation strings are not
5450 handled in scm_m_body any more, but rather in scm_m_lambda.
5451
5452 (scm_m_body, memoize_named_let, scm_m_let, scm_m_letstar,
5453 scm_m_letrec, scm_m_expand_body): Check for validity is done by
5454 calling functions of scm_m_body.
5455
5456 (scm_m_lambda): Avoid unnecessary consing when creating the
5457 memoized code.
5458
89bff2fc
DH
54592003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
5460
5461 * eval.c (s_expression): Added comment.
5462
5463 (s_empty_combination, error_unbound_variable): New static
5464 identifiers.
5465
5466 (SCM_VALIDATE_NON_EMPTY_COMBINATION, SCM_EVALIM2, scm_lookupcar1):
5467 Use ASSERT_SYNTAX, syntax_error or error_unbound_variable to
5468 signal syntax errors.
5469
5470 (SCM_CEVAL): Separated handling of evaluator bytecodes and other
5471 scheme objects.
5472
60a49842
DH
54732003-10-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
5474
5475 * eval.c (unmemocar, sym_three_question_marks, scm_unmemocar):
5476 Grouped together with unmemocopy, without modifications.
5477
5478 (build_binding_list, unmemocopy): Renamed names of list arguments
5479 and variables to reflect the actual order of the list elements.
5480
70c1c108
DH
54812003-10-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
5482
5483 * eval.c (s_defun): New static identifier.
5484
5485 (scm_m_nil_cond, scm_m_atfop, scm_m_undefine): Add comments. Use
5486 ASSERT_SYNTAX to signal syntax errors. Avoid unnecessary consing
5487 when creating the memoized code.
5488
0ee39677
KR
54892003-10-19 Kevin Ryde <user42@zip.com.au>
5490
5491 * numbers.c (scm_ash): Revise docstring as per recent update to manual.
5492
5493 * numbers.c (scm_i_big2dbl): Rewrite, carefully rounding to "closest"
5494 in accordance with R5RS, which just mpz_get_d doesn't really give.
5495
9a848baf
DH
54962003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5497
5498 * eval.c (s_bad_slot_number): New static identifier.
5499
5500 (scm_m_atslot_ref, scm_m_atslot_set_x): Use ASSERT_SYNTAX to
5501 signal syntax errors. Avoid unnecessary consing when creating the
5502 memoized code.
5503
da48db62
DH
55042003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5505
5506 * eval.c (scm_m_cont, scm_m_at_call_with_values,
5507 scm_m_generalized_set_x): Use ASSERT_SYNTAX to signal syntax
5508 errors. Avoid unnecessary consing when creating the memoized
5509 code.
5510
5511 (scm_m_generalized_set_x): Let scm_m_set_x handle the R5RS
5512 standard case. Make sure line and file information are copied to
5513 every created expression.
5514
82b3e2c6
DH
55152003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5516
5517 * eval.c (scm_m_set_x, scm_m_apply, scm_m_atbind): Use
5518 ASSERT_SYNTAX to signal syntax errors. Avoid unnecessary consing
5519 when creating the memoized code.
5520
5521 (scm_m_atbind): Reversed the order, in which the init expressions
5522 are stored and executed. The order of execution is now equal to
5523 the order in which the initializers of the let-forms are executed.
5524 Use check_bindings and transform_bindings.
5525
5526 (SCM_CEVAL): Eliminated SCM_NIMP in favor of more appropriate
5527 !SCM_NULLP. Added some comments.
5528
21628685
DH
55292003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5530
5531 * eval.c: Sorted include files alphabetically.
5532
5533 (scm_m_begin): Added comment.
5534
5535 (scm_m_or): Use ASSERT_SYNTAX to signal syntax errors. Avoid
5536 unnecessary consing when creating the memoized code.
5537
5538 (iqq, scm_m_quasiquote, scm_m_quote): Use ASSERT_SYNTAX to signal
5539 syntax errors. Be more specific about the kind of error that was
5540 detected.
5541
5542 (scm_m_quote, unmemocopy): As an optimization, vector constants
5543 are now inserted unquoted into the memoized code. During
5544 unmemoization the quotes are added again to provide syntactically
5545 correct code.
5546
d6754c23
DH
55472003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5548
5549 * eval.c (scm_m_let, scm_m_letstar, scm_m_letrec,
5550 scm_m_expand_body, check_bindings): Extracted syntax checking of
5551 bindings to new static function check_bindings.
5552
5553 (scm_m_let, memoize_named_let): Extracted handling of named let to
5554 new static function memoize_named_let.
5555
5556 (transform_bindings, scm_m_let, scm_m_letstar, scm_m_letrec): Use
5557 ASSERT_SYNTAX to signal syntax errors. Be more specific about the
5558 kind of error that was detected. Avoid use of SCM_CDRLOC. Avoid
5559 unnecessary consing when creating the memoized code.
5560
03a3e941
DH
55612003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
5562
5563 * eval.c (s_bad_formals, s_bad_formal, s_duplicate_formal): New
5564 static identifiers.
5565
5566 (s_clauses, s_formals, s_duplicate_formals): Removed.
5567
5568 (scm_m_lambda): Use ASSERT_SYNTAX to signal syntax errors. Be more
5569 specific about the kind of error that was detected. Prepare for
5570 easier integration of changes for separated memoization.
5571
da48db62 55722003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
4610b011
DH
5573
5574 * eval.c (s_duplicate_binding): New static identifier.
5575
5576 (scm_m_case): Call scm_c_memq instead of implementing it inline.
5577
5578 (scm_m_define): Added comment about how we check for duplicate
5579 formals.
5580
5581 (scm_m_do): Added check for duplicate bindings.
5582
5583 (scm_m_if): Use ASSERT_SYNTAX to signal syntax errors. Avoid
5584 unnecessary consing when creating the memoized code.
5585
5586 (scm_c_improper_memq, c_improper_memq, scm_m_lambda): Renamed
5587 scm_c_improper_memq to c_improper_memq, since it is not exported.
5588
5589 (transform_bindings): Call scm_c_memq rather than
5590 scm_c_improper_memq.
5591
5592 (SCM_CEVAL): Simplified handling of SCM_IM_IF forms.
5593
da48db62 55942003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
a954ce1d
DH
5595
5596 * eval.c (s_bad_bindings, s_bad_binding, s_bad_exit_clause): New
5597 static identifiers.
5598
5599 (scm_m_do): Use ASSERT_SYNTAX to signal syntax errors. Be more
5600 specific about the kind of error that was detected. Avoid use of
5601 SCM_CDRLOC. Avoid unnecessary consing when creating the memoized
5602 code, this way also making sure that file name, line number
5603 information etc. remain available.
5604
da48db62 56052003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
8ae95199
DH
5606
5607 * eval.c (memoize_as_thunk_prototype): New static function.
5608
5609 (scm_m_delay, scm_m_future): Use memoize_as_thunk_prototype.
5610 Avoid unnecessary consing when creating the memoized code.
5611
9b9a35b6
KR
56122003-10-12 Kevin Ryde <user42@zip.com.au>
5613
5614 * list.c (scm_append): Track argument number and use in error.
5615
cc56ba80
DH
56162003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
5617
5618 * eval.c (s_missing_expression, s_bad_variable): New static
5619 identifiers.
5620
5621 (scm_m_define): Use ASSERT_SYNTAX to signal syntax errors. Prefer
5622 R5RS terminology for the naming of variables. Be more specific
5623 about the kind of error that was detected. Make sure file name,
5624 line number etc. are added to all freshly created expressions.
5625 Avoid unnecessary consing when creating the memoized code.
5626
609a8b86
DH
56272003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
5628
5629 * eval.c (s_extra_expression, s_misplaced_else_clause,
5630 s_bad_cond_clause, s_missing_recipient): New static identifiers.
5631
5632 (s_extra_case_clause): Removed.
5633
5634 (scm_m_case, scm_m_cond): If a clause appears after an else
5635 clause, report a misplaced else clause.
5636
5637 (scm_m_cond): Use ASSERT_SYNTAX to signal syntax errors. Be more
5638 specific about the kind of error that was detected. Handle bound
5639 'else and '=>. Avoid unnecessary consing when creating the
5640 memoized code.
5641
5642 (scm_m_cond, unmemocopy, SCM_CEVAL): Use SCM_IM_ELSE to memoize
5643 the syntactic keyword 'else and SCM_IM_ARROW to memoize the
5644 syntactic keyword '=>.
5645
58a2510b
DH
56462003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
5647
5648 * eval.c (scm_m_case): Allow empty lists of case labels.
5649
2a6f7afe
DH
56502003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
5651
5652 * tags.h (SCM_IM_ELSE, SCM_IM_ARROW): New memoizer codes.
5653
5654 * print.c (scm_isymnames): Add names for the new memoizer codes.
5655
5656 * eval.c (s_missing_clauses, s_bad_case_clause,
5657 s_extra_case_clause, s_bad_case_labels, s_duplicate_case_label,
5658 literal_p): New static identifiers.
5659
5660 (scm_m_case): Use ASSERT_SYNTAX to signal syntax errors. Be more
5661 specific about the kind of error that was detected. Check for
5662 duplicate case labels. Handle bound 'else. Avoid unnecessary
5663 consing when creating the memoized code.
5664
5665 (scm_m_case, unmemocopy, SCM_CEVAL): Use SCM_IM_ELSE to memoize
5666 the syntactic keyword 'else.
5667
e6729603
DH
56682003-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
5669
5670 * eval.c (s_bad_expression, syntax_error_key, syntax_error,
5671 ASSERT_SYNTAX, ASSERT_SYNTAX_2): New static identifiers.
5672
5673 (scm_m_and): Use ASSERT_SYNTAX to signal syntax errors. Avoid
5674 unnecessary consing when creating the memoized code.
5675
9ddeb776
KR
56762003-10-09 Kevin Ryde <user42@zip.com.au>
5677
5678 * numbers.c (scm_inexact_to_exact): Don't depend on what double->long
5679 cast gives for values bigger than a long, or for nan or inf.
5680
df5af69a
DH
56812003-10-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
5682
5683 * smob.h (scm_make_smob_type): Made the declaration match the
5684 definition.
5685
da0e6c2b
MV
56862003-10-07 Marius Vollmer <mvo@zagadka.de>
5687
5688 * goops.c, objects.h, smob.c, smob.h: Make type names char
5689 const * instead of char *. Thanks to Paul Jarc!
5690
591924eb
KR
56912003-10-02 Kevin Ryde <user42@zip.com.au>
5692
ff6ea7b9 5693 * strports.c (scm_call_with_output_string): scm_get_output_string
591924eb
KR
5694 rather than scm_strport_to_string, so as to guard against the port
5695 having been closed by the called procedure. Reported by Nic Ferrier.
5696
f03314f9
DH
56972003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5698
5699 * numbers.h (SCM_INEXACTP): Removed uses of SCM_TYP16S.
5700
5701 * tags.h, deprecated.h (SCM_TYP16S): Deprecated and moved from
5702 tags.h to deprecated.h.
5703
534c55a9
DH
57042003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5705
5706 This set of patches introduces a new tc7 code scm_tc7_number for
5707 numbers. Bignums, reals and complex numbers are turned from smobs
5708 into subtypes of scm_tc7_number.
5709
5710 * tags.h (scm_tc7_number): New.
5711
5712 * eq.c (scm_equal_p), eval.c (SCM_CEVAL), evalext.c
5713 (scm_self_evaluating_p), gc-card.c (scm_i_sweep_card), gc-mark.c
5714 (scm_gc_mark_dependencies), goops.c (create_smob_classes), hash.c
5715 (scm_hasher), numbers.c, numbers.h (SCM_NUMP), objects.c
5716 (scm_class_of), print.c (scm_iprin1), smob.c
5717 (scm_smob_prehistory): Don't handle bignums, reals and complex
5718 numbers as subtypes of scm_tc7_smob any more.
5719
5720 * numbers.h, tags.h (scm_tc16_big, scm_tc16_real,
5721 scm_tc16_complex): Moved definitions from tags.h to numbers.h.
5722
29c4382a
DH
57232003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5724
5725 * numbers.c (scm_make_complex), gc-card.c (scm_i_sweep_card): Use
5726 sizeof (scm_t_complex) to determine the memory size of the
5727 malloc'd area for complex numbers.
5728
47ae1f0e
DH
57292003-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
5730
5731 * numbers.c (scm_bigequal): Fixed.
5732
859b6b2f
MV
57332003-09-16 Marius Vollmer <mvo@zagadka.de>
5734
5735 * stime.c (scm_current_time): 'time' does not set errno so don't
5736 use SCM_SYSERROR for reporting errors.
5737
e17d318f
DH
57382003-09-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
5739
5740 This set of patches eliminates the dependency between the
5741 implementation of evaluator specific memoization codes and special
5742 constants like #f, '() etc. ('flags'), which are not evaluator
5743 specific. The goal is to remove definitions of evaluator
5744 memoization codes completely from the public interface. This will
5745 make it possible to experiment more freely with optimizations of
5746 guile's internal representation of memoized code.
5747
5748 * objects.c (scm_class_of): Eliminate dependency on SCM_ISYMNUM.
5749
5750 * print.c (iflagnames): New array, holding the printed names of
5751 guile's special constants ('flags').
5752
5753 (scm_isymnames): Now holds only the printed names of the
5754 memoization codes.
5755
5756 (scm_iprin1): Separate the handling of memoization codes and
5757 guile's special constants.
5758
5759 * tags.h (scm_tc9_flag, SCM_ITAG9, SCM_MAKE_ITAG9, SCM_ITAG9_DATA,
5760 SCM_IFLAGNUM): new
5761
5762 (scm_tc8_char, scm_tc8_iloc, SCM_BOOL_F, SCM_BOOL_T,
5763 SCM_UNDEFINED, SCM_EOF_VAL, SCM_EOL, SCM_UNSPECIFIED, SCM_UNBOUND,
5764 SCM_ELISP_NIL, SCM_IM_DISPATCH, SCM_IM_SLOT_REF,
5765 SCM_IM_SLOT_SET_X, SCM_IM_DELAY, SCM_IM_FUTURE,
5766 SCM_IM_CALL_WITH_VALUES, SCM_IM_NIL_COND, SCM_IM_BIND): Changed
5767 values.
5768
5769 (SCM_IFLAGP): SCM_IFLAGP now only tests for flags.
5770
5771 (SCM_IFLAGP, SCM_MAKIFLAG, SCM_IFLAGNUM): Generalized to use the
5772 tc9 macros and scm_tc9_flag.
5773
eecac806
MV
57742003-09-15 Marius Vollmer <mvo@zagadka.de>
5775
5776 * posix.c (scm_setgroups): Check that the gid list is not too
5777 long. Thanks to Paul Jarc!
5778
22f2cf2d
DH
57792003-09-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
5780
5781 * tags.h: Reduced the number of short instructions from 14 to 13.
5782 The typecode of the former 14th short instruction is now used to
5783 represent long instructions. Changed some comments to reflect
5784 this fact.
5785
5786 (SCM_MAKISYM): ISYMs get a new tc7 code, namely the one that was
5787 previously used by SCM_IM_DEFINE.
5788
5789 (SCM_IM_DEFINE): Turned into a long instruction.
5790
5791 * eval.c (unmemocopy, SCM_CEVAL): Treat SCM_IM_DEFINE as a long
5792 instruction.
5793
5794 * eval.c (SCM_CEVAL): Since characters and iflags have now a tc7
5795 code that is separate from all instructions, one level of dispatch
5796 for long instructions can be eliminated.
5797
5798 * print.c (scm_isymnames): Removed some commented code.
5799
62f548e1
MV
58002003-09-12 Marius Vollmer <mvo@zagadka.de>
5801
97a61c5f
MV
5802 * __scm.h (SCM_FENCE): Use __memory_barrier with the Intel
5803 compiler on IA64.
5804
50e0ba57
MV
5805 * hashtab.h (scm_tc16_hashtable): Added "extern" declaration.
5806
5807 * modules.c (scm_module_reverse_lookup): Check that the obarray
5808 really is a hashtable and do nothing if not.
5809
62f548e1
MV
5810 * inline.h: Use "extern inline" only with GCC. Use "static
5811 inline" else.
5812
0d5e3480
DH
58132003-09-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
5814
5815 * numbers.h (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Removed uses
5816 of SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
5817
5818 * numbers.h, deprecated.h (SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP,
5819 SCM_SLOPPY_COMPLEXP): Deprecated and moved from numbers.h to
5820 deprecated.h.
5821
6b412e91
DH
58222003-09-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
5823
5824 * eq.c (scm_eqv_p, scm_equal_p): Removed uses of
5825 SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
5826
5827 * eq.c (scm_eqv_p, scm_equal_p): Reordered comparisons from
5828 0.0==some_expression to some_expression==0.0. The latter is
5829 better readable. The former is preferred by some people, since it
5830 leads to a compiler error when confusing == with =. However, when
5831 using gcc, a warning will be issued if in an if-statement an
5832 assigment appears. Since many Guile developers are using gcc,
5833 such errors will not remain unnoticed anyway. We can therefore
5834 focus on better readability.
5835
7e3b25bf
DH
58362003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
5837
5838 * tags.h: Added description of Guile's type system. Removed some
5839 old and misleading comments.
5840
3ea39242
DH
58412003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
5842
5843 * unit.c (scm_cvref): Eliminate unnecessary uses of SCM_NIMP,
5844 SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
5845
5d7d39ff
DH
58462003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
5847
5848 * numbers.h (SCM_MAKINUM): Define in terms of scm_tc2_int.
5849
5850 (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Define in terms of the
5851 respective SLOPPY macro.
5852
baa84a20
DH
58532003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
5854
5855 * eq.c (scm_equal_p): Use SCM_TYP7 to check if an object is of
5856 type string, not SCM_TYP7S.
5857
ba15f500
KR
58582003-09-03 Kevin Ryde <user42@zip.com.au>
5859
5860 * numbers.c (scm_lognot): Correction to docstring, ones-complement not
5861 2s-complement.
5862
53bb8782
KR
5863 * stime.c (scm_strptime): Add comment about glibc strptime %s and
5864 current timezone requiring SCM_DEFER_INTS.
5865
defdc4b4
NJ
58662003-08-30 Neil Jerram <neil@ossau.uklinux.net>
5867
5868 * script.c (scm_compile_shell_switches): Make -s switch optional
5869 if file to be loaded does not begin with a `-'. (Thanks to Aaron
5870 VanDevender for the patch!)
5871
0f008a15
KR
58722003-08-30 Kevin Ryde <user42@zip.com.au>
5873
5874 * numbers.c (scm_lognot): Rewrite using ~ and mpz_com, for directness
5875 and to have non-integer types rejected as per other logical funcs.
5876
438a3ba1
KR
58772003-08-28 Kevin Ryde <user42@zip.com.au>
5878
5879 * gc.h (scm_remember_upto_here_1): Revise comments on the asm form.
5880
98dceb37
KR
58812003-08-23 Kevin Ryde <user42@zip.com.au>
5882
5883 * simpos.c (scm_system): Remove SCM_DEFER_INTS, system() should be
5884 thread safe, and could take a long time too.
5885
1fa79a38
KR
58862003-08-22 Kevin Ryde <user42@zip.com.au>
5887
5888 * numbers.c (scm_difference): Correction to bignum - negative inum.
5889
d97f9b42
KR
58902003-08-14 Kevin Ryde <user42@zip.com.au>
5891
5892 * gc.h (scm_remember_upto_here_1, scm_remember_upto_here_2)
5893 [__GNUC__]: Use volatile asm macros rather than a function call.
5894 * gc.c (scm_remember_upto_here_1, scm_remember_upto_here_2): Undefine
5895 macros while defining functions.
5896
5897 * simpos.c (getenv): Use <stdlib.h> for prototype.
5898 (scm_system): In docstring, refer to status:exit-val rather than
5899 "functions above".
5900
b9052fcc
KR
59012003-08-09 Kevin Ryde <user42@zip.com.au>
5902
5903 * srcprop.c (scm_source_properties): Return plist from hash if it's a
5904 list set by source-properties! rather than an SRCPROPS object,
5905
8e5b4b9e
KR
59062003-07-29 Kevin Ryde <user42@zip.com.au>
5907
5908 * properties.c (scm_primitive_property_ref): In docstring, note
5909 parameters to not-found-proc, use hyphens rather than underscores for
5910 that parameter name.
5911 (scm_primitive_property_set_x): In docstring, VAL is the value
5912 parameter not CODE.
5913
20703ac4
MV
59142003-07-27 Marius Vollmer <mvo@zagadka.de>
5915
c6ccee34
MV
5916 * print.c (scm_print_symbol_name): handle more weird characters by
5917 escaping the symbol name properly. Thanks to Paul Jarc!
5918
2f4931bf
MV
5919 * posix.h (scm_setgroups): New prototype.
5920 * posix.c (scm_setgroups): New. Thanks to Paul Jarc!
5921 (scm_getgroups): Handle groups ids that don't fit into a fixnum.
5922 Don't use SCM_WRITABLE_VELTS.
5923
265c456f
MV
5924 * gc.h (SCM_GC_SET_CELL_BVEC): New.
5925 * gc-card.c (scm_i_init_card_freelist): Use it. Thanks to
5926 Matthias Koeppe!
5927
20703ac4
MV
5928 * __scm.h (SCM_C_INLINE_KEYWORD): New.
5929 * numbers.c: Use it in place of SCM_C_INLINE so that the code
5930 compiles when SCM_C_INLINE is undefined.
5931
59c4bb82
DH
59322003-07-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
5933
5934 * __scm.h: Reformulated the architecture and compiler properties
5935 in terms of properties of scm_t_bits and SCM variables rather than
5936 in terms of c standard types. This is since it is not known which
5937 of the standard types scm_t_bits and SCM variables will be defined
5938 to.
5939
d7850c8d
KR
59402003-07-24 Kevin Ryde <user42@zip.com.au>
5941
5942 * numbers.c (scm_angle): Use scm_flo0 for non-negative inum, bignum
5943 and real.
5944
8a0c514f
KR
59452003-07-18 Kevin Ryde <user42@zip.com.au>
5946
5947 * numbers.c (scm_product): In complex * bignum, correction to
5948 REAL/IMAG fetch, x is the complex, not y.
5949
0aacf84e
MD
59502003-07-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5951
5952 * numbers.c (scm_odd_p, scm_even_p): Bugfix: Treat result of
5953 scm_inf_p test as Scheme values.
5954 (scm_sum): Bugfix: Normalize bignum created from a negative bignum
5955 and a positive inum.
5956 Use GNU indentation style.
5957
192de9a4
DH
59582003-07-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
5959
5960 * values.c (scm_values): Build lists of length 1 by using
5961 scm_list_1 instead of using scm_cons.
5962
bbb4438a
KR
59632003-07-10 Kevin Ryde <user42@zip.com.au>
5964
b58c85ce
KR
5965 * deprecation.c (scm_c_issue_deprecation_warning_fmt): Add va_end.
5966 * list.c (scm_list_n): Ditto.
5967
bbb4438a
KR
5968 * gc-malloc.c (scm_gc_realloc): Define "ptr" at start of function.
5969
287f8ad1
KR
59702003-07-08 Matthias Koeppe <mkoeppe@merkur.math.uni-magdeburg.de>
5971
5972 * tags.h (scm_t_bits, scm_t_signed_bits, etc): Avoid solaris empty
5973 defines of INTPTR_MAX and UINTPTR_MAX, combine conditionals for
5974 scm_t_bits and scm_t_signed_bits to avoid any chance of one and not
5975 the other using intptr_t.
5976
005d2366
KR
59772003-07-08 Kevin Ryde <user42@zip.com.au>
5978
0aacf84e 5979 * numbers.c (scm_make_polar): Use sincos, when available.
005d2366
KR
5980 (scm_magnitude): Use hypot.
5981
5982 * ports.c (scm_char_ready_p, scm_peek_char): In docstrings, don't use
5983 @footnote since it doesn't go through to guile-procedures.txt.
5984
5985 * threads.c (scm_call_with_new_thread): In docstring, use "( )"
5986 outside @var to quieten makeinfo, and use @code.
5987
cbfe8e62
HWN
59882003-07-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5989
5990 * gc-malloc.c (decrease_mtrigger): new function
5991 (increase_mtrigger): new function, separate debug registering and
5992 mtrigger administration.
5993 (scm_gc_realloc): bugfix: do mtrigger administration before the
5994 actual realloc, for the realloc might invalidate a GC-d segment of
5995 memory. Thanks to Sam Hocevar for pointing this out.
5996 (scm_gc_realloc): use scm_malloc_reregister instead of
5997 unregistering and registering in sequence.
5998
aeb4c2e1
HWN
59992003-07-03 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6000
6001 * __scm.h (SCM_ASSERT): change "else" expansion to "do { } while (0)"
6002
4c27f8d2
HWN
60032003-07-02 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6004
6005 * __scm.h (SCM_ASRTGO): add "else" to macro expansions with if
6006 clauses.
6007
983e697d
MV
60082003-06-29 Marius Vollmer <mvo@zagadka.de>
6009
6010 * deprecated.h (SCM_OPDIRP, scm_fport, scm_option, scm_srcprops,
6011 scm_srcprops_chunk, scm_info_frame, scm_stack, scm_array,
6012 scm_array_dim, SCM_ARRAY_CONTIGUOUS, SCM_FUNC_NAME, SCM_WTA,
6013 RETURN_SCM_WTA, SCM_VALIDATE_NUMBER_COPY,
6014 SCM_VALIDATE_NUMBER_DEF_COPY, SCM_VALIDATE_OPDIR): Re-added from
6015 the release_1_6 branch.
6016
78b6566e
SJ
60172003-06-25 Stefan Jahn <stefan@lkcc.org>
6018
6019 * continuations.c: Redeclaration of getcontext() via the
6020 __asm__ ("getcontext") directive.
6021
6022 * continuations.h: Include <ucontext.h> instead of
6023 <sys/ucontext.h>.
6024
1ebb8497
KR
60252003-06-21 Kevin Ryde <user42@zip.com.au>
6026
6027 * numbers.c (_GNU_SOURCE): #define, to get C99 things.
6028 (scm_asinh, scm_acosh, scm_atanh, scm_truncate, $asinh, $acosh,
6029 $atanh, truncate): Use C library asinh, acosh, atanh and trunc, when
6030 available.
6031 (scm_inexact_to_exact): Expand isfinite to its definition !xisinf.
6032 (isfinite): Remove, conflicts with C99 isfinite().
6033
fbf85ba4
MV
60342003-06-19 Marius Vollmer <mvo@zagadka.de>
6035
6036 * deprecated.h, deprecated.c (scm_strhash, scm_sym2ovcell_soft,
6037 scm_sym2ovcell, scm_intern_obarray_soft, scm_intern_obarray,
6038 scm_symbol_value0, scm_string_to_obarray_symbol scm_intern_symbol,
6039 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
6040 scm_symbol_bound_p, scm_symbol_set_x, scm_gentemp): Re-added from
6041 the release_1_6 branch.
6042
fcc5d734
SJ
60432003-06-14 Stefan Jahn <stefan@lkcc.org>
6044
6045 * threads.h: Redefined scm_getspecific() and scm_setspecific()
6046 to be functions instead of macros.
6047
6048 * threads.c: Conditionalized inclusion of <sys/time.h> and
6049 <unistd.h>.
6050 (scm_getspecific, scm_setspecific): Made these two function
6051 real part of the API.
6052
6053 * posix.c (s_scm_putenv): Added some code to make a
6054 (putenv "FOO="), i.e. setting an empty string, work also on
6055 Win32 systems. Thanks to Kevin Ryde for the proposal.
6056
c3ae8e07
KR
60572003-06-12 Kevin Ryde <user42@zip.com.au>
6058
75b14838
KR
6059 * posix.c (scm_putenv): Free temporary ptr in mingw unset. Add
6060 freebsd to comment about need to use unsetenv.
c3ae8e07 6061
9d9fa092
MV
60622003-06-02 Marius Vollmer <mvo@zagadka.de>
6063
6064 * ports.c (scm_peek_char): Safe the column of the port around the
6065 getc/ungetc calls. Thanks to Dr. Peter Ivanyi!
6066
f2478375
KR
60672003-06-07 Kevin Ryde <user42@zip.com.au>
6068
6069 * tags.h: Use inttypes.h and stdint.h when available, for INTPTR_MAX
6070 and friends required by scm_t_bits setups.
6071
6375e040
DH
60722003-06-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6073
6074 * tags.h (scm_tc2_int): Added.
6075
6076 * tags.h (scm_tc3_int_1, scm_tc3_int_2): Expressed in terms of
6077 scm_tc2_int.
6078
6079 * tags.h (scm_tcs_cons_imcar, scm_tcs_cons_nimcar, scm_tcs_struct,
6080 scm_tcs_closures): Hard coded values replaced by symbolic ones.
6081
f5c6ec2f
DH
60822003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
6083
6084 * eval.c: Partially undid my patch from 2003-05-31. This patch
6085 caused the segfault referenced in the previous changelog entry.
6086
47dbd81e
DH
60872003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
6088
6089 * tags.h: Fixed comment about the immediate type code layout.
6090
6091 * eval.c: Fixed handling of non-special instructions. Without
6092 this patch, guile will segfault on (#\0) and similar instructions.
6093
3ec52c51
KR
60942003-06-05 Kevin Ryde <user42@zip.com.au>
6095
6096 * numbers.c (scm_max, scm_min): For inum, bignum and real, if other
6097 operand is NaN, then return NaN. Also avoid passing NaN to mpz_cmp_d.
6098
e418bd7c
KR
6099 * read.c (scm_input_error): Pass arg list parameter to scm_error_scm,
6100 rather than SCM_EOL. Needed by "Unknown # object" case in scm_lreadr.
6101
d0624e39
DH
61022003-06-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6103
6104 * __scm.h, gc-card.c (SCM_DEBUG_DEBUGGER_SUPPORT,
6105 SCM_DEBUG_DEBUGGING_SUPPORT): Renamed macro
6106 SCM_DEBUG_DEBUGGER_SUPPORT to SCM_DEBUG_DEBUGGING_SUPPORT and
6107 generalized it to apply not only to C level functions but also to
6108 scheme level functions.
6109
6110 * debug.c, debug.h, eval.c (make-iloc, scm_make_iloc, iloc?,
6111 scm_iloc_p, dbg-make-iloc, scm_dbg_make_iloc, dbg-iloc?,
6112 scm_dbg_iloc_p): Moved functions scm_make_iloc, scm_iloc_p to
6113 eval.c, made them available under SCM_DEBUG_DEBUGGING_SUPPORT == 1
6114 only and renamed them to scm_dbg_make_iloc, scm_dbg_iloc_p,
6115 respectively.
6116
6117 * deprecated.h, eval.c, eval.h (SCM_ILOC00, SCM_IDINC,
6118 SCM_IDSTMSK): Deprecated. The macro definitions are moved from
6119 eval.h into eval.c and a copy is placed into deprecated.h.
6120
6121 * eval.c, eval.h (SCM_MAKE_ILOC): Removed from eval.h and placed
6122 into eval.c. This definition was not part of the API in any
6123 officially released version of guile and thus does not need to go
6124 through a phase of deprecation.
6125
e90c3a89
DH
61262003-06-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
6127
d0624e39
DH
6128 * deprecated.c, deprecated.h, eval.c, eval.h (scm_s_expression,
6129 scm_s_test, scm_s_body, scm_s_bindings, scm_s_variable,
6130 scm_s_clauses, scm_s_formals): Deprecated. In eval.c the
e90c3a89
DH
6131 definitions are make static and renamed from scm_s_xxx to s_xxx.
6132 In deprecated.c the original definitions are copied.
6133
d0624e39
DH
6134 * deprecated.h, eval.c, eval (SCM_EVALIM2, SCM_EVALIM, SCM_XEVAL,
6135 SCM_XEVALCAR): Deprecated. The macro definitions are moved from
e90c3a89
DH
6136 eval.h into eval.c and a copy (slightly modified to work in user
6137 code) is placed into deprecated.h.
6138
6139 * eval.c: Use the local static s_xxx definitions instead of the
6140 scm_s_xxx definitions throughout.
6141
14b18ed6
DH
61422003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
6143
6144 This set of patches separates the representation of the cxr family
6145 of functions (car, cdr etc.) from the dsubr family of functions
6146 (i. e. functions that take a double precision floating point
6147 argument). Further, the algorithm for handling the cxr function
6148 is improved.
6149
6150 * eval.c (SCM_CEVAL, SCM_APPLY, scm_trampoline_1), numbers.c
6151 (scm_asinh, scm_acosh, scm_atanh, scm_truncate, scm_round, floor,
6152 ceil, sqrt, fabs, exp, log, sin, cos, tan, asin, acos, atan, sinh,
6153 cosh, tanh), objects.c (scm_class_of), procprop.c
6154 (scm_i_procedure_arity), ramap.c (scm_array_map_x), tags.h
6155 (scm_tc7_dsubr, scm_tcs_subrs): Introduce scm_tc7_dsubr as new
6156 typecode for the dsubr family of functions.
6157
6158 * ramap.c (ramap_cxr, ramap_dsubr): Renamed ramap_cxr to
6159 ramap_dsubr.
6160
6161 * eval.c (SCM_CEVAL, SCM_APPLY, call_cxr_1), pairs.c
6162 (scm_init_pairs): Make use of the (now usable) second cell element
6163 of a scm_tc7_cxr function to implement the cxr family of functions
6164 more efficiently.
6165
2ca0d207
DH
61662003-05-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
6167
6168 * eval.c (SCM_CEVAL, SCM_APPLY, scm_trampoline_0,
6169 scm_trampoline_1, scm_trampoline_2): Postpone error cases to the
6170 end of an if-else-if-sequence of checks.
6171
9a069bdd
DH
61722003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
6173
6174 * eval.c (SCM_CEVAL): Improved readability of call-with-values
6175 execution. Generalize apply_closure to apply_proc and use that
6176 for call-with-values.
6177
e910e9d2
DH
61782003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
6179
6180 * eval.c (SCM_CEVAL): Avoid one level of indirection when applying
6181 a non closure.
6182
1e498fbd
SJ
61832003-05-30 Stefan Jahn <stefan@lkcc.org>
6184
6185 * posix.c (s_scm_putenv): Use the new HAVE_UNSETENV
6186 appropriately for mingw32 hosts.
6187
6188 * numbers.h: Defining copysign(), isnan() and finite() to
6189 be prefixed by a single '_' for mingw32 hosts.
6190
c47e2599
KR
61912003-05-30 Kevin Ryde <user42@zip.com.au>
6192
6193 * numbers.c (z_negative_one): New variable.
6194 (scm_init_numbers): Initialize it.
6195 (scm_logcount): Use it and mpz_hamdist to count zeros for negatives.
6196
2e945bcc
SJ
61972003-05-29 Stefan Jahn <stefan@lkcc.org>
6198
6199 * win32-dirent.c: Use malloc() instead of scm_malloc().
6200
6201 * stime.c (s_scm_strftime): Add a type cast to avoid compiler
6202 warning.
6203
6204 * posix.c (s_scm_putenv): Disable use of unsetenv() for the
6205 mingw32 build.
6206
6207 * modules.c (s_scm_module_import_interface): Renamed local
6208 variable interface to _interface. Seems like 'interface'
6209 is a special compiler directive for the mingw32 compiler.
6210
6211 * mkstemp.c: Provide prototype to avoid compiler warning.
6212
6213 * load.c (s_scm_search_path): Fixed absolute and relative
6214 path detections for native Windows platforms.
6215
6216 * gc.h, threads.h: Export some more symbols using SCM_API (necessary
6217 to build on mingw32).
6218
6219 * gc-freelist.c ("s_scm_map_free_list",
6220 "s_scm_gc_set_debug_check_freelist_x"): Fixed use of FUNC_NAME.
6221
6222 * fports.c (fport_fill_input): Disable use of
6223 fport_wait_for_input() on Win32 platforms.
6224
6225 * filesys.c (s_scm_basename): Fixed __MINGW32__ code.
6226
6227 * Makefile.am: Modified some rules for cross compiling.
6228
ddd8f927
DH
62292003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
6230
6231 * eval.c (SCM_CEVAL): In case of an application, all checks for a
6232 proper function object and the correct number of arguments are now
6233 performed in the application part of SCM_CEVAL.
6234
6235 (scm_badformalsp): Removed.
6236
f8ba2197
DH
62372003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
6238
6239 * deprecated.c (scm_read_and_eval_x): Fixed C99-ism.
6240
79f55b7c
MD
62412003-05-22 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6242
a502595f
MD
6243 * num2integral.i.c (NUM2INTEGRAL): Avoid warning about conditional
6244 always being false by inserting preprocessor conditional. (Thanks
6245 to Bruce Korb.)
6246
79f55b7c
MD
6247 * __scm.h (SCM_STACK_PTR): New macro. (Cast argument through
6248 (void *) in order to avoid an aliasing warning; thanks to Bruce
6249 Korb.)
6250
6251 * stackchk.h (SCM_STACK_OVERFLOW_P): Use SCM_STACK_PTR.
6252
6253 * threads.c (suspend, launch_thread, scm_threads_mark_stacks): Use
6254 SCM_STACK_PTR.
6255
6256 * threads.c (scm_threads_mark_stacks): Bugfix: Changed
6257 thread->base --> t->base.
6258
6259 * eval.c (SCM_CEVAL): Don't cast argument of SCM_STACK_OVERFLOW_P.
6260
47dee228
MV
62612003-05-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6262
6263 * deprecated.h, deprecated.c (scm_makstr, scm_makfromstr,
6264 scm_variable_set_name_hint, scm_builtin_variable,
6265 scm_internal_with_fluids, scm_make_gsubr,
6266 scm_make_gsubr_with_generic, scm_create_hook, SCM_LIST0,
6267 SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5, SCM_LIST6,
6268 SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify, scm_sloppy_memq,
85494587
MV
6269 scm_sloppy_memv, scm_sloppy_member, scm_read_and_eval_x,
6270 scm_subr_entry, SCM_SUBR_DOC, scm_make_subr,
6271 scm_make_subr_with_generic, scm_make_subr_opt,
6272 scm_call_catching_errors, scm_make_smob_type_mfpe,
6273 scm_set_smob_mfpe, scm_strprint_obj, scm_read_0str, scm_eval_0str,
6274 SCM_CHARS, SCM_UCHARS, SCM_LENGTH): Re-added from the release_1_6
6275 branch. Some have been slightly rewritten.
6276 (scm_i_object_chars, scm_i_object_length): New, to support
6277 SCM_CHARS, SCM_UCHARS, and SCM_LENTH.
6278
e681d187
DH
62792003-05-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
6280
6281 * eval.c (scm_m_do, unmemocopy, SCM_CEVAL): Reversed order of
6282 names and inits in the memoized code of do.
6283
7e59d9d4
MD
62842003-05-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6285
6286 * c-tokenize.lex (yyget_lineno, yyget_in, yyget_out, yyget_leng,
6287 yyget_text, yyset_lineno, yyset_in, yyset_out, yyget_debug,
6288 yyset_debug, yylex_destroy): Added prototypes (otherwise we'll get
6289 a compilation error if error-on-warning is enabled).
6290
9950a42c
MV
62912003-05-17 Marius Vollmer <mvo@zagadka.de>
6292
6293 * c-tokenize.lex: Gobble up complete lines after a '#'. This
6294 removes preprocessor directives from the snarfage that might
6295 otherwise confuse us. These directives appear when compiling with
6296 "-g3", for example.
6297
0068984b
HWN
62982003-05-16 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6299
26e68795
HWN
6300 * ChangeLog: add my surname
6301
0068984b
HWN
6302 * srcprop.c (scm_finish_srcprop): use
6303 scm_gc_register_collectable_memory()
6304 (scm_make_srcprops): idem.
6305
131805f0
HWN
63062003-05-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6307
6308 * gc-malloc.c (scm_gc_register_collectable_memory): avoid
6309 wrap-around for scm_mtrigger
6310 (scm_gc_register_collectable_memory): abort on overflowing
6311 scm_mallocated().
6312
d4611024
KR
63132003-05-13 Kevin Ryde <user42@zip.com.au>
6314
6315 * numbers.c (xmpz_cmp_d): New macro, handling infs if gmp doesn't.
6316 (scm_num_eq_p, scm_less_p, scm_max, scm_min): Use it.
6317
7aaf8dc9
MD
63182003-05-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6319
dfd03fb9
MD
6320 * backtrace.c (scm_display_error_message): Introduced fancy
6321 printing with max level 7 and length 10. (Purpose: avoid printing
6322 gigantic objects in error messages.)
6323
6324 * print.c, print.h (scm_i_port_with_print_state): New function.
6325
6326 * print.c (scm_iprin1, scm_printer_apply,
6327 scm_port_with_print_state): Use scm_i_port_with_print_state.
6328 (scm_simple_format): Modified not to destroy print states.
6329 (print_state_mutex): New mutex.
6330 (scm_make_print_state, scm_free_print_state, scm_prin1):
6331 Lock/unlock print_state_mutex.
6332
7aaf8dc9
MD
6333 * deprecated.h (SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK):
6334 Use current names in definitions.
6335
a4d9ffa1
KR
63362003-05-10 Kevin Ryde <user42@zip.com.au>
6337
6338 * numbers.c (scm_num_eq_p, scm_less_p): Don't pass NaN to mpz_cmp_d.
6339
d25e96a4
KR
6340 * numbers.c (scm_integer_length): On negative bignums, adjust
6341 mpz_sizeinbase to account for it looking at absolute value where we
6342 want ones-complement.
6343
6344 * numbers.c (scm_gcd): In bignum/inum, don't pass yy==0 to mpz_gcd_ui
6345 since we're only using the ulong return value, and x might not fit.
6346
5bf6a6f0
DH
63472003-05-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6348
6349 * eval.c, eval.h, read.c, read.h (scm_sym_dot): Moved from eval to
6350 read. This will allow to make the definition in read.c static.
6351
f58c472a
DH
63522003-05-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6353
6354 * eval.c, eval.h, evalext.c, evalext.h (scm_m_undefine): Moved
6355 from evalext to eval. This will allow to make some of the
6356 definitions in eval.c static.
6357
90382aeb
KR
63582003-05-06 Kevin Ryde <user42@zip.com.au>
6359
6360 * numbers.c (scm_difference): In inum - bignum, handle negative inum.
6361 (scm_logcount): Use mpz_com, not mpz_neg.
6362
3b88ed2a
DH
63632003-05-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6364
6365 The purpose of this patch is to make guile's internal memoizers
6366 distinguishable from memoizing macros created on the scheme level
6367 or from user provided primitive memoizing macros. The reason is,
6368 that the internal memoizers are the only ones that are allowed to
6369 transform their scheme input into memoizer byte code, while all
6370 other memoizing macros may only transform scheme code into new
6371 scheme code.
6372
6373 To achieve this, a new macro type 'builtin-macro!' is introduced.
6374 Currently, 'builtin-macro!'s are handled as memoizing macros, but
6375 this will change when the memoizer and executor are separated.
6376
6377 * macros.[ch] (scm_i_makbimacro): New.
6378
6379 * macros.h (SCM_BUILTIN_MACRO_P): New.
6380
6381 * macros.c (macro_print, scm_macro_type): Support builtin-macro!s.
6382
6383 * eval.c, goops.c: All of guile's primitive memoizing macros are
6384 primitive builtin-macros now.
6385
6386 * eval.c (scm_macroexp, SCM_CEVAL): Make sure the primitive
6387 builtin-macros are handled equally to memoizing macros.
6388
b0780eb1
MV
63892003-05-04 Marius Vollmer <mvo@zagadka.de>
6390
6391 * throw.c (scm_ithrow): Remove "asm volatile" hack. It used to
6392 work around a bug in GCC 2.95.2 but is now a bug in itself.
6393
1cbf4fe9
MV
63942003-05-02 Marius Vollmer <mvo@zagadka.de>
6395
6396 * deprecated.h (scm_rstate, scm_rng, SCM_SLOPPY_CONSP,
6397 SCM_SLOPPY_NCONSP, scm_tc7_ssymbol, scm_tc7_msymbol,
6398 scm_tcs_symbols): New.
6399
1a61d41b
MV
64002003-04-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6401
096ecbaf
MV
6402 * deprecated.h, deprecated.c (scm_protect_object,
6403 scm_unprotect_object, SCM_SETAND_CAR, SCM_SETOR_CAR,
6404 SCM_SET_AND_CDR, SCM_SET_OR_CDR, SCM_FREEP, SCM_NFREEP,
6405 SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16,
6406 SCM_GCCDR, scm_remember, scm_the_root_module, scm_make_module,
6407 scm_ensure_user_module, scm_load_scheme_module, scm_port,
6408 scm_ptob_descriptor, scm_port_rw_active,
6409 scm_close_all_ports_except): New.
6410
1a61d41b
MV
6411 * ports.c (scm_c_port_for_each): New function, mostly copied from
6412 scm_port_for_each.
6413 (scm_port_for_each): Reimplemented using scm_c_port_for_each.
6414 * ports.h (scm_c_port_for_each): New prototype.
6415
c8e1d354
MD
64162003-04-28 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6417
6418 * eval.c (scm_m_atdispatch): Removed until actually needed. (This
6419 macro was introduced in anticipation of GOOPS method compilation
6420 code.)
6421
6422 * goops.c: Removed binding of @dispatch.
6423
a4aa2134
DH
64242003-04-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
6425
6426 * eval.c, goops.c (@dispatch, @slot-ref, @slot-set!): Move the
6427 instructions that bind the macros on the scheme level back to
6428 goops.c in order to make sure again that the bindings go into the
6429 (oop goops) module and are not visible from the outside.
6430
9fbee57e
DH
64312003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
6432
6433 * eval.c: Non functional change: Separated R5RS and non-R5RS
6434 macros into different sections of the file and ordered the
6435 memoizers alphabetically.
6436
12841895
DH
64372003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
6438
6439 * eval.c (scm_ilookup): Rewritten to improve readability.
6440
6a3f13f0
DH
64412003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
6442
6443 * eval.c (scm_i_call_closure_0, call_closure_1, call_closure_2):
6444 Partially reverted patch from 2003-04-23 in oder to find a better
6445 compromise between readability and debuggability.
6446
b0c5d67b
DH
64472003-04-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
6448
6449 * eval.c, eval.h, goops.c, goops.h (scm_m_atslot_ref,
6450 scm_m_atslot_set_x, scm_m_atdispatch): Move the declarations and
6451 definitions of the special goops memoizers from goops.[ch] to
6452 eval.[ch]. Hmm... it seems that scm_m_atdispatch is not used
6453 throughout guile.
6454
b9ad392e
MD
64552003-04-24 Mikael Djurfeldt <mdj@kvast.blakulla.net>
6456
6457 * ports.c, ports.h (scm_i_port_table_mutex): New mutex.
6458
6459 * fports.c (scm_evict_ports): Lock/unlock scm_i_port_table_mutex.
6460
6461 * ports.c (scm_close_port, scm_flush_all_ports): Ditto.
6462
6463 * ioext.c (scm_fdes_to_ports): Ditto.
6464
6465 * vports.c (scm_make_soft_port): Changed SCM_DEFER/ALLOW_INTS into
6466 lock/unlock scm_i_port_table_mutex.
6467
6468 * strports.c (scm_mkstrport): Ditto.
6469
6470 * ports.c (scm_void_port, scm_port_for_each): Ditto.
6471
6472 * fports.c (scm_fdes_to_port): Ditto.
6473
d0b07b5d
DH
64742003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6475
6476 This set of patches contains no functional changes, only debatable
6477 minor stylistic ones. Still, in order to prepare a patch between
6478 my local copy and the CVS version, I decided to submit the changes
6479 below. Then, the patch will hopefully only contain relevant
6480 modifications :-)
6481
6482 * eval.c (iqq): Added const specifier.
6483
6484 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
6485 Use NULL instead of 0 to indicate that a pointer is returned.
6486 Removed some misleading 'fall through' comments.
6487
6488 * eval.c (scm_i_call_closure_0, call_closure_1, call_closure_2):
6489 Split up long expressions into smaller ones to be more debugging
6490 friendly.
6491
a98e8e98
DH
64922003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6493
6494 * eval.h (SCM_ENTER_FRAME_HDLR, SCM_APPLY_FRAME_HDLR,
6495 SCM_EXIT_FRAME_HDLR): Use SCM_PACK to convert data to a SCM value
6496 rather than casting to SCM.
6497
c178c3a6
DH
64982003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6499
6500 * sort.c, pairs.h: Removed unnecessary includes.
6501
d339981a
DH
65022003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6503
6504 * sort.c: Replaced hand-made trampline code by the new official
6505 mechanism from eval.c. This fixes a segfault in the new test file
6506 sort.test.
6507
6508 (quicksort, compare_function, scm_restricted_vector_sort_x,
6509 scm_sorted_p, scm_merge, scm_merge_list_x, scm_merge_x,
6510 scm_merge_list_step, scm_sort_x, scm_sort, scm_merge_vector_x,
6511 scm_merge_vector_step, scm_stable_sort_x, scm_stable_sort,
6512 scm_sort_list_x, scm_sort_list): Use trampoline mechanism from
6513 eval.c.
6514
6515 (subr2less, lsubrless, closureless, applyless, scm_cmp_function,
6516 cmp_fun_t): Removed.
6517
6518 (compare_function): Added.
6519
6520 * sort.c (quicksort, SWAP, stack_node): Replaced pointer
6521 arithmetics with index arithmetics. Changed quicksort to work on
6522 an array of SCM values instead of an array of characters. Avoid
6523 bytewise copying of SCM elements. Avoid allocating memory on the
6524 stack with alloca. Fixed some comments.
6525
821f18a4
DH
65262003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6527
6528 * eval.c (EXTEND_ENV): Eliminated.
6529
6530 (unmemocopy, SCM_CEVAL, SCM_APPLY): Use SCM_EXTEND_ENV instead of
6531 EXTEND_ENV.
6532
94fb5a6e
DH
65332003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6534
6535 * __scm.h (SCM_DEBUG_DEBUGGER_SUPPORT): New compile-time option.
6536
6537 * gc.card.c (scm_gc_marked_p): Fixed compiler warning when
6538 compiling with SCM_DEBUG==1 by moving definition behind prototype.
6539
6540 * gc.card.c (scm_dbg_t_list_cell, scm_dbg_t_double_cell,
6541 scm_dbg_gc_marked_p, scm_dbg_gc_get_card, scm_dbg_gc_get_bvec,
6542 scm_t_list_cell_struct, scm_t_list_cell, scm_t_double_cell,
6543 scm_gc_marked_p, scm_gc_get_card, scm_gc_get_bvec): Fixed
6544 functions such that they check if the object is a non-immediate.
6545 Further, renamed identifiers to use the scm_dbg_ prefix and made
6546 their inclusion into the lib dependent of the
6547 SCM_DEBUG_DEBUGGER_SUPPORT compile time option.
6548
fce0b22d
DH
65492003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6550
6551 * __scm.h: Fixed comment about the SCM_DEBUG_TYPING_STRICTNESS
6552 debug option.
6553
1685446c
DH
65542003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6555
821f18a4 6556 * list.c (scm_ilength, scm_last_pair), unif.c (l2ra): Prefer
1685446c
DH
6557 !SCM_CONSP over SCM_NCONSP. Now, guile itself does not include
6558 any calls to SCM_NCONSP any more.
6559
6560 * unif.c (l2ra): Eliminate redundant check.
6561
9ff1720f
DH
65622003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6563
6564 * list.c (scm_cons_star), ramap.c (scm_ra_sum, scm_ra_product,
6565 scm_array_map_x), unif.c (l2ra): Prefer !SCM_NULLP over
6566 SCM_NNULLP. Now, guile itself does not include any calls to
6567 SCM_NNULLP any more.
6568
05b15362
DH
65692003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6570
6571 * eval.c (unmemocopy, SCM_APPLY, scm_map, scm_for_each,
6572 scm_copy_tree): Place assignment expressions which are part of
6573 other expressions into an expression of their own.
6574
0c88d7df
DH
65752003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6576
6577 * goops.c (TEST_CHANGE_CLASS, scm_sys_initialize_object): Don't
6578 compare SCM values with !=.
6579
5cb22e96
DH
65802003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6581
6582 * eval.c, eval.h, evalext.c, evalext.h (scm_sym_setter,
6583 scm_m_generalized_set_x, scm_init_evalext): Move the declaration
6584 and definition of the memoizer for the generalized set! macro from
6585 evalext.[ch] to eval.[ch]. Use the SCM_SYNTAX snarfer macro to
6586 define the macro object.
6587
6588 * eval.c, eval.h (s_set_x, scm_s_set_x, scm_m_set_x,
6589 scm_m_generalized_set_x): Since now scm_s_set_x is only used in
6590 eval.c, it is made static and renamed to s_set_x.
6591
6592 * evalext.c (scm_defined_p, scm_m_undefine): Prefer !SCM_<foo>
6593 over SCM_N<foo>.
6594
a44a9715
DH
65952003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6596
6597 * eval.c, root.h (scm_undefineds, SCM_NUM_PROTECTS, undefineds,
6598 scm_init_eval): Made scm_undefineds static in eval.c, renamed it
6599 to undefineds and registered the object as a permanent object.
6600
6601 * eval.c, eval.h (scm_f_apply, scm_init_eval): Made scm_f_apply
6602 static in eval.c, renamed it to f_apply and registered the object
6603 as a permanent object.
6604
1b43d24c
DH
66052003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6606
5cb22e96 6607 * eval.c (SCM_BIT7, SCM_BIT8, unmemocopy, SCM_CEVAL): Renamed
1b43d24c
DH
6608 file-local macro SCM_BIT8 to SCM_BIT7, which is more appropriate.
6609
aec16f99
DH
66102003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6611
6612 * numbers.c (scm_logtest): Fixed argument bug in the call to
6613 mpz_and, which showed up when compiling with SCM_DEBUG defined.
6614
f96460ce
DH
66152003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6616
6617 * gc-card.c (scm_i_sweep_card, scm_i_init_card_freelist): Fixed
6618 type errors that showed up when compiling with SCM_DEBUG defined.
6619
d0f6ceb8
DH
66202003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6621
6622 * continuations.c, continuations.h, eval.c, eval.h, extensions.c,
6623 gsubr.c, guile.c, init.c, read.c, root.c, root.h, stackchk.h,
6624 throw.c: Removed uses of DEBUG_EXTENSIONS and DYNAMIC_LINKING to
6625 fix compile errors with --disable-deprecated.
6626
19a7a089
RB
66272003-04-17 Rob Browning <rlb@defaultvalue.org>
6628
6629 * numbers.c (scm_integer_expt): fix case where we were declaring
6630 vars in the middle of a statement block. Thanks to Thamer
6631 Al-Harbash.
6632
47cd67db
MD
66332003-04-17 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6634
0fd7dcd3
MD
6635 * goops.c (TEST_CHANGE_CLASS): Update variable class after class
6636 change.
6637
47cd67db
MD
6638 * eq.c (scm_eqv_p): Turned into a primitive generic.
6639
3b8b889c
RB
66402003-04-16 Rob Browning <rlb@defaultvalue.org>
6641
312006bb
RB
6642 * gc_os_dep.c: Added patch for UnixWare and OpenUNIX support.
6643 Thanks to Boyd Gerber.
6644 Added check for __arm__ in addition to arm for LINUX and copied
6645 __s390__ defines from upstream libgc. Thanks to James Treacy for
6646 reporting the problems.
c7ef2ea1 6647
3b8b889c
RB
6648 * numbers.c (PTRDIFF_MIN): use SCM_CHAR_BIT.
6649
6650 * socket.c: use SCM_CHAR_BIT.
6651
6652 * random.c (scm_c_random_bignum): use SCM_CHAR_BIT.
6653
6654 * num2integral.i.c (NUM2INTEGRAL): use SCM_CHAR_BIT.
6655
43261b39
MD
66562003-04-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
6657
6658 * feature.c (scm_init_feature): Always add threads feature.
6659
58241edc
MD
66602003-04-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6661
6662 * goops.c (scm_sys_fast_slot_ref): Use SCM_SLOT instead of
6663 scm_at_assert_bound_ref. (We don't want the unbound check. See
6664 oop/goops/active-slot.scm.)
6665
94e91275
RB
66662003-04-14 Rob Browning <rlb@defaultvalue.org>
6667
6668 * tags.h: scm_t_intptr should have been intptr_t.
6669
3071ea27
RB
66702003-04-13 Rob Browning <rlb@defaultvalue.org>
6671
6672 * __scm.h (SCM_FLUSH_REGISTER_WINDOWS): don't just rely on "sparc"
6673 test. Instead use
6674 #if defined (sparc) || defined (__sparc__) || defined (__sparc)
6675 as gc_os_dep.c suggests is appropriate.
6676
6677 * goops.c (prep_hashsets): make static to match prototype.
6678 (scm_sym_args): SCM_SYMBOL -> SCM_GLOBAL_SYMBOL. Thanks to Albert
6679 Chin.
6680
6681 * c-tokenize.lex: remove trailing comma from enum. Thanks to
6682 Albert Chin.
6683
6684 * gc_os_dep.c: add NetBSD powerpc config info. Thanks to Thomas
6685 Klausner.
6686
21ab2aeb
MD
66872003-04-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6688
6689 * goops.c (scm_sys_prep_layout_x): Instance allocation is now
6690 indicated through extra fields in getters-n-setters.
6691 (scm_add_slot): Adapted to new format of getters_n_setters slot.
6692 (Thanks to Andy Wingo.)
6693
dff96e95
HWN
66942003-02-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6695
6696 * gc-segment.c: add comment
6697
07921c76
RB
66982003-04-07 Rob Browning <rlb@defaultvalue.org>
6699
b5331f10
RB
6700 * debug.h: change "id" arg name to "info_id" to avoid objective-c
6701 clash.
6702
07921c76
RB
6703 * num2integral.i.c (NUM2INTEGRAL): fix bug pointed out by Mikael
6704 and add regression test to standalone/.
6705
67062003-04-06 Rob Browning <rlb@defaultvalue.org>
6707
6708 * strings.c (scm_mem2string): use memcpy rather than by-hand loop.
6709 Thanks to Dale P. Smith.
6710
6711 * random.c: #include gmp.h.
6712 (scm_c_random_bignum): normalize result on return.
6713
6714 * init.c: #include gmp.h.
6715
6716 * numbers.h: remove the gmp.h #include (not needed now).
6717
6718 * posix.h: change occurences of "id" to something else so we don't
6719 cause trouble when included via objective-c (can't hurt, might
6720 help). Still have usage in debug.h, though.
6721
938f6b7c
MD
67222003-04-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6723
372691d8
MD
6724 * random.c (scm_c_random_bignum): Don't generate a random number
6725 equal to m (the second argument of scm_c_random_bignum); only
6726 generate numbers in the range 0 <= r < m.
c5f268f8
MD
6727 (scm_c_default_rstate): Use SCM_VARIABLE_REF to access
6728 scm_var_random_state.
372691d8 6729
938f6b7c
MD
6730 * num2integral.i.c (INTEGRAL2BIG): Put negation of n inside then
6731 clause.
6732
6cdb8c3f
RB
67332003-04-05 Rob Browning <rlb@defaultvalue.org>
6734
938f6b7c 6735 * modules.c (scm_module_import_interface): move declaration of
6cdb8c3f
RB
6736 uses before any code.
6737
15635be5
MD
67382003-04-05 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6739
1ecfd013
MD
6740 * Makefile.am (scmconfig.h): Look for config.h in top_builddir,
6741 not top_srcdir.
6742
15635be5
MD
6743 * hashtab.c (rehash_after_gc): Clear to_rehash list before
6744 processing it in order to avoid an infinite loop.
6745
6746 * print.c (scm_prin1): Remember old state of pstate->writingp.
6747
73be1d9e
MV
67482003-04-05 Marius Vollmer <mvo@zagadka.de>
6749
6750 * Changed license terms to the plain LGPL thru-out.
6751
ad815c06
RB
67522003-04-04 Rob Browning <rlb@defaultvalue.org>
6753
6754 * socket.c (FLIPCPY_NET_HOST_128): new macro.
6755 (ipv6_net_to_num, ipv6_num_to_net, bignum_in_ipv6_range_p):
6756 rewrite to handle GMP bignums.
6757
6758
6759 * random.c (scm_c_random_bignum): rewrite to handle GMP bignums.
6760
6761 * ports.c (scm_getc): minor tweak.
6762
6763 * numbers.h: remove SCM_BIGDIG conditionals, reorganize, and
6764 rewrite to handle GMP bignums.
6765
6766 * numbers.c: rewrite *many* functions to handle GMP bignums.
6767
6768 * num2integral.i.c (NUM2INTEGRAL, INTEGRAL2NUM, INTEGRAL2BIG):
6769 handle GMP bignums.
6770
6771 * num2float.i.c (NUM2FLOAT): handle GMP bignums.
6772
6773 * init.c (check_config): remove SCM_BIGDIG conditionals.
6774 (scm_init_guile_1): test to make sure mpz_t fits in a double_cell.
6775
6776 * gc-card.c ("sweep_card"): handle new mpz_t bignums.
6777
6778 * eval.c: remove SCM_BIGDIG conditionals.
6779
6780 * eq.c (s_scm_eqv_p): scm_i_bigcomp -> scm_i_bigcmp.
6781
6cdb8c3f
RB
67822003-03-31 Rob Browning <rlb@defaultvalue.org>
6783
6784 * Makefile.am (scmconfig.h): change srcdir to builddir. (Thanks
6785 to Kevin Ryde.)
6786
67872003-03-27 Rob Browning <rlb@defaultvalue.org>
6788
6789 * threads.h: fix various preprocessor usages of new public
6790 symbols to expect 0 or 1 values rather than 1 or undefined.
6791 i.e. change #ifdef to #if, etc.
6792
6793 * threads.c: fix various preprocessor usages of new public
6794 symbols to expect 0 or 1 values rather than 1 or undefined.
6795 i.e. change #ifdef to #if, etc.
6796
6797 * tags.h: fix various preprocessor usages of new public
6798 symbols to expect 0 or 1 values rather than 1 or undefined.
6799 i.e. change #ifdef to #if, etc.
6800
6801 * stacks.c: fix various preprocessor usages of new public
6802 symbols to expect 0 or 1 values rather than 1 or undefined.
6803 i.e. change #ifdef to #if, etc.
6804
6805 * stackchk.h: fix various preprocessor usages of new public
6806 symbols to expect 0 or 1 values rather than 1 or undefined.
6807 i.e. change #ifdef to #if, etc.
6808
6809 * stackchk.c: fix various preprocessor usages of new public
6810 symbols to expect 0 or 1 values rather than 1 or undefined.
6811 i.e. change #ifdef to #if, etc.
6812
6813 * sort.c: fix various preprocessor usages of new public
6814 symbols to expect 0 or 1 values rather than 1 or undefined.
6815 i.e. change #ifdef to #if, etc.
6816
6817 * read.c: fix various preprocessor usages of new public
6818 symbols to expect 0 or 1 values rather than 1 or undefined.
6819 i.e. change #ifdef to #if, etc.
6820
6821 * random.c: fix various preprocessor usages of new public
6822 symbols to expect 0 or 1 values rather than 1 or undefined.
6823 i.e. change #ifdef to #if, etc.
6824
6825 * print.c: fix various preprocessor usages of new public
6826 symbols to expect 0 or 1 values rather than 1 or undefined.
6827 i.e. change #ifdef to #if, etc.
6828
6829 * objects.c: fix various preprocessor usages of new public
6830 symbols to expect 0 or 1 values rather than 1 or undefined.
6831 i.e. change #ifdef to #if, etc.
6832
6833 * numbers.h: fix various preprocessor usages of new public
6834 symbols to expect 0 or 1 values rather than 1 or undefined.
6835 i.e. change #ifdef to #if, etc.
6836
6837 * null-threads.c: fix various preprocessor usages of new public
6838 symbols to expect 0 or 1 values rather than 1 or undefined.
6839 i.e. change #ifdef to #if, etc.
6840
6841 * lang.c: fix various preprocessor usages of new public
6842 symbols to expect 0 or 1 values rather than 1 or undefined.
6843 i.e. change #ifdef to #if, etc.
6844
6845 * lang.h: fix various preprocessor usages of new public
6846 symbols to expect 0 or 1 values rather than 1 or undefined.
6847 i.e. change #ifdef to #if, etc.
6848
6849 * iselect.h: fix various preprocessor usages of new public
6850 symbols to expect 0 or 1 values rather than 1 or undefined.
6851 i.e. change #ifdef to #if, etc.
6852
6853 * init.c: fix various preprocessor usages of new public
6854 symbols to expect 0 or 1 values rather than 1 or undefined.
6855 i.e. change #ifdef to #if, etc.
6856
6857 * gh_data.c: fix various preprocessor usages of new public
6858 symbols to expect 0 or 1 values rather than 1 or undefined.
6859 i.e. change #ifdef to #if, etc.
6860
6861 * gh.h: fix various preprocessor usages of new public
6862 symbols to expect 0 or 1 values rather than 1 or undefined.
6863 i.e. change #ifdef to #if, etc.
6864
6865 * gen-scmconfig.c: change most new public symbols to be defined to
6866 0 or 1 rather than being either 1 or undefined.
6867
6868 * gc_os_dep.c: fix various preprocessor usages of new public
6869 symbols to expect 0 or 1 values rather than 1 or undefined.
6870 i.e. change #ifdef to #if, etc.
6871 (STACK_GROWS_DOWN): define to 0 or 1 rather than 1 or undef.
6872
6873 * gc.h: fix various preprocessor usages of new public
6874 symbols to expect 0 or 1 values rather than 1 or undefined.
6875 i.e. change #ifdef to #if, etc.
6876
6877 * gc-card.c: fix various preprocessor usages of new public
6878 symbols to expect 0 or 1 values rather than 1 or undefined.
6879 i.e. change #ifdef to #if, etc.
6880
6881 * gc-mark.c: fix various preprocessor usages of new public
6882 symbols to expect 0 or 1 values rather than 1 or undefined.
6883 i.e. change #ifdef to #if, etc.
6884
6885 * feature.c: fix various preprocessor usages of new public
6886 symbols to expect 0 or 1 values rather than 1 or undefined.
6887 i.e. change #ifdef to #if, etc.
6888
6889 * evalext.c: fix various preprocessor usages of new public
6890 symbols to expect 0 or 1 values rather than 1 or undefined.
6891 i.e. change #ifdef to #if, etc.
6892
6893 * eval.h: fix various preprocessor usages of new public
6894 symbols to expect 0 or 1 values rather than 1 or undefined.
6895 i.e. change #ifdef to #if, etc.
6896
6897 * eval.c: fix various preprocessor usages of new public
6898 symbols to expect 0 or 1 values rather than 1 or undefined.
6899 i.e. change #ifdef to #if, etc.
6900
6901 * eq.c: fix various preprocessor usages of new public
6902 symbols to expect 0 or 1 values rather than 1 or undefined.
6903 i.e. change #ifdef to #if, etc.
6904
6905 * coop.c: fix various preprocessor usages of new public
6906 symbols to expect 0 or 1 values rather than 1 or undefined.
6907 i.e. change #ifdef to #if, etc.
6908
6909 * coop-threads.c: fix various preprocessor usages of new public
6910 symbols to expect 0 or 1 values rather than 1 or undefined.
6911 i.e. change #ifdef to #if, etc.
6912
6913 * coop-pthreads.c: fix various preprocessor usages of new public
6914 symbols to expect 0 or 1 values rather than 1 or undefined.
6915 i.e. change #ifdef to #if, etc.
6916
6917 * coop-defs.h: fix various preprocessor usages of new public
6918 symbols to expect 0 or 1 values rather than 1 or undefined.
6919 i.e. change #ifdef to #if, etc.
6920
6921 * convert.i.c: fix various preprocessor usages of new public
6922 symbols to expect 0 or 1 values rather than 1 or undefined.
6923 i.e. change #ifdef to #if, etc.
6924
6925 * continuations.c: fix various preprocessor usages of new public
6926 symbols to expect 0 or 1 values rather than 1 or undefined.
6927 i.e. change #ifdef to #if, etc.
6928
6929 * _scm.h: fix various preprocessor usages of new public symbols to
6930 expect 0 or 1 values rather than 1 or undefined. i.e. change
6931 #ifdef to #if, etc.
6932
d11d697a
MV
69332003-03-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6934
9686f86d
MV
6935 * init.c (scm_init_guile_1): Call scm_i_init_deprecated.
6936
6937 * deprecated.c, deprecated.h: New files, to collect deprecated
6938 things in one place.
6939 * Makefile.am: Added them in all the right places.
6940
d11d697a
MV
6941 * Makefile.am (EXTRA_DIST): Added "scmconfig.h.top".
6942 (scmconfig.h): Get "scmconfig.h.top" from $(srcdir) so that VPATH
6943 builds work.
9686f86d
MV
6944 (DOT_X_FILES): Removed "iselect.x".
6945 (DOT_DOC_FILES): Removed "iselect.doc".
d11d697a 6946
e3c0c3b9
RB
69472003-03-25 Rob Browning <rlb@defaultvalue.org>
6948
6949 * win32-socket.h: #include "libguile/__scm.h". Replace usage of
6950 HAVE_WINSOCK2_H with SCM_HAVE_WINSOCK2_H.
6951
6952 * win32-socket.c: #include <config.h> if HAVE_CONFIG_H.
6953
6954 * vports.c: #include <config.h> if HAVE_CONFIG_H.
6955
6956 * unif.c: #include <config.h> if HAVE_CONFIG_H. Replace usage of
6957 HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
6958
6959 * threads.h: replace usage of struct timespect with
6960 scm_t_timespec. Replace usage of USE_PTHREAD_THREADS with
6961 SCM_USE_PTHREAD_THREADS. Remove typedef for struct timespec in
6962 favor of scm_t_timespec from scmconfig.h.
6963
6964 * threads.c: move libguile/_scm.h include to the top so we pick up
6965 any critical defines like _GNU_SOURCE early. Replace usage of
6966 struct timespect with scm_t_timespec. Replace usage of
6967 STACK_GROWS_UP with SCM_STACK_GROWS_UP. Replace usage of
6968 USE_PTHREAD_THREADS with SCM_USE_PTHREAD_THREADS.
6969
6970 * threads-plugin.h: replace usage of struct timespect with
6971 scm_t_timespec.
6972
6973 * threads-plugin.c: #include <config.h> if HAVE_CONFIG_H. Replace
6974 usage of struct timespect with scm_t_timespec.
6975
6976 * tags.h: move HAVE_STDINT_H handling to scmconfig.h. Move
6977 HAVE_INTTYPES_H handling to scmconfig.h. #include
6978 "libguile/__scm.h". Rework handling for scm_t_bits,
6979 scm_t_signed_bits, SCM_T_BITS_MAX, SCM_T_SIGNED_BITS_MAX,
6980 SCM_T_SIGNED_BITS_MIN, and SIZEOF_SCM_T_BITS to use scm_t_intptr,
6981 scm_t_uintptr, SCM_SIZEOF_INTPTR_T, and SCM_SIZEOF_UINTPTR_T, and
6982 SCM_SIZEOF_UNSIGNED_LONG. Rename usage of HAVE_ARRAYS to
6983 SCM_HAVE_ARRAYS.
6984
6985 * symbols.c: #include <config.h> if HAVE_CONFIG_H.
6986
6987 * struct.c: #include <config.h> if HAVE_CONFIG_H.
6988
6989 * strports.c: #include <config.h> if HAVE_CONFIG_H.
6990
6991 * strop.c: #include <config.h> if HAVE_CONFIG_H.
6992
6993 * stime.h: move handling of time related headers to scmconfig.h.
6994
6995 * stime.c: #include <config.h> if HAVE_CONFIG_H.
6996
6997 * stacks.c: replace usage of STACK_GROWS_UP with
6998 SCM_STACK_GROWS_UP.
6999
7000 * sort.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
7001 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7002
7003 * socket.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
7004 of uint32 and HAVE_UINT_32 with scm_t_int32.
7005
7006 * smob.c: #include <config.h> if HAVE_CONFIG_H.
7007
7008 * simpos.c: #include <config.h> if HAVE_CONFIG_H.
7009
7010 * script.c: #include <config.h> if HAVE_CONFIG_H.
7011
7012 * scmsigs.c: #include <config.h> if HAVE_CONFIG_H.
7013
7014 * scmconfig.h.top: new file -- preamble for scmconfig.h.
7015
7016 * rw.c: #include <config.h> if HAVE_CONFIG_H.
7017
7018 * regex-posix.c: #include <config.h> if HAVE_CONFIG_H.
7019
7020 * read.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7021
7022 * rdelim.c: #include <config.h> if HAVE_CONFIG_H.
7023
7024 * random.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
7025 of LONG32, LONG64, SIZEOF_LONG, and HAVE_LONG_LONGS with
7026 scm_t_int32, scm_t_int64, and SCM_HAVE_T_INT64. Rename usage of
7027 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7028
7029 * ramap.c: replace usage of HAVE_LONG_LONGS with
7030 "SCM_SIZEOF_LONG_LONG != 0".
7031
7032 * putenv.c: #include <config.h> if HAVE_CONFIG_H. #include
7033 "libguile/scmconfig.h".
7034
7035 * pthread-threads.c: #include <config.h> if HAVE_CONFIG_H.
7036
7037 * print.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7038 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7039
7040 * posix.c: #include <config.h> if HAVE_CONFIG_H.
7041
7042 * ports.c: #include <config.h> if HAVE_CONFIG_H.
7043
7044 * objects.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7045
7046 * numbers.h: replace usage of HAVE_FLOATINGPOINT_H with
7047 SCM_HAVE_FLOATINGPOINT_H. Replace usage of HAVE_IEEEFP_H with
7048 SCM_HAVE_IEEEFP_H. Replace usage of HAVE_NAN_H with
7049 SCM_HAVE_NAN_H. Replace usage of STDC_HEADERS with
7050 SCM_HAVE_STDC_HEADERS. Replace usage of ptrdiff_t with
7051 scm_t_ptrdiff. Replace usage of HAVE_LONG_LONGS with
7052 "SCM_SIZEOF_LONG_LONG != 0".
7053
7054 * numbers.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
7055 of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0". Replace
7056 usage of ptrdiff_t with scm_t_ptrdiff. Replace usage of
7057 SIZEOF_PTRDIFF_T with SCM_SIZEOF_SCM_T_PTRDIFF.
7058
7059 * num2integral.i.c: #include <config.h> if HAVE_CONFIG_H.
7060
7061 * null-threads.h: replace usage of struct timespect with
7062 scm_t_timespec.
7063
7064 * net_db.c: #include <config.h> if HAVE_CONFIG_H.
7065
7066 * mkstemp.c: #include <config.h> if HAVE_CONFIG_H. #include
7067 "libguile/__scm.h". Remove definition of gcc_uint64_t in favor of
7068 scm_t_uint64 and rename usages.
7069
7070 * mallocs.c: #include <config.h> if HAVE_CONFIG_H.
7071
7072 * load.c: #include <config.h> if HAVE_CONFIG_H.
7073
7074 * iselect.h: move handling of time related headers to scmconfig.h.
7075 Rename usage of HAVE_SYS_SELECT_H to SCM_HAVE_SYS_SELECT_H.
7076 Rename usage of HAVE_WINSOCK2_H to SCM_HAVE_WINSOCK2_H. Rename
7077 usage of USE_COOP_THREADS to SCM_USE_COOP_THREADS.
7078
7079 * iselect.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7080 of USE_COOP_THREADS to SCM_USE_COOP_THREADS. Rename usage of
7081 USE_NULL_THREADS to SCM_USE_NULL_THREADS.
7082
7083 * ioext.c: #include <config.h> if HAVE_CONFIG_H.
7084
7085 * inline.h: #include "libguile/__scm.h" at the top. Change code
7086 to use SCM_C_INLINE and SCM_INLINE_C_INCLUDINT_INLINE_H to decide
7087 what to do instead of creating a new public #define. Rename usage
7088 of USE_COOP_THREADS to SCM_USE_COOP_THREADS. Rename usage of
7089 USE_NULL_THREADS to SCM_USE_NULL_THREADS. Rename usage of
7090 USE_COPT_THREADS to SCM_USE_COPT_THREADS.
7091
7092 * inline.c: rearrange handling -- now we just #define
7093 SCM_INLINE_C_INCLUDING_INLINE_H to 1 and #include
7094 "libguile/inline.h". scmconfig.h will define SCM_C_INLINE as
7095 appropriate, and we use that in inline.h along with the above
7096 define to determine how to respond.
7097
7098 * init.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
7099 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7100
7101 * guile.c: #include <config.h> if HAVE_CONFIG_H.
7102
7103 * gh_data.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7104 of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7105
7106 * gh.h: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7107
7108 * gen-scmconfig.h.in: new file -- see gen-scmconfig.c for details.
7109
7110 * gen-scmconfig.c: new file -- see comments in file for details.
7111
7112 * gdbinit.c: #include <config.h> if HAVE_CONFIG_H.
7113
7114 * gc_os_dep.c: #include <config.h> if HAVE_CONFIG_H. Replace
7115 usage of STACK_GROWS_UP with SCM_STACK_GROWS_UP.
7116
7117 * gc.h: replace usage of SIZEOF_LONG with
7118 SCM_SIZEOF_UNSIGNED_LONG. Replace usage of USE_PTHREAD_THREADS
7119 with SCM_USE_PTHREAD_THREADS. Remove SCM_SIZEOF_LONG definition
7120 since we handle that in scmconfig.h now.
7121
7122 * gc.c: #include <config.h> if HAVE_CONFIG_H.
7123
7124 * gc-mark.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7125 of HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of
7126 HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7127
7128 * gc-malloc.c: #include <config.h> if HAVE_CONFIG_H.
7129
7130 * gc-card.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7131 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7132
7133 * fports.c: #include <config.h> if HAVE_CONFIG_H.
7134
7135 * filesys.c: #include <config.h> if HAVE_CONFIG_H.
7136
7137 * feature.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7138 of USE_NULL_THREADS to SCM_USE_NULL_THREADS.
7139
7140 * extensions.c: #include <config.h> if HAVE_CONFIG_H.
7141
7142 * evalext.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7143 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7144
7145 * eval.c: #include <config.h> if HAVE_CONFIG_H. #include
7146 "libguile/__scm.h" rather than scmconfig.h. Rename usage of
7147 HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS
7148 with "SCM_SIZEOF_LONG_LONG != 0".
7149
7150 * error.c: #include <config.h> if HAVE_CONFIG_H.
7151
7152 * eq.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
7153 HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS
7154 with "SCM_SIZEOF_LONG_LONG != 0".
7155
7156 * deprecation.c: #include <config.h> if HAVE_CONFIG_H.
7157
7158 * coop.c: replace usage of struct timespect with scm_t_timespec.
7159 #include <config.h> if HAVE_CONFIG_H.
7160
7161 * coop-threads.c: #include "libguile/_scm.h" early. Replace
7162 usage of struct timespect with scm_t_timespec. Replace usage of
7163 STACK_GROWS_UP with SCM_STACK_GROWS_UP.
7164
7165 * coop-pthreads.c: #include "libguile/_scm.h" early. Replace
7166 usage of struct timespect with scm_t_timespec. Replace usage of
7167 STACK_GROWS_UP with SCM_STACK_GROWS_UP.
7168
7169 * coop-defs.h: move handling of time related headers to
7170 scmconfig.h. Add #include "libguile/__scm.h". Rename usage of
7171 HAVE_WINSOCK2_H to SCM_HAVE_WINSOCK2_H. Replace usage of struct
7172 timespect with scm_t_timespec.
7173
7174 * convert.i.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7175
7176 * convert.h: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7177
7178 * convert.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7179 of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7180
7181 * continuations.c: move libguile/_scm.h include to the top so we
7182 pick up any critical defines like _GNU_SOURCE early.
7183
7184 * backtrace.c: #include <config.h> if HAVE_CONFIG_H.
7185
7186 * async.c: #include <config.h> if HAVE_CONFIG_H.
7187
7188 * alloca.c: #include <config.h> if HAVE_CONFIG_H.
7189
7190 * _scm.h: #include <config.h> if HAVE_CONFIG_H.
7191 Rename usage of USE_PTHREAD_THREADS to SCM_USE_PTHREAD_THREADS.
7192
7193 * __scm.h: move libguile/scmconfig.h include up to the top, so
7194 we're sure to pick up any critical defines like _GNU_SOURCE early.
7195 #include <limits.h> removed in favor of scmconfig.h inclusion when
7196 appropriate. STDC_HEADERS based inclusion of stdlib.h,
7197 sys/types.h, stddef.h, and sys/stdtypes.h removed in favor of
7198 scmconfig.h inclusion when appropriate. Various Win32 related
7199 definitions removed in favor of scmconfig.h inclusion when
7200 appropriate.
7201 (HAVE_UINTPTR_T): definition removed (see NEWS).
7202 (SIZEOF_PTRDIFF_T): definition removed (see NEWS).
7203 (HAVE_LONG_LONGS): definition removed (see NEWS).
7204 (HAVE_LONG_LONG): definition removed (see NEWS).
7205 (HAVE_PTRDIFF_T): definition removed (see NEWS).
7206
7207 * Makefile.am: scmconfig.h is now generated by building and
7208 running gen-scmconfig.h and capturing its output. gen-scmconfig
7209 uses config.h and the configure.in generated gen-scmconfig.h to
7210 decide what to output. See gen-scmconfig.c for details.
7211 (noinst_PROGRAMS): add gen-scmconfig.
7212 (gen_scmconfig_SOURCES): new variable.
7213 (gen-scmconfig.$(OBJEXT)): new target - be careful to handle
7214 cross-compiling right.
7215 (scmconfig.h): build scmconfig.h from gen-scmconfig's output.
7216 (BUILT_SOURCES): add scmconfig.h.
7217
25e0bf97
MV
72182003-03-19 Marius Vollmer <mvo@zagadka.de>
7219
7220 * gc_os_dep.c: Added defines for sparc-unknown-netbsdelf1.5 from
7221 Adrian Bunk. Thanks!
7222
74b6d6e4
MD
72232003-03-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7224
7225 * goops.c (make_class_from_template): New fourth arg:
7226 applicablep.
7227 (scm_class_extended_generic_with_setter, scm_class_self): Fixed
7228 cpls.
7229
7230 * smob.c (scm_set_smob_apply): Call scm_i_inherit_applicable.
7231
7232 * goops.c, objects.c, objects.h (scm_make_extended_class): New
7233 second arg: applicablep.
7234 (scm_i_inherit_applicable): New function.
7235
7236 * goops.c, goops.h (scm_class_applicable,
7237 scm_class_extended_accessor): New classes.
7238
5c9e7dad
DH
72392003-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
7240
7241 * procs.c (scm_procedure_documentation): Removed redundant
7242 SCM_NIMP test and replaced other calls to SCM_IMP by more explicit
7243 predicates.
7244
f8af5c6d
MD
72452003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7246
c614a00b
MD
7247 * list.c, list.h (scm_filter, scm_filter_x): New functions.
7248
109c2c9f
MD
7249 * modules.c (scm_module_import_interface): New function.
7250
f8af5c6d
MD
7251 * goops.c, goops.h (scm_class_accessor_method): Renamed from
7252 scm_class_accessor.
7253 (scm_class_accessor): New class.
7254
a48d60b1
MD
72552003-03-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7256
7257 * goops.c (scm_primitive_generic_generic): Enable primitive
7258 generic if not enabled.
7259 (scm_sys_goops_loaded): Setup unextended primitive generics.
7260
7261 * goops.c, goops.h (scm_c_extend_primitive_generic): New function.
7262
7263 * snarf.h (SCM_PRIMITIVE_GENERIC, SCM_PRIMITIVE_GENERIC_1): New
7264 snarf macros.
7265
7266 * numbers.c (scm_abs): Use SCM_PRIMITIVE_GENERIC. (This is only a
7267 testing example. All uses of SCM_GPROC should be converted.)
7268
7269 * procprop.c (scm_stand_in_scm_proc): Use scm_assq instead of
7270 scm_assoc.
7271
7272 * eq.c (scm_equal_p): Turned into a primitive generic.
7273
84edc049
RB
72742003-02-27 Rob Browning <rlb@defaultvalue.org>
7275
7276 * Makefile.am (scmconfig.h): new target -- generate file from
7277 ../config.h.
7278 (modinclude_HEADERS): remove version.h.
7279 (nodist_modinclude_HEADERS): add version.h.
7280
ea5c9285
MD
72812003-02-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7282
b4a1358c
MD
7283 This fixes a serious GC bug, introduced during the latest
7284 reorganization of the GC, which disabled freeing of structs and
7285 GOOPS objects:
7286
7287 * struct.c (scm_struct_prehistory): Init scm_i_structs_to_free to
7288 SCM_EOL.
53af8255
MD
7289 (scm_struct_prehistory): Move scm_free_structs to
7290 scm_before_mark_c_hook.
ea5c9285 7291
b4a1358c
MD
7292 * gc-card.c (sweep_card): Check that we haven't swept structs on
7293 this card before. That can happen if scm_i_sweep_all_segments has
7294 been called from some other place than scm_igc.
7295
c35738c1
MD
72962003-02-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7297
231a4ea8
MD
7298 * environments.c (DEFAULT_OBARRAY_SIZE): Changed from 137 to 31
7299 (since hash tables now adapt their size).
7300
7301 * modules.c (scm_modules_prehistory): Changed from 2001 to 1533
7302 (current number of prehistory bindings; hashtable code will select
7303 a prime which is greater than this value).
7304
7305 * symbols.c (scm_symbols_prehistory): Changed from 1009 to 2139
7306 (current number of initial symbols).
7307
7308 * properties.c (scm_init_properties): Don't specify size of
7309 scm_properties_whash.
7310
7311 * objprop.c (scm_init_objprop): Don't specify size of
7312 scm_object_whash.
7313
7314 * keywords.c (scm_init_keywords): Don't specify a hash table size.
7315
c35738c1
MD
7316 * hooks.c (scm_c_hook_add): Fixed bug in append mode.
7317
7318 The following changes introduce the use of resizable hash tables
7319 throughout Guile. It also renames the old *-hash-table* functions
7320 to *-alist-vector* and places them, together with the rest of the
7321 weak vector support, in the module (ice-9 weak-vector). We should
7322 probably introduce a new, better, API for weak references, for
7323 example "weak pairs" a la MIT-Scheme. (In Chez scheme, they even
7324 look like and are used like ordinary pairs.)
7325
7326 * environments.c (obarray_enter, obarray_retrieve, obarray_remove,
7327 leaf_environment_fold, obarray_remove_all): Use hashtable
7328 accessors.
7329
7330 * gc.c (scm_init_storage): Moved hook initialization to
7331 scm_storage_prehistory.
7332 (scm_storage_prehistory): New function.
7333 (scm_igc): Added commentary about placement of
7334 scm_after_sweep_c_hook.
7335
7336 * gc-mark.c (scm_mark_all): Use hashtable accessors.
7337 (scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
7338 SCM_WVECT_WEAK_VALUE_P.
7339
7340 * hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
7341 functions.
7342 (scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
7343 Removed.
7344 (scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
7345 scm_make_doubly_weak_hash_table): Moved here from weaks.c.
7346
7347 * init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
7348 calls to scm_storage_prehistory and scm_hashtab_prehistory.
7349
7350 * modules.c (module-reverse-lookup): Use hashtable accessors.
7351
7352 * symbols.c, symbols.h (scm_i_hash_symbol): New function.
7353
7354 * weaks.c, weaks.h (scm_make_weak_key_alist_vector,
7355 scm_make_weak_value_alist_vector,
7356 scm_make_doubly_weak_alist_vector): New functions.
7357
7358 * weaks.c (scm_init_weaks_builtins): New function.
7359
7360 * weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
7361 SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
7362 SCM_WVECT_NOSCAN_P): New macros.
7363
7364 * weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
7365 and SCM_WVECT_WEAK_VALUE_P.
7366
7367 * weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
7368 allocate_weak_vector and exported.
7369
0a4c1355
MD
73702003-02-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7371
7372 * hashtab.c: Undid thread safety. (We decided that it's better to
7373 let the user explicitly protect the tables (or not) according what
7374 is suitable for the application.)
7375
87ca11ff
MD
73762003-02-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7377
7378 * hashtab.c (scm_hash_fn_remove_x, scm_internal_hash_fold): Made
7379 thread safe and handle resizing tables.
7380 (scm_ihashx, scm_sloppy_assx, scm_delx_x): Removed
7381 SCM_DEFER/ALLOW_INTS.
7382
f59a096e
MD
73832003-02-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7384
7385 * hashtab.c (scm_vector_to_hash_table,
7386 scm_c_make_resizing_hash_table, scm_make_hash_table): New
7387 functions.
7388 (scm_hash_fn_get_handle, scm_hash_fn_create_handle_x): Made thread
7389 safe and handle resizing tables.
7390
7391 * weaks.c (scm_make_weak_key_hash_table,
7392 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
7393 Size argument made optional. Return resizable table if not
7394 specified.
7395
4b612c5b
MD
73962003-02-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7397
7398 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
7399 Fixed formals tests for closures. (Thanks to Kevin Ryde.)
7400
b3d7f6df
MD
74012003-02-05 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7402
7403 * debug.c (scm_procedure_source): Handle all objects for which
7404 procedure? is #t. (Thanks to Bill Schottstaedt.)
7405
756414cf
MD
74062003-01-23 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7407
361d631f
MD
7408 * futures.c (mark_futures): Don't need to mark data of recycled
7409 futures.
7410 (scan_futures, cleanup_undead): Be smarter about marking
7411 futures---avoid unnecessary passes through future lists.
7412
756414cf
MD
7413 * futures.h, futures.c: New files; Introduced recycling of
7414 futures. For fine-grained threading this lifts performance to
7415 another level. We can now use parallelization in inner loops of
7416 Guile programs without impossible overhead.
7417
7418 * threads.h, threads.c: Moved futures to their own file.
7419
7420 * Makefile.am (libguile_la_SOURCES): Added futures.c.
7421 (DOT_X_FILES): Added futures.x.
7422 (DOT_DOC_FILES): Added futures.doc.
7423 (modinclude_HEADERS): Added futures.h.
7424
7425 * threads.c, threads.h (scm_i_create_thread): Renamed from
7426 create_thread and made global.
7427
7428 * futures.c (scm_make_future): New procedure.
7429
7430 * eval.c: #include "libguile/futures.h".
7431
7432 * init.c: #include "futures.h"
7433 (scm_init_guile_1): Call scm_init_futures.
7434
7435 * stime.c (SCM_TIME_UNITS_PER_SECOND): Renamed from CLKTCK.
7436
7437 * stime.h (SCM_TIME_UNITS_PER_SECOND): Definition moved here.
7438
7439 * eval.c, eval.h (scm_trampoline_0, scm_i_call_closure_0): New
7440 functions.
7441
7442 * eval.c (scm_trampoline_1): Fixed arguments test for closures.
7443
b4debead
MD
74442003-01-22 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7445
7446 * threads.c (create_thread): Don't unwind dynwind chain of parent
7447 thread before creation. Just start the new thread with an empty
7448 dynwind chain.
7449
93f26b7b
MD
74502003-01-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7451
7452 * evalext.c, evalext.h (scm_self_evaluating_p): New function.
7453
38d8927c
MD
74542003-01-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7455
41c96c32
MD
7456 * threads.c (scm_timed_wait_condition_variable): Support timed
7457 waiting also for simple condition variables.
7458
38d8927c
MD
7459 * goops.c (TEST_CHANGE_CLASS): Use scm_change_object_class instead
7460 of calling the procedure change-object-class.
7461
9cf5d9b7
MD
74622003-01-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7463
7464 * ramap.c (scm_ramapc): Typo in error message.
7465
bbf8d523
MD
74662003-01-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7467
b46fae00
MD
7468 * goops.c (scm_sys_prep_layout_x): Bugfix: Only create layout for
7469 slots with instance allocation.
7470
bbf8d523
MD
7471 * goops.c, goops.h (scm_class_extended_generic_with_setter): New
7472 class.
7473 (scm_compute_applicable_methods): Use scm_generic_function_methods.
7474
7475 * goops.c (scm_generic_function_methods): Support extended
7476 generic functions.
7477
ebf9b47c
MD
74782002-12-29 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7479
7480 * eval.c (unmemocopy): Bugfix: scm_sym_delay --> scm_sym_future.
2e37d6a2 7481 Thanks to Neil for pointing this out!
ebf9b47c 7482
14a9ba3f
NJ
74832002-12-29 Neil Jerram <neil@ossau.uklinux.net>
7484
7485 * lang.h: Remove declarations matching definitions removed from
7486 lang.c (just below).
7487
c6a040a8
NJ
74882002-12-28 Neil Jerram <neil@ossau.uklinux.net>
7489
6054d805
NJ
7490 * lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null,
7491 scm_m_while, scm_nil_eq): Remove definitions that were superfluous
7492 and already commented out.
7493
c6a040a8
NJ
7494 * read.h (scm_lreadparen), read.c (scm_lreadr, scm_read_token,
7495 scm_lreadparen): Support reading vectors with Elisp syntax if
7496 SCM_ELISP_READ_EXTENSIONS is defined. (SCM_ELISP_READ_EXTENSIONS
7497 is not currently defined, and there isn't even a configure switch
7498 to enable it yet.)
7499
3742c12f
MV
75002002-12-26 Marius Vollmer <mvo@zagadka.ping.de>
7501
7502 * Makefile.am (c-tokenize.o): Refer to source via $< so that vpath
7503 builds work.
7504 (EXTRA_DIST): Added version.h.in.
7505
fb50ef08
MD
75062002-12-21 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7507
7508 This change makes it possible for one thread to do lazy sweeping
7509 while other threads are running. Now only the mark phase need to
7510 have all threads asleep. We should look further into this issue.
7511 Presently, I've put the locking of scm_i_sweep_mutex at
7512 "conservative" places due to my current lack of knowledge about
7513 the garbage collector. Please feel free to restrict these regions
7514 further to allow for maximal parallelism!
7515
7516 * gc.c, gc.h (scm_i_sweep_mutex): New mutex.
7517
7518 * gc.c (scm_gc_for_newcell), gc-malloc.c (scm_realloc,
7519 scm_gc_register_collectable_memory): Substitute locking of
7520 scm_i_sweep_mutex for calls to scm_i_thread_put_to_sleep.
7521 (scm_igc): Lock sweep mutex here instead of in callers; Calls to
7522 scm_i_thread_put_to_sleep/scm_i_thread_wake_up used to demarkate
7523 the single-thread section (which now only contains the mark
7524 phase).
7525 (scm_gc): Don't lock sweeo mutex here since scm_igc locks it;
7526 Removed SCM_DEFER/ALLOW_INTS. Simply call scm_igc directly.
7527
7528 * threads.c (gc_section_mutex): Removed.
7529
9ed24633
MD
75302002-12-19 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7531
0d48aca5
MD
7532 * threads.c (create_thread): Clear parent field in root state in
7533 order not to unnecessarily remember dead threads.
7534
9ed24633
MD
7535 * eval.c (call_subr2o_1, call_lsubr2_2): New functions.
7536 (scm_trampoline_1, scm_trampoline_2): Use them.
7537
29717c89
MD
75382002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7539
7540 Partial introduction of real plugin interface.
7541
7542 * Makefile.am (modinclude_HEADERS): Added threads-plugin.h.
7543 (EXTRA_DIST): Added threads-plugin.c.
7544
7545 * threads-plugin.h, threads-plugin.c: New files.
7546
7547 * threads.h: #include "libguile/threads-plugin.h".
7548
7549 * threads.c: #include "libguile/threads-plugin.c".
7550
7551 * pthread-threads.c: Temporarily remove debugging functions.
7552
7553 * threads.c, threads.h (scm_yield): Added back.
7554
e29e0b09
MD
75552002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7556
7557 * threads.c (really_launch): Detach before unlocking
7558 thread_admin_mutex in order not to risk being joined.
7559 (scm_i_thread_put_to_sleep, scm_i_thread_wake_up): Keep
7560 thread_admin_mutex locked during GC.
7561
7562 * pthread-threads.c, pthread-threads.h: Improvements to debugging
7563 functions.
7564
0b6843b1 75652002-12-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
93cd4dcd 7566
6da2dfc4
MD
7567 * pthread-threads.c, pthread-threads.h (SCM_DEBUG_THREADS): Added
7568 support for debugging mutex operations.
7569
1b92fb6b
MD
7570 * threads.c (scm_thread): Removed filed joining_threads.
7571 (thread_print): Print thread number as well as address of thread
7572 structure.
0b6843b1
MD
7573 (scm_join_thread): Bugfix.
7574 (scm_lock_mutex, scm_try_mutex, scm_unlock_mutex,
7575 scm_timed_wait_condition_variable, scm_signal_condition_variable,
7576 scm_broadcast_condition_variable): Use the low-level API.
7577 (scm_all_threads): Return copy of thread list (to prevent
7578 unintended destruction).
7579 (scm_threads_prehistory): Initialize heap_mutex of fake thread.
1b92fb6b 7580
93cd4dcd
MD
7581 * pthread-threads.c, pthread-threads.h, threads.c: Fixes to
7582 pthread "native" recursive mutex support.
7583
2ff4f181
MD
75842002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7585
28d52ebb
MD
7586 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): New definitions.
7587 Simply lock a thread C API recursive mutex.
7588 (SCM_NONREC_CRITICAL_SECTION_START,
7589 SCM_NONREC_CRITICAL_SECTION_END, SCM_REC_CRITICAL_SECTION_START,
7590 SCM_REC_CRITICAL_SECTION_END): Removed.
7591
7592 * eval.c: Replaced SOURCE_SECTION_START / SOURCE_SECTION_END with
7593 direct calls to scm_rec_mutex_lock / unlock around the three calls
7594 to scm_m_expand_body.
7595
7596 * eval.c, eval.h (promise_free): New function.
7597 (scm_force): Rewritten; Now thread-safe; Removed
7598 SCM_DEFER/ALLOW_INTS.
7599
7600 * pthread-threads.h: Added partially implemented plugin interface
7601 for recursive mutexes. These are, for now, only intended to be
7602 used internally within the Guile implementation.
7603
7604 * pthread-threads.c: New file.
7605
7606 * threads.c: Conditionally #include "pthread-threads.c".
7607
7608 * eval.c, eval.h (scm_makprom, scm_force): Rewritten to be
7609 thread-safe;
7610
7611 * snarf.h (SCM_MUTEX, SCM_GLOBAL_MUTEX, SCM_REC_MUTEX,
7612 SCM_GLOBAL_REC_MUTEX): New macros.
7613
7614 * eval.c, threads.c, threads.h, snarf.h: Rewrote critical section
7615 macros---use mutexes instead.
7616
7617 * tags.h (SCM_IM_FUTURE): New tag.
7618
7619 * eval.c (scm_m_future): New primitive macro.
7620 (SCM_CEVAL): Support futures.
7621 (unmemocopy): Support unmemoization of futures.
7622
7623 * print.c (scm_isymnames): Name of future isym.
7624
2ff4f181
MD
7625 * version.c: Unmade some changes to my private copy that got
7626 committed by mistake.
7627
392d2833
MD
76282002-12-11 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7629
e200ddee
MD
7630 * gc-malloc.c, gc.h, init.c: Reverted gc-malloc change of
7631 2002-12-10.
7632
392d2833
MD
7633 * gc.c (scm_igc): Don't call scm_i_thread_invalidate_freelists.
7634
7635 * gc.c (scm_gc_sweep): Call it here instead, which is a more
7636 logical place.
7637
7638 * threads.c (create_thread): Remember root object until the handle
7639 of the new thread is on all_threads list.
7640
7641 * root.c (scm_make_root): Moved copying of fluids until after
7642 creation of root handle so that the fluids are GC protected. Also
7643 removed the critical section.
7644
c4c52ebe
MD
76452002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7646
960c408c
MD
7647 * gc-malloc.c, gc.h (scm_gc_malloc_prehistory): New function.
7648
3cdde9d6 7649 * gc-malloc.c (malloc_mutex): New mutex.
960c408c 7650 (scm_gc_malloc_prehistory): Initialize it.
3cdde9d6
MD
7651 (scm_realloc): Serialize call to realloc
7652 (scm_calloc): Same for calloc.
7653 Thanks to Wolfgang Jaehrling!
7654 (Now we have to make sure all calls to malloc/realloc are made
7655 through scm_malloc.)
7656
960c408c
MD
7657 * init.c (scm_init_guile_1): Call scm_gc_malloc_prehistory.
7658
c4c52ebe
MD
7659 * threads.c (really_launch): Release heap (to prevent deadlock).
7660 (create_thread): Release heap before locking thread admin mutex.
7661
b0dc3d71
MD
76622002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7663
7664 * threads.c (scm_i_thread_invalidate_freelists): New
7665 function.
7666
7667 * gc.c (scm_igc): Call scm_i_thread_invalidate_freelists.
7668
7669 * modules.c (scm_export): Inserted a return statement.
7670
06e80f59
HWN
76712002-12-10 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7672
7673 * modules.c (scm_export): new function
7674
7675 * gc-card.c: add a note about malloc()/free() overhead.
7676
a12611c3
MD
76772002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7678
7679 * Makefile.am (c-tokenize.$(OBJEXT)): Don't look for c-tokenize.c
7680 in srcdir.
7681
c7fabadf
MD
76822002-12-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7683
7684 These changes remove scm_ints_disabled (which hasn't has any
7685 effect in Guile for quite some time).
7686
7687 * async.c, error.h (scm_ints_disabled): Removed.
7688
7689 * gc.c (scm_gc_for_newcell), init.c (scm_init_guile_1),
7690 root.c (scm_internal_cwdr), gdbint.c (SCM_BEGIN_FOREIGN_BLOCK,
7691 SCM_END_FOREIGN_BLOCK): Don't touch scm_ints_disabled.
7692 (old_ints): Removed.
7693
7694 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Define as a recursive
7695 critical section.
7696 (SCM_REDEFER_INTS, SCM_ALLOW_INTS): Define as SCM_DEFER_INTS and
7697 SCM_ALLOW_INTS.
7698
9bc4701c
MD
76992002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7700
52340b65
MD
7701 * threads.c (scm_mutex_lock, scm_cond_wait, scm_cond_timedwait):
7702 Removed accidental #if 0 around these functions.
7703
9bc4701c
MD
7704 These changes are the start of support for preemptive
7705 multithreading. Marius and I have agreed that I commit this code
7706 into the repository although it isn't thoroughly tested and surely
7707 introduces many bugs. The bugs should only be exposed when using
7708 threads, though. Signalling and error handling for threads is
7709 very likely broken. Work on making the implementation cleaner and
7710 more efficient is needed.
7711
7712 * __scm.h (SCM_ALLOW_INTS_ONLY): Removed.
7713 (SCM_NONREC_CRITICAL_SECTION_START,
7714 SCM_NONREC_CRITICAL_SECTION_END, SCM_REC_CRITICAL_SECTION_START,
7715 SCM_REC_CRITICAL_SECTION_END): New macros.
7716 (SCM_CRITICAL_SECTION_START/END): Defined here.
7717
7718 * eval.c: Insert SOURCE_SECTION_START / SOURCE_SECTION_END around
7719 the three calls to scm_m_expand_body.
7720
7721 * gc.h: #include "libguile/pthread-threads.h";
7722 (SCM_FREELIST_CREATE, SCM_FREELIST_LOC): New macros.
7723
7724 * gc.c (scm_i_freelist, scm_i_freelist2): Defined to be of type
7725 scm_t_key;
7726
7727 * gc.c, gc-freelist.c, inline.h: Use SCM_FREELIST_LOC for freelist
7728 access.
7729
7730 * gc-freelist.c (scm_gc_init_freelist): Create freelist keys.
7731
7732 * gc-freelist.c, threads.c (really_launch): Use
7733 SCM_FREELIST_CREATE.
7734
7735 * gc-malloc.c (scm_realloc, scm_gc_register_collectable_memory):
7736
7737 * gc.c (scm_i_expensive_validation_check, scm_gc,
7738 scm_gc_for_newcell): Put threads to sleep before doing GC-related
7739 heap administration so that those pieces of code are executed
7740 single-threaded. We might consider rewriting these code sections
7741 in terms of a "call_gc_code_singly_threaded" construct instead of
7742 calling the pair of scm_i_thread_put_to_sleep () and
7743 scm_i_thread_wake_up (). Also, we would want to have as many of
7744 these sections eleminated.
7745
7746 * init.c (scm_init_guile_1): Call scm_threads_prehistory.
7747
7748 * inline.h: #include "libguile/threads.h"
7749
7750 * pthread-threads.h: Macros now conform more closely to the
7751 pthreads interface. Some of them now take a second argument.
7752
7753 * threads.c, threads.h: Many changes.
7754
77552002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7756
7757 * Makefile.am (version.h): Changed $^ --> $< in rule for
7758 version.h.
7759
b2cbe8d8
RB
77602002-12-08 Rob Browning <rlb@defaultvalue.org>
7761
7762 * version.h.in (SCM_MICRO_VERSION): use @--@ substitution now.
7763 (SCM_MINOR_VERSION): use @--@ substitution now.
7764 (SCM_MICRO_VERSION): use @--@ substitution now.
7765 (scm_effective_version): new function prototype.
7766
7767 * version.c (scm_effective_version): new function, also add
7768 effective-version.
7769
7770 * Makefile.am (schemelibdir): VERSION -> GUILE_EFFECTIVE_VERSION.
7771 (libpath.h): use GUILE_EFFECTIVE_VERSION to compute
7772 SCM_LIBRARY_DIR.
7773 (version.h): generate this here rather than configure.in. This
7774 approach tracks source edits better (i.e. more immediately).
7775 Might be worth considering for other .in files too.
7776
5441c65c
MV
77772002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
7778
7779 Reorganized thread package selection. A thread package now only
7780 implements a small set of pthread like functions and Guile
7781 implements the rest on top of that. Guile's implementation is
7782 what the "coop-pthreads" package has been previously. Support for
7783 "coop" threads has been removed until I get time to add it again.
7784
7785 * Makefile.am (libguile_la_SOURCES): Removed iselect.c.
7786 (noinst_HEADERS): Removed coop-threads.c, coop-threads.h, coop.c,
7787 null-threads.c, coop-pthreads.c.
7788 (modinclude_HEADERS): Removed coop-defs.h, coop-pthreads.h. Added
7789 pthread-threads.h.
7790
7791 * validate.h (SCM_VALIDATE_THREAD): Moved to threads.h.
7792
7793 * threads.h: Do not include "libguile/coop-defs.h". Include
7794 "libguile/pthread-threads.h" for USE_COPT_THREADS. Removed
7795 (previously deprecated) C level thread API prototypes. They are
7796 now in the thread package specific headers, "null-threads.h" and
7797 "pthread-threads.h".
7798 (SCM_VALIDATE_THREAD, SCM_VALIDATE_MUTEX, SCM_VALIDATE_CONDVAR):
7799 New.
7800 (scm_threads_init): Removed.
7801 (SCM_CRITICAL_SECTION_START, SCM_CRITICAL_SECTION_END,
7802 SCM_THREAD_SWITCHING_CODE, scm_i_switch_counter,
7803 SCM_I_THREAD_SWITCH_COUNT): Define here.
7804 (scm_single_thread_p): Removed.
7805 (scm_call_with_new_thread): Take two args directly instead of list
7806 of two args.
7807 (scm_i_thread_data, scm_i_set_thread_data, SCM_THREAD_LOCAL_DATA,
7808 SCM_SET_THREAD_LOCAL_DATA): Define here.
7809
7810 * threads.c: Merged with "coop-pthreads.c".
7811
7812 * null-threads.h: Implement pthread-like API as a set of macros.
7813
7814 * pthread-threads.h: New, implement pthread-like API by deferring
7815 to pthread itself.
7816
7817 * init.c (scm_init_guile_1): Do not call scm_init_iselect, which
7818 has been lost in the reorganization.
7819
504d99c5
MD
78202002-12-01 Mikael Djurfeldt <mdj@linnaeus>
7821
7822 The following change makes it possible to move procedure
7823 application dispatch outside inner loops. The motivation was
7824 clean implementation of efficient replacements of R5RS primitives
7825 in SRFI-1.
7826
7827 The semantics is clear: scm_trampoline_N returns an optimized
7828 version of scm_call_N (or NULL if the procedure isn't applicable
7829 on N args).
7830
7831 Applying the optimization to map and for-each increases efficiency
7832 noticeably. For example, (map abs ls) is 8 times faster than
7833 before.
7834
7835 * eval.h (scm_t_trampoline_1, scm_t_trampoline_2): New types.
7836
7837 * eval.c, eval.h (scm_trampoline_1, scm_trampoline_2): New functions.
7838
7839 * eval.c (call_subr2_2, call_lsubr_2, call_closure_2): New functions;
7840 (map, for-each): Handle also application on two args as a special
7841 case; Use trampolines.
7842
7843 Other changes:
7844
7845 * sort.c (scm_cmp_function): Choose subr2less for scm_tc7_subr_2o;
7846 (subr2oless): Removed.
7847 (scm_restricted_vector_sort_x): Use scm_return_first to keep the
7848 vector GC protected.
7849
7850 * eval.c (check_map_args): Use scm_out_of_range_pos instead of
7851 scm_out_of_range.
7852
63dd3413
DH
78532002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
7854
7855 * evalext.[ch] (scm_m_undefine, undefine): Deprecated.
7856
4ba5f279
MD
78572002-11-17 Mikael Djurfeldt <mdj@linnaeus>
7858
7859 * debug.c (scm_make_iloc): Added missing "return".
7860
56ae231f
MV
78612002-11-17 Marius Vollmer <mvo@zagadka.ping.de>
7862
7863 * strports.c (scm_eval_string_in_module): Validate second arg to
7864 be a module. Thanks to Arno Peters!
7865
80b28865
DH
78662002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
7867
7868 * .cvsignore: remove goops.c
7869
c88b1456
DH
78702002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
7871
7872 * modules.c (scm_env_top_level, scm_lookup_closure_module,
7873 module_variable, scm_module_lookup_closure,
7874 scm_module_transformer, scm_sym2var, scm_module_reverse_lookup,
7875 scm_system_module_env_p): Don't compare SCM values with C
7876 operators == or !=. Avoid SCM_IMP predicates. Prefer !SCM_FALSEP
7877 over SCM_NFALSEP.
7878
a8a19efc
DH
78792002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
7880
7881 * eval.h (SCM_MAKE_ILOC): New macro.
7882
7883 * debug.c (scm_make_iloc): Use SCM_MAKE_ILOC instead of computing
7884 the iloc bitpattern here.
7885
76734914
MD
78862002-11-14 Mikael Djurfeldt <mdj@linnaeus>
7887
7888 * coop-pthreads.c, coop-pthreads.h: scm_internal_select should be
7889 part of the API, otherwise it's difficult to write Guile
7890 extensions using non-blocking I/O => moved #include
7891 "libguile/iselect.h" from coop-pthreads.c --> coop-pthreads.h.
7892
7893 * coop-pthreads.c (scm_unlock_mutex): Changed s_lock_mutex -->
7894 s_unlock_mutex.
7895
8b5b4a75
MV
78962002-11-10 Marius Vollmer <mvo@zagadka.ping.de>
7897
7898 * __scm.h (USE_THREADS, GUILE_ISELECT): Do not define here. They
7899 are defined in configure.in.
7900
7901 * threads.c: Removed SCM_API from function definitions. SCM_API
7902 is only for declarations.
7903
e5a83084
MD
79042002-11-07 Mikael Djurfeldt <mdj@linnaeus>
7905
9be8bb45
MD
7906 * coop-pthreads.h: Added support for thread specific data to the
7907 generic C API for the coop-pthreads case.
7908
e5a83084
MD
7909 * threads.c, threads.h (scm_cond_init): Undo unintentional API
7910 change.
6c214b62 7911 (scm_cond_broadcast): Added missing function.
e5a83084 7912
7edf178e
MV
79132002-11-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
7914
7915 * coop.c (coop_next_runnable_thread): Removed, wich should have
7916 happened when GUILE_ISELECT was hard-wired.
7917
7f5b1b77
MV
79182002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
7919
7caa1b07
MV
7920 * Makefile.am (libguile_la_SOURCES): Added threads.c
7921 (DOT_DOC_FILES): Added threads.doc.
7922 (DOT_X_FILES): Added threads.x.
7923 (EXTRA_libguile_la_SOURCES): Removed threads.c.
7924 (noinst_HEADERS): Added coop-pthreads.c.
7925 (modinclude_HEADERS): Added coop-pthreads.h.
7926
7927 * __scm.h (USE_THREADS, GUILE_ISELECT): Define when
7928 SCM_DEBUG_DEPRECATED. Removed their use thru-out Guile.
7929
bb11cbf4
MV
7930 * iselect.c: Include "_scm.h" before testing HAVE_UNISTD_H.
7931 Thanks to Bill Schottstaedt!
7932
1d4cbbed
MV
7933 * numbers.c (scm_integer_expt): Make 0^z == 0 for z != 0.
7934
7f5b1b77
MV
7935 * _scm.h (HAVE_RESTARTABLE_SYSCALLS): Do define even when
7936 SCM_COPT_THREADS is defined.
7937 (SCM_SYSCALL): Use EINTR-expection version when SCM_COPT_THREADS
7938 is defined.
7939
7940 * coop-pthreads.c: Some harmless renamings of internal stuff.
7941 (create_thread): New, generalized version of
7942 scm_call_with_new_thread.
7943 (scm_call_with_new_thread): Use it.
7944 (scm_spawn_thread): New, use create_thread.
7945
d52f53b1
MV
79462002-11-02 Marius Vollmer <mvo@zagadka.ping.de>
7947
7948 * coop-pthreads.c, coop-pthreads.h: Redone completely, you might
7949 start testing it now.
7950
7951 * _scm.h: Include <errno.h< so that SCM_SYSCALL is correctly
7952 defined when HAVE_RESTARTABLE_SYSCALLS is not defined.
7953 (HAVE_RESTARTABLE_SYSCALLS): Do not define when USE_COPT_THREADS
7954 is defined.
7955
30f920c3
MV
79562002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
7957
7958 * scmsigs.c (signal_cell_handlers, install_handler_data,
7959 scm_delq_spine_x, really_install_handler, install_handler): New
7960 scheme for triggering signal handlers, to simplify take_signal.
7961 (take_signal): Simplified, to avoid race conditions.
7962 (scm_sigaction_for_thread): Use new Scheme. Validate that thread
7963 hasn't exited yet.
7964
7965 * async.c (scm_async_click): Reset pending_asyncs, handle
7966 signal_asyncs. Don't set cdr of a non-signal async to #f.
7967 (scm_i_queue_async_cell): Do not check cdr of cell for #f, queue
7968 always. Set pending_asyncs.
7969 (scm_system_async_mark_for_thread): Check that thread has not
7970 exited.
7971 (scm_unmask_signals, decrease_block): Call scm_async_click after
7972 block_asyncs becomes zero.
7973
7974 * __scm.h (SCM_ASYNC_CLICK): Check pending_asyncs instead of
7975 active_asyncs.
7976
7977 * root.h (scm_root_state): Added pending_asyncs and signal_asyncs
7978 fields.
7979 * root.c (root_mark): Mark them.
7980 (make_root): Initialize them.
7981
7982 * iselect.c, iselect.h: Replaced GUILE_ISELECT with
7983 USE_COOP_THREADS.
7984 (scm_internal_select): Define one version for USE_COOP_THREADS and
7985 one for USE_NULL_THREADS.
7986 (scm_init_iselect): Likewise.
7987
7988 * inline.h (scm_cell, scm_double_cell): Also allow
7989 USE_COPT_THREADS to not protect the slot initializers.
7990
7991 * init.c (scm_init_guile_1): Call scm_init_thread_procs. This is
7992 because threads need to be initialized before the stack, but
7993 gsubrs such as scm_timed_condition_variable_wait can only be
7994 created later.
7995
7996 * threads.h: Include "coop-pthreads.h" when requested.
7997 (scm_threads_make_mutex, scm_threads_lock_mutex,
7998 scm_threads_unlock_mutex, scm_threads_monitor): Removed, they were
7999 not implemented anyway.
8000 (scm_init_thread_procs, scm_try_mutex,
8001 scm_timed_condition_variable_wait,
8002 scm_broadcast_condition_variable, scm_c_thread_exited_p,
8003 scm_thread_exited_p): New prototypes.
8004 (struct timespec): Define if not already defined.
8005 (scm_t_mutex, scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
8006 scm_mutex_unlock, scm_mutex_destroy, scm_t_cond, scm_cond_init,
8007 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
8008 scm_cond_broadcast, scm_cond_destroy): Declarations moved here and
8009 deprecated.
8010
8011 * threads.c: Include <errno.h>. Include "coop-pthreads.c" when
8012 requested.
8013 (scm_thread_exited_p): New.
8014 (scm_try_mutex, scm_broadcast_condition_variable): Newly
8015 registered procedures.
8016 (scm_wait_condition_variable, scm_timed_wait_condition_variable):
8017 Use the latter as the procedure for "wait-condition-variable",
8018 thus offering a optional timeout parameter to Scheme.
8019 (scm_wait_condition_variable): Implement in terms of
8020 scm_timed_wait_condition_variable.
8021 (scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
8022 scm_mutex_unlock, scm_mutex_destroy, scm_cond_init,
8023 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
8024 scm_cond_broadcast, scm_cond_destroy): Implement in terms of
8025 scm_make_mutex, etc, and deprecate.
8026 (scm_init_threads): Do not create smobs, leave this to
8027 scm_threads_init. Do not include "threads.x" file.
8028 (scm_init_thread_procs): New, include "threads.x" here.
8029
8030 * null-threads.h (scm_null_mutex, scm_null_mutex_init,
8031 scm_null_mutex_lock, scm_null_mutex_unlock,
8032 scm_null_mutex_destroy, scm_null_condvar, scm_null_condvar_init,
8033 scm_null_condvar_wait, scm_null_condvar_signal,
8034 scm_null_condvar_destroy): Removed.
8035 (scm_mutex_init, scm_mutex_lock, scm_mutex_unlock, scm_cond_init,
8036 scm_cond_wait, scm_cond_signal, scm_cond_broadcast,
8037 scm_cond_destory): Do not define, they are now deprecated and
8038 handled by threads.{h,c}.
8039
8040 * null-threads.c (scm_null_mutex, scm_null_cond): Define here.
8041 (scm_threads_init): Create smobs here, using the appropriate
8042 sizes.
8043 (block): Removed, now unused.
8044 (scm_c_thread_exited_p): New.
8045 (scm_null_mutex_init, scm_null_mutex_lock, scm_null_mutex_unlock,
8046 scm_null_mutex_destroy, scm_null_condvar_init,
8047 scm_null_condvar_wait, scm_null_condvar_signal,
8048 scm_null_condvar_destroy): Removed and updated users to do their
8049 task directly.
8050 (scm_try_mutex, timeval_subtract,
8051 scm_timed_wait_condition_variable,
8052 scm_broadcast_condition_variable): New.
8053 (scm_wait_condition_variable): Removed.
8054
8055 * coop-defs.h (coop_m): Added 'level' field.
8056 (scm_t_mutex, scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
8057 scm_mutex_unlock, scm_mutex_destroy, scm_t_cond, scm_cond_init,
8058 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
8059 scm_cond_broadcast, scm_cond_destroy, struct timespec): Do not
8060 define.
8061 (coop_condition_variable_broadcast): New.
8062
8063 * coop-threads.c (scm_threads_init): Create smobs here, using the
8064 appropriate sizes.
8065 (scm_c_thread_exited_p, scm_try_mutex,
8066 scm_timed_wait_condition_variable,
8067 scm_broadcast_condition_variable): New.
8068 (scm_wait_condition_variable): Removed.
8069
8070 * coop.c (coop_new_mutex_init): Initialize level.
8071 (coop_mutex_trylock, coop_mutex_lock, coop_mutex_unlock): maintain
8072 level.
8073 (coop_condition_variable_signal): Renamed to
8074 coop_condition_variable_broadcast and reimplemented in terms of
8075 that. Thus...
8076 (coop_condition_variable_broadcast): New.
8077
8078 * goops.c (hell_mutex): Reimplemented using scm_make_mutex, etc.
8079
8080 * coop-pthreads.h, coop-pthreads.c: New, but unfinished.
8081
087ed40d
MV
80822002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
8083
65a23095
MV
8084 * null-threads.c: Include <time.h>. Also, use <...> for inclusion
8085 of system headers.
8086
087ed40d
MV
8087 * async.c, goops.h, modules.h, validate.h (SCM_MAKE_VALIDATE_MSG):
8088 New. Use it instead of SCM_MAKE_VALIDATE in lots of places to
30f920c3 8089 give better error messages. Thanks to Bill Schottstaedt!
087ed40d 8090
5ec1d2c8
DH
80912002-10-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
8092
8093 * evalext.h, evalext.c (scm_definedp, scm_defined_p): Renamed
8094 scm_definedp to scm_defined_p and deprecated scm_definedp.
8095
100ae50d
DH
80962002-10-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
8097
8098 * async.h, async.c (scm_system_async): Fixed deprecation to work
8099 correctly when deprecated features are excluded.
8100
2794cb50
MV
81012002-10-16 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8102
8103 * async.c (scm_system_async_mark_for_thread): Validate thread
8104 argument.
8105
8106 * coop-threads.c (scm_i_thread_root): Do not validate argument.
8107
8108 * feature.c (scm_init_feature): Don't add 'threads' for
8109 USE_NULL_THREADS.
8110
8111 * inline.h (scm_cell, scm_double_cell): Also allow
8112 USE_NULL_THREADS to not protect the slot initializers.
8113
8114 * scmsigs.c (scm_sigaction_for_thread): It's "USE_THREADS" not
8115 "USE_THREAD".
8116
8117 * Makefile.am (noinst_HEADERS): Added null-threads.c.
8118 (modinclude_HEADERS): Added null-threads.h.
8119
8120 * threads.h: Include null-threads.h when !USE_COOP_THREADS.
8121 * threads.c: Include null-threads.c when !USE_COOP_THREADS.
8122 (scm_init_threads): Use generic type names scm_t_mutex and
8123 scm_t_cond instead of coop_m and coop_c.
8124
8125 * null-threads.c, null-threads.h: New files.
8126
ff810d7a
MV
81272002-10-15 Marius Vollmer <mvo@zagadka.ping.de>
8128
8129 * Makefile.am: Replaced "$<" in non-pattern rules with its value.
8130 This is to support makes that know about "$<" only in pattern
8131 rules, like Sun's make.
8132
a90bdb73
MV
81332002-10-13 Marius Vollmer <mvo@zagadka.ping.de>
8134
8135 * Makefile.am (libpath.h): Fixed typo in top_srcdir_absolute
8136 substitution. Thanks to David Allouche!
8137
e71a8bf2
DH
81382002-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8139
8140 * evalext.h: Replaced SCM_DEBUG_DEPRECATED with
8141 !SCM_ENABLE_DEPRECATED.
8142
41f77ff5
MV
81432002-10-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8144
504d99c5 8145 * async.c (scm_system_async_mark_for_thread): Only call
41f77ff5
MV
8146 scm_i_thread_root when USE_THREADS is defined. Use scm_root
8147 otherwise.
8148
8149 * scmsigs.c (take_signal): Only call scm_i_thread_root when
8150 USE_THREADS is defined. Use scm_root otherwise.
8151 (scm_sigaction_for_thread): Ignore THREAD argument when
8152 USE_THREADS is not defined. Also, move THREAD argument defaulting
8153 out of HAVE_SIGACTION section, which was a bug.
8154
6d16b125
MV
81552002-10-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8156
8157 * scmsigs.c (scm_sigaction_for_thread): Store original handler in
8158 signal_handlers, not the closure that is used as the async.
8159 The closure is stored in signal_handler_cells, as previously.
8160
acfa1f52
MV
81612002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
8162
8163 * root.h (scm_root_state): Added 'block_async' slot.
8164 (scm_active_asyncs): Removed abbrev.
8165 * root.c (scm_make_root): Initialize 'block_asyncs' slot.
8166
8167 * __scm.h (SCM_ASYNC_TICK): Do without the scm_active_asyncs
8168 abbrev.
8169
8170 * async.h (scm_call_with_blocked_asyncs,
8171 scm_call_with_unblocked_asyncs, scm_c_call_with_blocked_asyncs,
8172 scm_c_call_with_unblocked_asyncs): New prototypes.
8173 (scm_mask_signals, scm_unmask_signals): Deprecated.
8174 (scm_mask_ints): Turned into a macro.
8175 * async.c (scm_mask_ints): Removed.
8176 (scm_run_asyncs): Do not set scm_mask_ints while running an async.
8177 this should not be necessary.
8178 (scm_async_click): Test block_asyncs instead of scm_mask_ints.
8179 (scm_mask_signals, scm_unmask_signals): Deprecated. Emit
8180 deprecation warning and check for errornous use. Set block_asyncs
8181 instead of scm_mask_ints.
8182 (increase_block, decrease_block, scm_call_with_blocked_asyncs,
8183 scm_call_with_unblocked_asyncs, scm_c_call_with_blocked_asyncs,
8184 scm_c_call_with_unblocked_asyncs): New.
8185
8186 * script.c (scm_compile_shell_switches): Do not set scm_mask_ints.
8187 Asyncs are enabled by default.
8188
34010f56
NJ
81892002-10-09 Neil Jerram <neil@ossau.uklinux.net>
8190
8191 * vports.c (scm_make_soft_port): Allow vector argument to carry a
8192 6th element: an input waiting thunk.
8193 (sf_input_waiting): New.
8194
9310d6f2
MV
81952002-10-05 Marius Vollmer <mvo@zagadka.ping.de>
8196
8197 * root.c (root_mark): Mark active_asyncs slot.
8198
8199 * async.c (scm_async_click): Set the cdr of a executed handler
8200 cell to SCM_BOOL_F, not SCM_EOL.
8201 (scm_i_queue_async_cell): Queue the cell at the end of the list,
8202 and only if the handler procedure is not already present.
8203 (scm_system_async_mark_for_thread): Initialize cdr of handler cell
8204 with SCM_BOOL_F.
8205 * scmsigs.c (scm_sigaction_for_thread): Likewise.
8206
ac48c719
RB
82072002-10-04 Rob Browning <rlb@defaultvalue.org>
8208
1360a142
RB
8209 * guile.c (main): switch to scm_lt_dlset_preloaded_symbols;
8210
8211 * dynl.c (sysdep_dynl_link): switch to scm_lt_dlhandle,
8212 scm_lt_dlopenext, and scm_lt_dlerror.
8213 (sysdep_dynl_unlink): switch to scm_lt_dlhandle, scm_lt_dlclose,
8214 and scm_lt_dlerror.
8215 (sysdep_dynl_func): switch to scm_lt_dlhandle, scm_lt_dlsym,
8216 and scm_lt_dlerror.
8217 (sysdep_dynl_init): switch to scm_lt_dlinit();
8218
8219 * Makefile.am (libguile_la_LIBADD): switch to use
8220 libguile-ltdl.la.
8221
504d99c5 8222 * numbers.c (scm_integer_expt): (expt 0 1) should be 1.
ac48c719 8223
497092c9
MV
82242002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
8225
8226 * scmsigs.h (scm_sigaction_for_thread): New prototype.
8227 * scmsigs.c (got_signal): Removed.
8228 (signal_handler_cells, signal_handler_threads): New.
8229 (take_signal): Queue the cell of the signal for the specified
8230 thread. Reset the signal handler on systems that don't have
8231 sigaction.
8232 (sys_deliver_signals): Removed.
8233 (close_1): New.
8234 (scm_sigaction_for_thread): Renamed from scm_sigaction and
8235 extended to also set the thread of a signal and allocate a cell
8236 for it. Keep the Scheme name "sigaction". Check that signum is
8237 within range. Also, use SCM_VECTOR_REF instead of SCM_VELTS.
8238 (scm_sigaction): Implement in terms of scm_sigaction_for_thread.
8239 (scm_init_scmsigs): Allocate signal_handler_cells and
8240 signal_handler_threads vectors.
8241
8242 * async.c: Removed GUILE_OLD_ASYNC_CLICK code. Reorganized so
8243 that system asnycs and user asyncs are separated. Reimplemented
8244 system asyncs to work per-thread.
8245
8246 * gc.c (scm_init_gc): Do not use scm_system_async.
8247
8248 * async.h (scm_asyncs_pending, scm_set_tick_rate,
8249 scm_set_switch_rate, scm_system_async_mark_from_signal_handler):
8250 Removed prototypes.
8251 (scm_i_queue_async_cell): New.
8252
8253 * __scm.h (scm_asyncs_pending_p): Removed.
8254 (SCM_ASYNC_CLICK): Check scm_active_asyncs instead of
8255 scm_asyncs_pending_p.
8256
8257 * async.h (scm_system_async_mark_for_thread): New prototype.
8258
8259 * __scm.h: Removed GUILE_OLD_ASYNC_CLICK code.
8260
8261 * root.h (scm_root_state): Added new "active_asyncs" slot.
8262 * root.c (scm_make_root): Initialize it to SCM_EOL.
8263
8264 * coop-defs.h (coop_t): Added new "handle" slot.
8265 * coop-threads.c (all_threads, scm_current_thread,
8266 scm_all_threads, scm_i_thread_root): New.
8267 (scm_threads_init): Add main thread to all_threads.
8268 (scheme_launch_thread): Remove thread from all_threads when it
8269 terminates.
8270 (scm_call_with_new_thread): Initialize handle slot of coop_t
8271 structure and add new thread to all_threads.
8272 (scm_spawn_thread): Likewise.
8273
8274 * threads.h (scm_current_thread, scm_all_threads): New prototypes.
8275 * threads.c (scm_current_thread, scm_all_threads): Register as
8276 primitives.
8277
8278 * dynl.c: Use scm_lt_ prefix for libltdl functions.
8279
480fa28d
NJ
82802002-09-29 Neil Jerram <neil@ossau.uklinux.net>
8281
8282 * script.c (scm_compile_shell_switches): Fix bad spelling of
8283 `explicitly' in comment.
8284
82852002-09-28 Neil Jerram <neil@ossau.uklinux.net>
8286
8287 * posix.c (scm_geteuid, scm_getegid, scm_seteuid, scm_setegid):
8288 Refer to provided? in doc string rather than deprecated feature?.
8289
3553e1d1
GH
82902002-09-24 Gary Houston <ghouston@arglist.com>
8291
8292 * inline.h (scm_double_cell): prevent reordering of statements
8293 with any following code (for GCC 3 strict-aliasing).
8294 * numbers.c (scm_make_real), num2float.i.c (FLOAT2NUM): removed
8295 the earlier version of the reordering prevention.
8296
4ad0814a
HWN
82972002-09-19 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8298
8299 * inline.h (scm_double_cell): move SET_GCMARK set out of if body.
8300
e88e4f2e
HWN
83012002-09-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8302
8303 * gc-malloc.c (scm_gc_register_collectable_memory): more overflow
8304 protection.
8305
1e71eafb
HWN
83062002-09-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8307
8308 * inline.h: include stdio.h
8309
8310 * smob.c (free_print): abort if scm_debug_cell_accesses_p is set
8311
61ef9c1f
HWN
83122002-09-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8313
dac04e9f
HWN
8314 * gc-segment.c (scm_i_make_initial_segment): check user settings
8315 for sanity.
8316
8317 * gc-malloc.c (scm_gc_init_malloc): check user settings for
8318 sanity.
dac04e9f
HWN
8319
8320 * gc-freelist.c (scm_init_freelist): check user settings for sanity.
8321
ffd72400
HWN
8322 * struct.h: change scm_structs_to_free to scm_i_structs_to_free
8323
8324 * gc-malloc.c (scm_gc_register_collectable_memory): use floats;
1e71eafb
HWN
8325 these won't ever wrap around with high memory usage. Thanks to
8326 Sven Hartrumpf for finding this.
ffd72400 8327
5bd4a949
HWN
8328 * gc-freelist.c: include <stdio.h>
8329
61ef9c1f
HWN
8330 * gc-malloc.c: add DEBUGINFO for mtrigger GCs.
8331
ffd0ef3b
MV
83322002-09-01 Marius Vollmer <mvo@zagadka.ping.de>
8333
a27e3d14
MV
8334 * vectors.h (SCM_VECTOR_REF): New.
8335
ffd0ef3b
MV
8336 * snarf.h (SCM_DEFINE_PUBLIC): New.
8337
f8a1712b
MV
83382002-08-30 Marius Vollmer <mvo@zagadka.ping.de>
8339
8340 * socket.c (scm_addr_vector): Added size of address to arguments.
8341 Use it to avoid accessing a non-existent path in a sockaddr_un.
8342 Changed all callers.
8343
7200a36b
HWN
83442002-08-29 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8345
1383773b
HWN
8346 * gc.h: remove DOUBLECELL card flags.
8347
8348 * gc-malloc.c (scm_calloc): try to use calloc() before calling
8349 scm_realloc().
8350
8351 * gc-segment.c (scm_i_initialize_heap_segment_data): remove card
8352 init loop; handle this from scm_init_card_freelist()
8353
8354 * gc-card.c (scm_init_card_freelist): init bit vector here.
8355
7200a36b 8356 * numbers.c (scm_make_real): prevent reordering of statements
8fa5786d 8357 num2float.i.c (FLOAT2NUM): idem
7200a36b 8358
9981de3a
HWN
83592002-08-27 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8360
8361 * eval.h: prepend libguile/ to include path
8362
19647556
MV
83632002-08-26 Marius Vollmer <mvo@zagadka.ping.de>
8364
8365 * script.c (scm_compile_shell_switches): Added "2002" to Copyright
9a5fa6e9 8366 years. Thanks to Martin Grabmüller!
19647556 8367
38d1262a
HWN
83682002-08-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8369
8370 * gc-segment.c (scm_i_get_new_heap_segment): use float in stead of
8371 unsigned numbers for computing minimum heap increment. This
8372 prevents weird results when a a negative minimum increment is
8373 computed.
8374
f800ebfb
MV
83752002-08-24 Marius Vollmer <mvo@zagadka.ping.de>
8376
8377 * gc_os_dep.c: When we have __libc_stack_end, use that directly
19647556 8378 instead of the old tricks.
f800ebfb
MV
8379
8380 * guile-snarf.in: Do not expect the input file to be the first
8381 argument after the optional "-o" option, just pass everything to
8382 the pre-processor without extracting the input file name.
8383
4a5309c9
HWN
83842002-08-23 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8385
8386 * gc-segment.c (scm_i_get_new_heap_segment): Oops. We want segment
8387 length *at* least SCM_MIN_HEAP_SEG_SIZE, not at most.
8388
f2893a25
HWN
83892002-08-22 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8390
8391 * gc.h, gc.c: make scm_cells_allocated unsigned again. Thanks to
8392 Bill Schottstaedt for the bug report
8393
483f518b
MV
83942002-08-20 Marius Vollmer <mvo@zagadka.ping.de>
8395
8396 * print.c (scm_iprin1): Print primitives generics always as
8397 "primitive-generic" even when they have no primitive methods yet.
8398
917adc55
GH
83992002-08-17 Gary Houston <ghouston@arglist.com>
8400
8401 * coop.c (coop_create): removed bogus 2nd argument in scm_malloc
8402 call.
8403
67329a9e
HWN
84042002-08-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8405
85835e59 8406 * ports.c (scm_add_to_port_table): small bugfix.
67329a9e
HWN
8407
8408 * mallocs.c (scm_malloc_obj): use scm_gc_malloc in stead of
8409 malloc.
8410
8411 * gc-segment.c (scm_i_get_new_heap_segment): remove cluster cruft:
8412 only use SCM_MIN_HEAP_SEG_SIZE.
8413
8414 * ports.c (scm_add_to_port_table): add backwards compatibility
8415 function
8416
8417 * ports.h: use scm_i_ prefix for port table and port table size.
8418
f07c886a
MD
84192002-08-15 Mikael Djurfeldt <mdj@linnaeus>
8420
8421 * vports.c (scm_make_soft_port): Initialize pt variable.
8422
dc61cbc6
MV
84232002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
8424
8425 * strports.h (scm_c_eval_string_in_module,
8426 scm_eval_string_in_module): New prototypes.
8427 * strports.c (scm_eval_string_in_module): New, but use
8428 "eval-string" as the Scheme name and make second parameter
8429 optional.
8430 (scm_eval_string): Implement using scm_eval_string_in_module.
8431 (scm_c_eval_string_in_module): New.
8432 Thanks to Ralf Mattes for the suggestion!
8433
da220f27
HWN
84342002-08-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8435
be3ff021
HWN
8436 * gc-card.c ("sweep_card"): remove SCM_MISC_ERROR messages: print
8437 message and abort.
8438
8439 * gc-mark.c ("scm_gc_mark_dependencies"): idem.
8440
da220f27
HWN
8441 * ports.c ("scm_new_port_table_entry"): return a boxed SCM in
8442 stead of scm_t_port*. The function now takes a tag argument.
8443
eab1b259
HWN
84442002-08-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8445
8446 * gc.h: add scm_debug_cells_gc_interval to public interface
8447
8448 * gc-card.c ("sweep_card"): set scm_gc_running while sweeping.
8449
8450 * gc.c (scm_i_expensive_validation_check): separate expensive
8451 validation checks from cheap ones.
8452
ba1b2226
HWN
84532002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8454
8455 * read.c (scm_input_error): new function: give meaningful error
8456 messages, and throw read-error
8457
8458 * gc-malloc.c (scm_calloc): add scm_calloc.
8459
39e8f371
HWN
84602002-08-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8461
33138b05
HWN
8462 * tags.h: remove GC bits documentation from the tags table.
8463
39e8f371
HWN
8464 * read.c (INPUT_ERROR): Prepare for file:line:column error
8465 messages for errors in scm_lreadr() and friends.
8466
84672002-08-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8468
8469 * gc-malloc.c (scm_malloc): use scm_realloc() (simplifies
8470 implementation).
8471 (scm_gc_calloc): new function
8472
26e68795 84732002-08-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
402788a9 8474
5f16b897
HWN
8475 * ports.c (scm_new_port_table_entry): init port entry to 0
8476 completely.
402788a9
HWN
8477
8478 * ports.c (scm_new_port_table_entry): change function from
8479 scm_add_to_port_table. This prevents cells with null-pointers from
8480 being exposed to GC.
8481
504d99c5 8482 * vports.c (scm_make_soft_port) strports.c (scm_mkstrport),
402788a9 8483 fports.c (scm_fdes_to_port): Use scm_new_port_table_entry().
c8a1bdc4 8484
504d99c5 8485 * gc.c (scm_gc_stats): add cell-yield and malloc-yield statistic
c2cbcc57
HWN
8486 to gc-stats.
8487
c8a1bdc4
HWN
8488 * numbers.c (big2str): return "0" for 0 iso. ""
8489
c2cbcc57
HWN
8490 * gc-segment.c, gc-malloc.c gc-mark.c, gc-freelist.c, gc-card.c,
8491 private-gc.h: new file
c8a1bdc4
HWN
8492
8493 * gc.c: completely revised and cleaned up the GC. It now uses lazy
8494 sweeping. More documentation in workbook/newgc.text
8495
aea06b34
MV
84962002-07-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8497
8498 * random.c (rstate_free): Return zero.
8499
35060ae9
DH
85002002-07-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
8501
8502 * environments.c (remove_key_from_alist): Removed.
8503
8504 (obarray_remove): Simplified.
8505
6a535440
SJ
85062002-07-24 Stefan Jahn <stefan@lkcc.org>
8507
8508 * continuations.h: ia64: Include <signal.h> before
8509 <sys/ucontext.h>.
8510
bcbd25b7
DH
85112002-07-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
8512
8513 * modules.c (scm_sym2var): Don't compare SCM values with ==.
8514
26e68795 85152002-07-21 Han-Wen Nienhuys <hanwen@cs.uu.nl>
1d1559ce
HWN
8516
8517 * goops.c (scm_compute_applicable_methods): use
8518 scm_remember_upto_here_1 iso scm_remember_upto_here
8519
8520 * macros.c: include deprecation.h
8521
504d99c5 8522 * vectors.c (scm_vector_move_right_x): remove side effect in
1d1559ce 8523 macro arg.
504d99c5 8524 (scm_vector_move_left_x): idem.
1d1559ce
HWN
8525
8526 * net_db.c, posix.c, socket.c: variable naming: change ans to
8527 result.
8528
8529 * sort.c (scm_merge_vector_x): accept vector as argument
8530 iso. SCM*. This is needed for full GC correctness.
8531
8532 * gc.h: undo previous undocumented changes related to #ifdef
8533 GENGC.
8534
26e68795 85352002-07-20 Han-Wen Nienhuys <hanwen@cs.uu.nl>
34d19ef6
HWN
8536
8537 * *.c: add space after commas everywhere.
8538
8539 * *.c: use SCM_VECTOR_SET everywhere, where a vector is written.
8540 Document cases where SCM_WRITABLE_VELTS() is used.
8541
8542 * vectors.h (SCM_VELTS): prepare for write barrier, and let
8543 SCM_VELTS() return a const pointer
8544 (SCM_VECTOR_SET): add macro.
8545
3063e30a
DH
85462002-07-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8547
8548 * eval.c (SCM_CEVAL), macros.c (macro_print, scm_makmacro,
8549 scm_sym_macro, scm_macro_type), macros.h (scm_makmacro):
8550 Deprecated the special kind of built-in dynamic syntax transformer
8551 that was inaccurately named "macro". Note: The built-in syntax
8552 transformers that are named "mmacro" or "memoizing-macro" still
8553 exist, and it is these which come much closer to what one would
8554 call a macro.
8555
4c5f8e8f
NJ
85562002-07-13 Neil Jerram <neil@ossau.uklinux.net>
8557
8558 * eval.c (unmemocopy): Fix for
8559 1001-local-eval-error-backtrace-segfaults (unmemoization crash
8560 with internal definitions and local-eval).
8561
4f6f9ae3
GH
85622002-07-12 Gary Houston <ghouston@arglist.com>
8563
8564 * dynl.c: Don't define stub procedures if DYNAMIC_LINKING is not
8565 defined. They don't do anything useful, especially since the
8566 only case where DYNAMIC_LINKING is undefined seems to be
8567 when --with-modules=no is given to configure, which is basically
8568 requesting that the "dynamic linking module" be omitted.
8569
8570 * Makefile.am (libguile_la_SOURCES): move dynl.c from
8571 libguile_la_SOURCES to EXTRA_libguile_la_SOURCES.
8572
8573 * extensions.c (load_extension): check DYNAMIC_LINKING for
8574 scm_dynamic_call.
8575 * init.c (scm_init_guile_1): check DYNAMIC_LINKING for
8576 scm_init_dynamic_linking.
8577
c21935e6
MV
85782002-07-10 Marius Vollmer <mvo@zagadka.ping.de>
8579
8580 * guile.c, iselect.h, net_db.c, posix.c, socket.c: No need to
8581 check for Cygwin when including <winsock2.h>, this is already
8582 check for by configure. Thus, revert change from 2002-07-07.
8583
ee95d597
GH
85842002-07-10 Gary Houston <ghouston@arglist.com>
8585
9540b68f 8586 * eq.c: include <string.h>
ee95d597
GH
8587 * dynl.c: docstring editing.
8588
46732b54
GH
85892002-07-09 Gary Houston <ghouston@arglist.com>
8590
8591 * dynl.c (scm_dynamic_call): docstring editing.
8592
c09d12e0
RB
85932002-07-08 Rob Browning <rlb@defaultvalue.org>
8594
8595 * gc_os_dep.c: HURD fixes.
8596
3f6571eb
MV
85972002-07-07 Marius Vollmer <mvo@zagadka.ping.de>
8598
8599 Crosscompiling and Cygwin fixes by Jan Nieuwenhuizen. Thanks!
8600
8601 * Makefile.am: Override default rule for c-tokenize.$(OBJECT);
8602 this should be compiled for BUILD host.
8603 Override default rule for
8604 guile_filter_doc_snarfage$(EEXECT); this should run on BUILD host.
8605 Add missing $(EXEEXT) to guile_filter_doc_snarfage invocation.
8606 (snarf2checkedtexi): Use GUILE_FOR_BUILD instead of preinstguile.
8607
8608 * guile.c, iselect.h, net_db.c, posix.c, socket.c: Do not include
8609 <winsock2.h> on Cygwin even when we have it.
8610
bd987b8e
DH
86112002-07-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
8612
8613 * __scm.h (SCM_CAUTIOUS), eval.c (scm_eval_args, deval_args,
8614 SCM_CEVAL): Removed compile time option SCM_CAUTIOUS to clean up
8615 the code. Full number of arguments checking of closures is
8616 mandatory now. However, the option to disable the checking has
8617 most probably not been used anyway.
8618
8505e285
DH
86192002-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
8620
bd987b8e
DH
8621 * __scm.h (SCM_RECKLESS), backtrace.c (SCM_ASSERT), debug.c
8622 (scm_debug_options), eval.c (scm_lookupcar, scm_lookupcar1,
8623 scm_badargsp, SCM_CEVAL, SCM_APPLY, scm_map, scm_for_each),
8624 feature.c (scm_init_feature), gsubr.c (scm_gsubr_apply), numbers.c
8625 (scm_logand, scm_logior, scm_logxor, scm_i_dbl2big), srcprop.c
8626 (scm_source_properties, scm_set_source_properties_x,
8627 scm_source_property): Removed compile time option SCM_RECKLESS to
8628 clean up the code. Full number of arguments checking of closures
8629 is mandatory now. However, the option to disable the checking has
8630 most probably not been used anyway.
8505e285
DH
8631
8632 * srcprop.c (scm_source_properties, scm_set_source_properties_x,
8633 scm_source_property): Use !SCM_CONSP instead of SCM_NCONSP.
8634
2ee08a28
GH
86352002-06-30 Gary Houston <ghouston@arglist.com>
8636
732b9327
GH
8637 * dynl.c: Removed all SCM_DEFER_INTS/SCM_ALLOW_INTS, which won't
8638 do anything useful. Added a comment about need for a mutex if
8639 pre-emptive threading is supported.
8640
2ee08a28
GH
8641 * posix.c (scm_convert_exec_args), dynl.c
8642 (scm_make_argv_from_stringlist): static procs: 1) renamed both to
8643 allocate_string_pointers. 2) simplified: don't reallocate the
8644 strings, just make an array of pointers 3) avoid memory leaks on
8645 error 4) let the procedure report errors in its own name.
8646 Consequences: 1) the procedures now assume that SCM strings are
8647 nul-terminated, which should always be the case. 2) Since strings
8648 are not reallocated, it's now possible for strings passed to
8649 dynamic-args-call to be mutated.
8650
c136c920
DH
86512002-06-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
8652
8653 * __scm.h, eval.c, eval.h: Removed compile time option
8654 MEMOIZE_LOCALS to clean up the code. Now, caching of local
8655 variable positions during memoization is mandatory. However, the
8656 option to disable the caching has most probably not been used
8657 anyway.
8658
e540802f
MV
86592002-06-18 Marius Vollmer <mvo@zagadka.ping.de>
8660
8661 * print.c (scm_simple_format): Print missing part of format before
8662 ~% control. Thanks to Daniel Skarda!
8663
4c1ffcdd
MV
86642002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
8665
8666 * mkstemp.c: Added exception notice to license statement.
8667
ba1b077b
MV
86682002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
8669
8dc434c7
MV
8670 * numbers.c (mem2ureal): When returning an inexact zero, make sure
8671 it is represented as a floating point value so that we can change
8672 its sign.
8673
ba1b077b
MV
8674 From John W. Eaton <jwe@bevo.che.wisc.edu>
8675
8676 * numbers.c (idbl2str): Don't omit sign when printing negative zero.
8677
74c58131
TTN
86782002-05-14 Thien-Thi Nguyen <ttn@giblet.glug.org>
8679
8680 * gc_os_dep.c: For I386/OPENBSD, allow for `__i386__'
0926d46e 8681 in addition to `i386'. Thanks to Dale P. Smith.
74c58131 8682
8766d4b5
MV
86832002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
8684
8685 * eq.c (real_eqv): New.
8686 (scm_eqv_p): Use it when comparing reals and complexes.
8687
8688 * numbers.c: Include <string.h>, for strncmp.
8689 (mem2complex): Do not create negative NaNs.
8690 (scm_leq_p, scm_geq_p): Explicitely return #f when comparing a
8691 NaN.
8692 (scm_inexact_to_exact): Signal error when converting a NaN.
74c58131 8693
1d8c3cad
MV
86942002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
8695
8696 * posix.c (scm_putenv): Handle removing variables explicitely by
8697 calling unsetenv.
8698
8699 From John W. Eaton.
74c58131 8700
1d8c3cad
MV
8701 * numbers.h: Conditionally include floatingpoint.h, ieeefp.h, and
8702 nan.h. Provide declarations for scm_inf_p, scm_nan_p, scn_inf,
8703 and scm_nan.
8704 * numbers.c: [SCO && ! HAVE_ISNAN] (isnan): New function.
8705 [SCO && ! HAVE_ISINF] (isinf): New function.
8706 (xisinf, xisnan): New functions.
8707 (IS_INF): Delete.
8708 (isfinite): Define in terms of xisinf.
8709 (scm_inf_p, scm_nan_p): New functions.
8710 (guile_Inf, guile_NaN): New file-scope vars.
8711 (guile_ieee_init): New function.
8712 (scm_inf, scm_nan): New functions.
8713 (idbl2str): Handle Inf and NaN. Remove funny label and
8714 corresponding gotos.
8715 (ALLOW_DIVIDE_BY_ZERO): New macro.
8716 (scm_divide): Allow division by zero to occur if
8717 ALLOW_DIVIDE_BY_ZERO is defined.
8718 Handle bignums and ints as special cases.
8719
8720 Additional stuff by me:
8721
8722 numbers.c (mem2ureal): Recognize "inf.0" and "nan.xxx".
8723 (scm_even_p, scm_odd_p): Treat infinity as even and odd.
8724 (iflo2str): Don't output a '+' for negative numbers or for Inf and
8725 NaN. They will provide their own sign.
8726 (scm_divide): Only allow divides by inexact zeros. Dividing by
8727 exact zeros still signals an errors.
74c58131 8728
7a0c65eb
TTN
87292002-04-22 Thien-Thi Nguyen <ttn@giblet.glug.org>
8730
87b72063 8731 * goops.h (scm_slot_exists_p): Rename from scm_slots_exists_p.
7a0c65eb 8732 * goops.c (scm_slot_exists_p): Rename from scm_slots_exists_p.
504d99c5 8733 (scm_slot_exists_p): Rename from scm_slots_exists_p.
7a0c65eb
TTN
8734 Thanks to Andreas Rottmann.
8735
5e423a39
GH
87362002-04-20 Gary Houston <ghouston@arglist.com>
8737
8738 * removal of unused fields in root state (thanks to Christopher
8739 Cramer for pointing out the disuse.)
8740 * root.h (scm_root_state): removed def_inp, def_outp, def_errp.
1841c44a 8741 (scm_def_inp, scm_def_outp, scm_def_errp): removed.
b6287a25 8742
5e423a39
GH
8743 * root.c (root_mark): don't mark them.
8744 (scm_make_root): don't set them to #f.
8745 * init.c (scm_init_standard_ports): don't initialise with the
8746 default ports.
8747
9d2cce76
MV
87482002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
8749
8750 * Makefile.am (EXTRA_DIST): Added cpp_err_symbols.c and
8751 cpp_sig_symbols.c.
8752
87532002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
8754
8755 * guile-snarf.in: Do not clean input file. This would write to
8756 the $(srcdir) during a VPATH build, which is not allowed. It also
8757 isn't needed since it only works when an output filename has been
8758 specified and in that case we don't need to clean the input file
8759 because the output file will already exist.
8760
6f79b6cc
MV
87612002-03-31 Marius Vollmer <mvo@zagadka.ping.de>
8762
8763 * guile-snarf: Install the trap for removing $cleanfile only when
8764 the value of $cleanfile is actually known.
8765
21550b10
RB
87662002-04-10 Rob Browning <rlb@defaultvalue.org>
8767
8768 * .cvsignore: add versiondat.h and *.c.clean.c.
8769
bc76d628
DH
87702002-03-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
8771
8772 * srcprop.[ch] (scm_c_source_property_breakpoint_p): New
8773 function, replaces macro SRCBRKP.
8774
8775 (SRCBRKP): Deprecated.
8776
8777 * eval.c (SCM_CEVAL): Replaced use of SRCBRKP by call to
8778 scm_c_source_property_breakpoint_p. Removed some use of arg1 as
8779 temporary variable.
8780
5132eef0
DH
87812002-03-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
8782
8783 * debug.h, eval.c: Deprecated CHECK_ENTRY, CHECK_APPLY and
8784 CHECK_EXIT and removed all references to them.
8785
680516ba
DH
87862002-03-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
8787
8788 * debug.h (scm_ready_p, debug_print): Removed declarations.
8789
8790 * eval.c (EVALCELLCAR): Removed.
8791
8792 (SCM_CEVAL): Eliminated label loopnoap. Removed side-effecting
8793 operation from condition.
8794
e2bd68e0
MV
87952002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
8796
8797 * guile-snarf.in: When the output filename is "-", write to
8798 stdout. When no "-o" option is given, use "-" as the output
8799 filename (i.e., stdout). Only 'clean' the inputfile or remove the
8800 output file on error when the output file name is not "-". Define
8801 the preprocessor macro SCM_MAGIC_SNARFER while snarfing.
8802
8803 * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
8804
ab1f1094
DH
88052002-03-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
8806
8807 * eval.c (SCM_CEVAL, SCM_APPLY): Eliminated labels wrongnumargs
8808 and the corresponding goto statements. Removed redundant code.
8809
42030fb2
DH
88102002-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
8811
8812 * eval.c (SCM_CEVAL): Minimized scope of variable arg2.
8813 Eliminated redundant SCM_IMP check. Exlined call to EVALCAR.
8814 Re-enabled handing of rpsubrs and asubrs.
8815
e050d4f8
DH
88162002-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
8817
8818 * eval.c (SIDEVAL): Removed.
8819
8820 (SCM_CEVAL): Minimized scope of variable orig_sym. Eliminated
8821 goto-labels cdrxnoap, cdrxbegin and nontoplevel_cdrxnoap. Changed
8822 argument checking order for set! to locals, variables and symbols.
8823 Improvements to control structure. Removed some uses of arg1 and
8824 arg2 as temporary variables.
8825
a6d344d3
TTN
88262002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
8827
8828 * guile-snarf.in: Remove "--compat=1.4" support.
8829 Add "-d" and "-D" support.
8830
8831 (deprecated_list): New var.
8832 (compat_mode_clean_xxx): Delete.
8833 (grep_deprecated): New func.
8834 ("main"): If "-d" or "-D", call `grep_deprecated'.
8835
3939e9df
NJ
88362002-03-15 Neil Jerram <neil@ossau.uklinux.net>
8837
387d418c
NJ
8838 * hooks.h: Change scm_t_c_hookype_t everywhere to
8839 scm_t_c_hook_type.
8840
bb2c02f2 8841 Docstring fixes:
a6d344d3 8842
bb2c02f2
NJ
8843 * strings.c (scm_string_p): Change unnecessary `iff' to `if'.
8844
8845 * ports.c (scm_sys_make_void_port): Use `@file'.
8846
8847 * numbers.c (scm_number_p, scm_real_p): Use `otherwise' rather
8848 than `else'.
8849
8850 * macros.c (scm_makmacro): Don't say that the form replaces its
8851 source, because it doesn't.
8852 (scm_makmmacro): Clarify difference between this and scm_makmacro.
8853
8854 * backtrace.c (scm_display_error), filesys.c (scm_umask,
8855 scm_select, scm_basename), goops.c (scm_method_generic_function),
8856 numbers.c (scm_integer_length), posix.c (scm_getgroups, scm_execl,
8857 scm_setlocale, scm_flock), socket.c (scm_shutdown): Correct
8858 spelling mistakes.
8859
3939e9df
NJ
8860 * debug.c (scm_debug_options), eval.c
8861 (scm_eval_options_interface), read.c (scm_read_options): Change
8862 incorrect @var in docstring to @code.
8863
3b3cc781
MV
88642002-03-14 Marius Vollmer <mvo@zagadka.ping.de>
8865
500b0d5b
MV
8866 * unif.c (singp): Use SCM_REALP instead of SCM_SLOPPY_REALP.
8867
3b3cc781
MV
8868 * snarf.h (SCM_SNARF_INIT): Add "^:^" after code so that
8869 guile-snarf can remove trailing non-init code.
8870
8871 * guile-snarf.in (modern_snarf): Remove everything following and
8872 including "^:^" from the output.
8873
dff98306
DH
88742002-03-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
8875
8876 * eval.c (SCM_CEVAL), srcprop.h (SRCBRKP): Eliminated union 't'.
8877
8878 * eval.c (SCM_CEVAL): Exlined call to EVALCAR.
8879
2287fb53
TTN
88802002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
8881
8882 * guile-snarf.in: Update copyright.
8883 Rewrite to internalize error handling.
8884 Add "--compat=1.4" handling.
8885 Add commentary.
8886
8887 * Makefile.am (libpath.h): Use @top_srcdir_absolute@.
8888 (snarfcppopts): New var.
8889 (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
8890 (.c.doc): Use $(snarfcppopts).
8891
822250a4
TTN
8892 * alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
8893 continuations.c, debug-malloc.c, debug.c, deprecation.c, dynl.c,
8894 dynwind.c, environments.c, eq.c, error.c, eval.c, evalext.c,
8895 extensions.c, feature.c, filesys.c, fluids.c, fports.c, gc.c,
8896 goops.c, gsubr.c, guardians.c, hash.c, hashtab.c, hooks.c,
8897 ioext.c, iselect.c, keywords.c, lang.c, list.c, load.c, macros.c,
8898 modules.c, net_db.c, numbers.c, objects.c, objprop.c, options.c,
8899 pairs.c, ports.c, posix.c, print.c, procprop.c, procs.c,
8900 properties.c, ramap.c, random.c, rdelim.c, read.c, regex-posix.c,
8901 root.c, rw.c, scmsigs.c, script.c, simpos.c, socket.c, sort.c,
8902 srcprop.c, stackchk.c, stacks.c, stime.c, strings.c, strop.c,
8903 strorder.c, strports.c, struct.c, symbols.c, threads.c, throw.c,
8904 unif.c, values.c, variable.c, vectors.c, version.c, vports.c,
8905 weaks.c: Retire inclusion guard macro SCM_MAGIC_SNARFER.
8906
b7798e10
DH
89072002-03-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8908
8909 * eval.c (SCM_CEVAL): Got rid of the last reference to t.lloc.
8910 The next step will be to remove the union 't' and simplify the
8911 code of SCM_CEVAL that way.
8912
04a98cff
NJ
89132002-03-12 Neil Jerram <neil@ossau.uklinux.net>
8914
8915 * iselect.c (collisionp, gnfds, greadfds, gwritefds, gexceptfds,
8916 rreadfds, rwritefds, rexceptfds): Made static.
8917
8918 * gc.c (terminating), fports.c (terminating): Renamed
8919 scm_i_terminating.
8920
16d98032
MV
89212002-03-11 Marius Vollmer <mvo@zagadka.ping.de>
8922
5046250e
MV
8923 * numbers.c (scm_divide): Adapt code from libstdc++/f2c to void
8924 potential overflow problems. Thanks to John W Eaton!
8925
8794207d
MV
8926 * strop.c (string_capitalize_x): Treat characters as unsigned so
8927 that 8-bit chars work. Thanks to David Pirotte!
16d98032 8928
1d15ecd3
DH
89292002-03-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
8930
8931 * eval.c (SCM_CEVAL): Cleaned up the handling of 'slot-ref',
8932 'slot-set!' and 'nil-cond'. Removed some uses of t.arg1, arg2 and
8933 proc as temporary variables. Introduced temporary variables with
8934 hopefully descriptive names for clarification. Replaced SCM_N?IMP
8935 by a more explicit predicate in some places.
8936
89372002-03-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
f12745b6
DH
8938
8939 * eval.c (SCM_CEVAL): Cleaned up the handling of #@dispatch.
8940 Added lots of comments regarding the implementation of #@dispatch.
8941 Changed intra-procedure communication to use t.arg1 instead of
8942 arg2. Removed some uses of t.arg1, t.lloc and proc as temporary
8943 variables. Introduced temporary variables with hopefully
8944 descriptive names for clarification. Replaced SCM_N?IMP by a more
8945 explicit predicate in some places. Use SCM_INSTANCE_HASH instead
8946 of computing the expression explicitly. Eliminate now unused
8947 label nontoplevel_cdrxbegin.
8948
8949 * goops.h (SCM_INSTANCE_HASH): New macro.
8950
8951 * objects.h (SCM_CMETHOD_FORMALS, SCM_CMETHOD_BODY): New macros.
8952
1ebf1566
TTN
89532002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
8954
8955 * Makefile.am (bin_SCRIPTS): Revive this decl, w/ initial element
8956 "guile-snarf" moved back from `noinst_SCRIPTS'.
8957
020c890c
NJ
89582002-03-08 Neil Jerram <neil@ossau.uklinux.net>
8959
58d233cc
NJ
8960 * srcprop.c (scm_set_source_property_x): If SRCPROPS obj already
8961 exists when adding a source property other than those that are
8962 handled explicitly, add the new property to the SRCPROPS obj's
8963 plist.
8964
020c890c
NJ
8965 * debug.h (SCM_MAX_FRAME_SIZE): Remove incorrect comment about use
8966 of SCM_MAX_FRAME_SIZE as a bit mask; it isn't used like this.
8967
8968 * eval.c (SCM_CEVAL): Don't store scm_debug_eframe_size in
8969 debug.status. It isn't needed, and it can overflow the bits
8970 reserved for it (which may lead to a segv or a GC abort).
8971
3f04400d
DH
89722002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
8973
8974 * eval.c (SCM_CEVAL): Cleaned up the handling of 'apply'. Removed
8975 side-effecting operations from conditions and macro calls.
8976 Replaced SCM_N?IMP by a more explicit predicate in some places.
8977 Minimized the scope of some variables.
8978
97820583
SJ
89792002-03-02 Stefan Jahn <stefan@lkcc.org>
8980
8981 * convert.i.c: Fixed int <-> long conversions which would have
8982 failed if their sizes were different.
8983
38ace99e
DH
89842002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
8985
8986 * eval.c (SCM_CEVAL): Cleaned up the handling of 'if', 'let',
8987 'letrec' and 'set*': Removed some uses of t.arg1, t.lloc and proc
8988 as temporary variables. Removed side-effecting operations from
8989 conditions and macro calls. Introduced temporary variables with
8990 hopefully descriptive names for clarification. Replaced SCM_N?IMP
8991 by a more explicit predicate in some places. Removed code that
8992 was conditionally compiled if SICP was defined - which it never
8993 is.
8994
e5cb71a0
DH
89952002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
8996
8997 * eval.c (SCM_CEVAL): Cleaned up the handling of 'cons' and 'do':
8998 Removed some uses of t.arg1 and proc as temporary variables.
8999 Removed side-effecting operations from conditions and macro calls.
9000 Introduced temporary variables with hopefully descriptive names
9001 for clarification. Replaced SCM_N?IMP by a more explicit
9002 predicate in some places.
9003
6a0f6ff3
DH
90042002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
9005
9006 * eval.c (scm_badargsp, SCM_CEVAL): Replaced SCM_N?IMP by a more
9007 explicit predicate in some places.
9008
9009 (CHECK_EQVISH): Removed.
9010
9011 (SCM_CEVAL): Removed some uses of t.arg1 and proc as temporary
9012 variables. Removed side-effecting operations from conditions and
9013 macro calls. Introduced temporary variables for clarification.
9014 Sorted if-else-if check for the type of the last form in a list by
9015 frequency. Avoided some unnecessary tail-recursion calls.
9016
228a24ef
DH
90172002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
9018
9019 * gc.c (SCM_HEAP_SEG_SIZE, CELL_UP, CELL_DN, NEXT_DATA_CELL,
9020 init_heap_seg, alloc_some_heap), gc.h (struct scm_cell, struct
9021 scm_t_cell, SCM_CELLPTR, SCM_GC_CARD_SIZE,
9022 SCM_GC_IN_CARD_HEADERP), tags.h (SCM_CELLP): Renamed the struct
9023 scm_cell and all its uses to scm_t_cell in accordance to Guile's
9024 naming scheme for types.
9025
9026 * alist.c (scm_acons), convert.i.c (CTYPES2UVECT,
9027 CTYPES2UVECT_OPTIONAL), coop-threads.c (scm_call_with_new_thread,
9028 scm_spawn_thread), debug.c (scm_make_debugobj), environments.c
9029 (scm_make_environment), eval.c (scm_closure), fports.c
9030 (scm_fdes_to_port), gc.c (scm_deprecated_newcell,
9031 scm_deprecated_newcell2), inline.h (scm_alloc_cell, scm_cell),
9032 list.c (SCM_I_CONS), numbers.c (scm_i_mkbig), pairs.c (scm_cons),
9033 ports.c (scm_void_port), procs.c (scm_c_make_subr, scm_makcclo),
9034 smob.c (scm_make_smob), smob.h (SCM_NEWSMOB), strings.c
9035 (scm_take_str, scm_allocate_string), strports.c (scm_mkstrport),
9036 unif.c (scm_make_uve), variable.c (make_variable), vectors.c
9037 (scm_c_make_vector), vports.c (scm_make_soft_port): Renamed
9038 scm_alloc_cell to scm_cell.
9039
9040 * environments.c (core_environments_observe), gc.c
9041 (scm_deprecated_newcell2), goops.c (wrap_init, scm_wrap_object),
9042 inline.h (scm_alloc_double_cell, scm_double_cell), num2float.i.c
9043 (FLOAT2NUM), numbers.c (scm_make_real), procs.c
9044 (scm_make_procedure_with_setter), smob.h (SCM_NEWSMOB2,
9045 SCM_NEWSMOB3), struct.c (scm_make_struct, scm_make_vtable_vtable),
9046 symbols.c (scm_mem2symbol, scm_mem2uninterned_symbol), weaks.c
9047 (allocate_weak_vector): Renamed scm_alloc_double_cell to
9048 scm_double_cell.
9049
edb810bb
SJ
90502002-02-27 Stefan Jahn <stefan@lkcc.org>
9051
9052 * convert.i.c, convert.c: Better range checking.
9053
9054 * inet_aton.c, fports.c: Commented the inclusion of <winsock2.h>.
9055
1ebf1566 9056 * deprecation.c (vsnprintf): Define to `_vsnprintf' for
edb810bb
SJ
9057 Windows (MinGW).
9058
327d4dd3
TTN
90592002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
9060
9061 * Makefile.am: Update path to pre-inst-guile automake frag.
9062
89d7a92c 90632002-02-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
646052c0
DH
9064
9065 * gc.c (scm_gc_sweep): Make it compile even when deprecated
9066 features are excluded.
9067
89d7a92c 90682002-02-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
bac0e232
DH
9069
9070 * num2integral.i.c (NUM2INTEGRAL): Fixed signedness problem.
9071
4f2716b6
GH
90722002-02-25 Gary Houston <ghouston@arglist.com>
9073
9074 * convert.c: include <string.h> for convert_i.c.
9075
46151112
RB
90762002-02-24 Rob Browning <rlb@defaultvalue.org>
9077
9078 * .cvsignore: add stamp-h1.
9079
cd328b4f
NJ
90802002-02-21 Neil Jerram <neil@ossau.uklinux.net>
9081
9082 * unif.c (scm_array_to_list): Correct name, which had been
9083 accidentally changed to scm_t_arrayo_list!
9084
c709de7f
MD
90852002-02-20 Mikael Djurfeldt <mdj@linnaeus>
9086
9087 * gc.c (scm_gc_sweep): Print an error message when aborting due to
9088 underflowing scm_mallocated.
9089
c1965d31
MV
90902002-02-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
9091
9092 * gc.h, gc.c (scm_must_malloc, scm_must_realloc, scm_must_strdup,
9093 scm_must_strndup, scm_done_malloc, scm_done_free, scm_must_free):
9094 Reimplemented using the new scm_gc_malloc, etc., functions and
9095 deprecated.
9096
b606945b
TTN
90972002-02-11 Thien-Thi Nguyen <ttn@giblet.glug.org>
9098
9099 * Makefile.am (bin_PROGRAMS): Move `guile_filter_doc_snarfage'
9100 to `noinst_PROGRAMS'.
9101 (bin_SCRIPTS): Move all values to `noinst_SCRIPTS'; delete.
9102 (noinst_PROGRAMS, noinst_SCRIPTS): New.
9103
7c686ba8
MV
91042002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
9105
9106 * gc.h, gc.c (scm_gc_sweep): Issue deprecation warning when
9107 non-zero is returned from a port or smob free function.
9108 (scm_malloc, scm_realloc, scm_strndup, scm_strdup,
9109 scm_gc_register_collectable_memory,
9110 scm_gc_unregister_collectable_memory, scm_gc_malloc,
9111 scm_gc_realloc, scm_gc_free, scm_gc_strndup, scm_gc_strdup): New.
9112
9113 * backtrace.c, continuations.c, convert.i.c, coop-threads.c,
9114 debug-malloc.c, dynl.c, environments.c, environments.h,
9115 extensions.c, filesys.c, fports.c, gc.c, gc.h, gh_data.c, goops.c,
9116 guardians.c, hooks.c, init.c, keywords.c, load.c, numbers.c,
9117 ports.c, posix.c, procs.c, rdelim.c, regex-posix.c, root.c,
9118 smob.c, stime.c, strings.c, struct.c, struct.h, symbols.c, unif.c,
9119 vectors.c, weaks.c: Use scm_gc_malloc/scm_malloc and
9120 scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
9121 appropriate. Return zero from smob and port free functions.
9122
9123 * debug-malloc.c (scm_malloc_reregister): Handle "old == NULL".
9124
9125 * deprecation.h, deprecation.c: Reimplemented to allow deprecation
9126 messages while the GC is running.
9127 (scm_c_issue_deprecation_warning_fmt): New.
9128
9129 * fports.c (scm_setvbuf): Reset read buffer to saved values when
9130 it is pointing to the putback buffer.
9131
66adc0a6
TTN
91322002-02-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
9133
9134 * gsubr.c (create_gsubr): On "too many args" error,
9135 also display arg count and name. Thanks to Bill Schottstaedt.
9136
0187b4f4
TTN
91372002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
9138
9139 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
9140
9141 (bin_SCRIPTS): Remove guile-snarf-docs-texi.
9142 (alldotdocfiles, snarf2checkedtexi, dotdoc2texi): New vars.
9143 (guile.texi, guile-procedures.texi): Use $(dotdoc2texi).
9144
9145 * guile-snarf-docs-texi.in: Bye bye.
9146
402e687c
MV
91472002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
9148
9149 * symbols.c (scm_make_symbol): Fix typo in docstring.
9150
9151 * symbols.h (scm_mem2uninterned_symbol, scm_symbol_interned_p,
9152 scm_make_symbol): New prototypes.
9153
319b98ed
MV
91542002-02-03 Marius Vollmer <mvo@zagadka.ping.de>
9155
9156 * symbols.h (SCM_SET_SYMBOL_HASH): Removed.
9157 (SCM_SYMBOL_INTERNED_P): New.
9158 * symbols.c (scm_symbol_hash): Use scm_ulong2num instead of
9159 SCM_MAKINUM since hash values can well be bignums.
9160 (scm_mem2symbol): Only use hash values below SCM_T_BITS_MAX/2.
9161 This signals a interned symbol.
9162 (scm_mem2uninterned_symbol, scm_symbol_interned_p,
9163 scm_make_symbol): New.
0187b4f4 9164
319b98ed
MV
9165 * print.c (scm_iprin1): Print uninterned symbols unreadably.
9166
34472dfe
TTN
91672002-02-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
9168
9169 * __scm.h (HAVE_UINTPTR_T): Only define if UINTPTR_T attributes
9170 are defined: UINTPTR_MAX, INTPTR_MAX, INTPTR_MIN.
0187b4f4 9171 Thanks to Dave Love.
34472dfe 9172
1b39c2e3
MV
91732002-01-31 Marius Vollmer <mvo@zagadka.ping.de>
9174
9175 * symbols.c (scm_gensym): Use " g" as default prefix, not "g".
319b98ed 9176 This might help to make unintended clashes less likely.
1b39c2e3
MV
9177 (scm_string_to_symbol): Protect the string until the symbols is
9178 created.
9179
1fa86ca5
SJ
91802002-01-31 Stefan Jahn <stefan@lkcc.org>
9181
9182 * convert.c, convert.h, convert.i.c: New files containing C
34472dfe 9183 array to Scheme conversion helpers meant to be replacement
1fa86ca5
SJ
9184 functions for the deprecated gh interface.
9185
9186 * Makefile.am: Setup rules for new `convert.*' files.
9187
af68e5e5
SJ
91882002-01-28 Stefan Jahn <stefan@lkcc.org>
9189
9190 * symbols.c (scm_c_symbol2str): New function, replacement for
9191 `gh_scm2newsymbol()'.
9192
34472dfe 9193 * strings.c (scm_c_substring2str): New function. Proper
af68e5e5
SJ
9194 replacement for `gh_get_substr()'.
9195
9196 * socket.c: Include `stdint.h' if available for the `uint32_t'
9197 declaration.
9198
504d99c5 9199 * scmsigs.c (scm_sigaction): Initialize `chandler' (inhibits
af68e5e5
SJ
9200 compiler warning).
9201
9202 * backtrace.c: Include `lang.h' for GUILE_DEBUG conditional.
9203
c96d76b8 92042002-01-22 Neil Jerram <neil@ossau.uklinux.net>
34472dfe 9205
c96d76b8 9206 Other changes unrelated to Elisp...
34472dfe 9207
c96d76b8
NJ
9208 * eval.c (scm_m_if): Use s_if rather than repeating string literal
9209 "if".
9210 (comments): Fix a few typos.
9211 (scm_for_each): Add parentheses around oddly unparenthesized
9212 if/while conditions.
9213
9214 * read.c (scm_read_opts): Add full stop at end of doc for
9215 `keywords' option.
9216
9217 * script.c (scm_compile_shell_switches): Use scm_str2symbol
9218 instead of gh_symbol2scm.
9219
9220 * srcprop.h (SRCPROPBRK): Return C type rather than SCM.
9221 (SRCBRKP): Use SRCPROPBRK rather than duplicating its logic.
9222
9223 * srcprop.c (scm_srcprops_to_plist, scm_source_property): Change
9224 SRCPROPBRK (x) to SCM_BOOL (SRCPROPBRK (x)).
9225
9226 First batch of changes for Elisp support...
9227
9228 * alist.c, async.c, boolean.c, dynl.c, eval.c, filesys.c,
9229 fluids.c, list.c, load.c, options.c, posix.c, print.c, sort.c,
9230 throw.c, vectors.c, weaks.c: Add #include for lang.h.
9231
9232 * eval.c, eval.h, init.c, lang.c, lang.h: Use SCM_ENABLE_ELISP to
9233 conditionalize compilation and initialization of Elisp support
9234 function.
34472dfe 9235
c96d76b8
NJ
9236 * alist.c (scm_assq, scm_assv, scm_assoc), async.c
9237 (scm_asyncs_pending, scm_run_asyncs, noop), backtrace.c
9238 (scm_set_print_params_x), dynl.c (scm_make_argv_from_stringlist),
9239 filesys.c (fill_select_type, retrieve_select_type), fluids.c
9240 (scm_swap_fluids, scm_swap_fluids_reverse), list.c (scm_null_p,
9241 scm_ilength, scm_append_x, scm_last_pair, scm_reverse,
9242 scm_reverse_x, scm_list_ref, scm_list_set_x, scm_list_cdr_set_x,
bbd26b5a
NJ
9243 scm_c_memq, scm_memv, scm_member), load.c (scm_search_path),
9244 options.c (change_option_setting, scm_options), posix.c
9245 (environ_list_to_c), print.c (scm_iprlist), throw.c
9246 (scm_exit_status), vectors.c (scm_vector), weaks.c
9247 (scm_weak_vector): Use SCM_NULL_OR_NIL_P instead of SCM_NULLP.
c96d76b8
NJ
9248
9249 * boolean.c (scm_not): Use `SCM_FALSEP || SCM_NILP' instead of
9250 just SCM_FALSEP.
34472dfe 9251
c96d76b8
NJ
9252 * boolean.c (scm_boolean_p): Use `SCM_BOOLP || SCM_NILP' instead
9253 of just SCM_BOOLP.
9254
9255 * eval.c (scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify,
9256 s_t_ify, scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify,
9257 scm_m_0_ify, s_1_ify, scm_m_1_ify): Removed.
9258 (scm_m_atfop): Support function aliasing. Support both function
9259 args, which need transformation, and macro args, which do not.
9260 Add explanatory comments.
9261 (SCM_CEVAL): In switch cases for SCM_IM_AND, SCM_IM_COND,
9262 SCM_IM_DO, SCM_IM_IF and SCM_IM_OR, add `|| SCM_NILP' to existing
9263 checks for SCM_FALSEP. In switch case for SCM_IM_NIL_COND, use
9264 SCM_NULLP || SCM_NILP instead of checks against (removed)
9265 scm_lisp_nil. Removed switch cases for SCM_IM_NIL_IFY,
9266 SCM_IM_T_IFY, SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY.
9267
9268 * lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null,
9269 scm_m_while, scm_nil_eq): Commented out; I don't think we need
9270 these, but I don't want to remove them yet, just in case.
9271 (scm_init_lang): Define `%nil' variable on Scheme level to hold
9272 Elisp nil value.
9273
9274 * lang.h (SCM_NILP): Test against Elisp nil value instead of
9275 against (removed) scm_lisp_nil.
9276 (SCM_NILNULLP, SCM_NIL2EOL, SCM_EOL2NIL): Commented out.
9277 (SCM_NULL_OR_NIL_P): New.
9278
9279 * list.c (scm_append): Use SCM_VALIDATE_NULL_OR_NIL instead of
9280 SCM_VALIDATE_NULL.
9281
9282 * print.c (scm_isymnames): Fix comment. Remove #@nil-ify,
9283 #@t-ify, #@0-cond, #@0-ify, #@1-ify. Add #nil (for SCM_ELISP_NIL
9284 value).
9285
9286 * sort.c (scm_sorted_p, scm_merge, scm_merge_list_x, scm_merge_x,
9287 scm_sort_x, scm_sort, scm_stable_sort_x, scm_stable_sort): Use
9288 SCM_NULL_OR_NIL_P instead of SCM_NULLP. In constructions like `if
9289 (SCM_NULLP (x)) return SCM_EOL;', return x rather than SCM_EOL.
9290
9291 * tags.h (SCM_IM_NIL_IFY, SCM_IM_T_IFY, SCM_IM_0_COND,
9292 SCM_IM_0_IFY, SCM_IM_1_IFY): Removed.
9293 (SCM_IM_BIND, SCM_IM_DELAY, SCM_IM_CALL_WITH_VALUES, SCM_UNBOUND):
9294 Numbering shifted down accordingly.
9295 (SCM_ELISP_NIL): New IFLAG.
9296
9297 * validate.h (SCM_VALIDATE_NULL_OR_NIL): New.
34472dfe 9298
a392ee15
DH
92992002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9300
9301 * eval.c: Removed outdated references to "everr". Improved some
9302 comments.
9303
9304 (scm_deval_args, deval_args): Renamed scm_deval_args to
9305 deval_args, since it is not part of the interface.
9306
9307 (SCM_CEVAL): Added (maybe somewhat verbose) comment. Avoid to
9308 use references to debug.vect[0] before it exists. Add parentheses
9309 to switch statement.
9310
9311 * goops.h: Added local emacs variables.
9312
24933780
DH
93132002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9314
9315 * eval.[ch] (scm_deval_args): Made static.
9316
9317 * srcprop.c (scm_source_property): Remove redundant SCM_IMP
9318 test.
9319
9320 * strings.c (scm_c_string2str): Clarified comment. Replaced
9321 THINKME by FIXME for uniformness. Removed question about whether
9322 arguments need to be protected from garbage collection: Arguments
9323 must be protected as any other variable.
9324
f9450cdb
DH
93252002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9326
9327 * procs.h (SCM_CLOSURE_BODY): New Macro.
9328
9329 * debug.c (scm_procedure_name, scm_procedure_source), eval.c
9330 (SCM_CEVAL, SCM_APPLY), goops.c (scm_sys_initialize_object,
9331 get_slot_value, set_slot_value), procs.c
9332 (scm_procedure_documentation), sort.c (closureless), stacks.c
9333 (get_applybody): Replace SCM_CDR (SCM_CODE (...)) by
9334 SCM_CLOSURE_BODY.
9335
9336 * sort.c (closureless): Prefer !SCM_FOOP over SCM_NFOOP.
9337
5dc64f64
MV
93382001-12-26 Marius Vollmer <mvo@zagadka.ping.de>
9339
9340 * Makefile.am (guile-procedures.txt): When we don't have makeinfo,
9341 use "cp" instead.
9342
197ee3d3
MV
93432001-12-16 Marius Vollmer <mvo@zagadka.ping.de>
9344
9345 * stacks.c, stacks.h (scm_t_stackype): Renamed to scm_stack_type
9346 everywhere.
9347
9348 * continuations.c (scm_make_continuation): Do not retain the
9349 throw_value when the continuation is invoked.
9350
4d4528e7
SJ
93512001-12-08 Stefan Jahn <stefan@lkcc.org>
9352
9353 * strings.c (scm_c_string2str): New function. Converts a
34472dfe 9354 given Scheme string into a C string. Also put in two
4d4528e7
SJ
9355 THINKME's regarding the malloc policy for the missing converter
9356 routines.
9357
98347362
NJ
93582001-12-01 Neil Jerram <neil@ossau.uklinux.net>
9359
9360 * gh_data.c (gh_module_lookup): Use scm_str2symbol rather than
9361 gh_symbol2scm.
9362
1fc8902f
DH
93632001-11-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
9364
9365 * gc.h (SCM_GC_CELL_WORD, SCM_GC_CELL_OBJECT,
9366 SCM_GC_SET_CELL_WORD, SCM_GC_SET_CELL_OBJECT): New macros.
9367
9368 (SCM_GC_CELL_TYPE, SCM_CELL_WORD, SCM_CELL_OBJECT,
9369 SCM_SET_CELL_WORD, SCM_SET_CELL_OBJECT, SCM_FREE_CELL_CDR,
9370 SCM_GC_SET_CELL_OBJECT): Express in terms of SCM_GC_CELL_*
9371 macros.
9372
9373 (SCM_FREE_CELL_P): Express in terms of SCM_GC_CELL_TYPE.
9374
9375 * inline.h (scm_alloc_cell, scm_alloc_double_cell): Use
9376 SCM_GC_CELL_* macros when accessing free cells.
9377
4878beec
MV
93782001-11-25 Marius Vollmer <mvo@zagadka.ping.de>
9379
9380 * vectors.h (SCM_MAKE_VECTOR_TAG): New.
34472dfe 9381 * unif.h (SCM_MAKE_BITVECTOR_TAG, SCM_MAKE_UVECTOR_TAG): New.
4878beec
MV
9382 * symbols.h (SCM_MAKE_SYMBOL_TAG): New.
9383 * strings.h (SCM_MAKE_STRING_TAG): New.
9384 * procs.h (SCM_MAKE_CCLO_TAG): New.
9385 * numbers.h (SCM_MAKE_BIGNUM_TAG): New.
9386
9387 * goops.h: Replaced SCM_DEBUG_DEPRECATED with
9388 !SCM_ENABLE_DEPRECATED.
9389
9390 * async.c, async.h (scm_system_async_mark_from_signal_handler):
9391 New.
9392
9393 * scmsigs.c (scm_take_signal): Removed all code that assumes that
9394 signal handlers are allowed to divert the flow of control. Call
9395 scm_system_async_mark_from_signal_handler instead of
9396 scm_system_async_mark.
9397
9398
9399 Deprecated SCM_NEWCELL and SCM_NEWCELL2. Added scm_alloc_cell and
9400 scm_alloc_double_cell in their place.
34472dfe 9401
4878beec
MV
9402 * gc.h (SCM_GC_SET_ALLOCATED, scm_debug_newcell,
9403 scm_debug_newcell2, scm_tc16_allocated): Removed from header.
9404 (scm_deprecated_newcell, scm_deprecated_newcell2): New.
9405 (SCM_NEWCELL, SCM_NEWCELL2): Implement in terms of
9406 scm_deprecated_newcell and scm_deprecated_newcell2.
9407
9408 gc.c (scm_tc16_allocated): Only define when including deprecated
9409 features.
9410 (scm_debug_newcell, scm_debug_newcell2): Removed.
9411 (scm_init_storage): Do not initialize scm_tc16_allocated.
9412 (scm_init_gc): Do it here.
9413 (allocated_mark): New, from old code.
9414 (scm_deprecated_newcell, scm_deprecated_newcell2): New.
34472dfe 9415
4878beec 9416 * inline.c, inline.h: New files.
34472dfe 9417 * Makefile.am: Added them in all the right places.
4878beec 9418
34472dfe 9419 * _scm.h: Include "libguile/inline.h".
4878beec
MV
9420
9421 * alist.c, coop-threads.c, debug.c, environments.c, eval.c,
9422 fports.c, gh_data.c, goops.c, guardians.c, lang.c, list.c,
9423 num2float.i.c, numbers.c, pairs.c, ports.c, print.c, procs.c,
9424 smob.c, smob.h, strings.c, strports.c, struct.c, symbols.c,
9425 unif.c, variable.c, vectors.c, vports.c, weaks.c: Replaced
9426 SCM_NEWCELL and SCM_NEWCELL2 with scm_alloc_cell and
9427 scm_alloc_double_cell, respectively.
9428
d2bc7fae
MV
94292001-11-23 Marius Vollmer <mvo@zagadka.ping.de>
9430
9431 * modules.c (scm_c_use_module): Adapt to changes to
9432 `process-use-modules'.
9433
5eec27e9
DH
94342001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
9435
9436 * numbers.c (scm_divide): Fix more division by zero errors.
9437
8978878f
GH
94382001-11-21 Gary Houston <ghouston@arglist.com>
9439
9440 * Makefile.am (OMIT_DEPENDENCIES): removed, since it seems to be
9441 obsolete. autogen.sh says:
9442 invalid unused variable name: `OMIT_DEPENDENCIES'
9443
164826d3
DH
94442001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
9445
9446 * numbers.c (scm_divide): Fix (/ 0). Thanks to Keith Wright for
9447 reporting the bug.
9448
84aff7a7
MV
94492001-11-21 Marius Vollmer <mvo@zagadka.ping.de>
9450
9451 * Makefile.am (install-exec-hook): Prepend $(DESTDIR) to filename.
9452 Thanks to Eric Gillespie, Jr!
34472dfe 9453
6063dc1d
SJ
94542001-11-21 Stefan Jahn <stefan@lkcc.org>
9455
34472dfe
TTN
9456 * win32-socket.c (getservent, setservent, endservent,
9457 getprotoent, setprotoent, endprotoent): New functions.
6063dc1d
SJ
9458 Appropriate replacements for M$-Windows.
9459
9460 * numbers.c (SIZE_MAX, PTRDIFF_MAX, PTRDIFF_MIN): Reintroduced
9461 these definitions for GUILE_DEBUG.
9462
9463 * net_db.c: Include "win32-socket.h" if compiling with a native
34472dfe
TTN
9464 M$-Windows compiler. Include some pieces of code (protoent and
9465 servent interface) protected by HAVE_* macros when using a
6063dc1d
SJ
9466 native M$-Windows compiler.
9467
351982f6
MV
94682001-11-20 Marius Vollmer <mvo@zagadka.ping.de>
9469
9470 * modules.c (scm_c_export): Do nothing when the first argument is
9471 already the terminating NULL. Thanks to Han-Wen Nienhuys!
9472
849038b5
TTN
94732001-11-20 Thien-Thi Nguyen <ttn@glug.org>
9474
9475 * Makefile.am (libpath.h): In SCM_BUILD_INFO,
9476 also include `buildstamp'.
9477
5c790b44
RB
94782001-11-18 Rob Browning <rlb@defaultvalue.org>
9479
9480 * version.c
9481 (s_scm_major_version): use SCM_MAJOR_VERSION.
9482 (s_scm_minor_version): use SCM_MINOR_VERSION.
9483 (s_scm_micro_version): use SCM_MICRO_VERSION.
9484 (s_scm_version): use SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
9485 SCM_MICRO_VERSION.
9486
9487 * version.h.in
9488 (SCM_MAJOR_VERSION): renamed from SCM_GUILE_MAJOR_VERSION.
9489 (SCM_MINOR_VERSION): renamed from SCM_GUILE_MINOR_VERSION.
9490 (SCM_MICRO_VERSION): renamed from SCM_GUILE_MICRO_VERSION.
9491
694a9bb3
NJ
94922001-11-18 Neil Jerram <neil@ossau.uklinux.net>
9493
9494 * vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):
9495 Rewrite docstrings without reference to substring-move-left/right,
9496 since the latter no longer exist.
9497
302c12b4
DH
94982001-11-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
9499
9500 * eval.c: Removed bogus comment about acros.
9501
9502 (scm_unmemocar): Use !SCM_CONSP instead of SCM_IMP.
9503 Minimize scope of local variable. Eliminate dependency on
9504 macro DEBUG_EXTENSIONS.
9505
9506 (s_splicing): New error message string.
9507
9508 (scm_m_body): Issue 'bad body' message rather than 'missing
9509 expression' message.
9510
9511 (scm_m_quote): Eliminate unnecessary copying.
9512
9513 (scm_m_lambda, scm_m_letstar, scm_m_letrec, scm_m_let): Leave the
9514 checking of the body to scm_m_body.
9515
9516 (scm_m_do): Move comment to function header. Rename arg1 to
9517 binding. Made the code a bit easier to read.
9518
9519 (evalcar): Removed.
9520
9521 (iqq): Added a comment. Changed the depth parameter to
9522 unsigned. Use size_t for vector lengths. Make sure vector object
9523 is gc protected as long as its contents are read. Add some syntax
9524 checks. Get rid of unnecessary SCM_IMP test. Clean up the
9525 control structure a bit.
9526
9527 (scm_m_delay): Added comment about the implementation of
9528 scm_m_delay.
9529
9530 (scm_m_define): Add comment about guile's currying define
9531 syntax. Renamed 'proc' to 'name'. Eliminate dependency on macro
9532 DEBUG_EXTENSIONS. Simplified code a bit. Eliminate SICP code.
9533
9534 (scm_m_letrec1): Removed. Part of the functionality is taken
9535 over by the new function 'transform_bindings'.
9536
9537 (transform_bindings): New function. Takes over some of the
9538 functionality of removed function 'scm_m_letrec1', namely to split
9539 a list of bindings into a reversed list of variables and a list of
9540 initializers.
9541
9542 (scm_m_letrec): Call 'transform_bindings'.
9543
9544 (scm_m_let): Minimized scope of local variables. Renamed 'proc'
9545 to 'temp' and 'arg1' to 'binding'. Eliminated redundant SCM_NIMP
9546 test. Use 'transform_bindings'. Fixed scoping error with named
9547 let (Thanks to Aubrey Jaffer for reporting the bug and to Neil
9548 Jerram for suggesting the fix). Cleaned up the control structure
9549 a bit.
9550
9551 (scm_m_expand_body): Use 'transform_bindings'. Eliminated
9552 unnecessary consing. Eliminated unnecessary
9553 SCM_DEFER/ALLOW_INTS.
9554
9555 (SCM_CEVAL): Un-obfuscated some loops.
9556
cecb4a5e
NJ
95572001-11-16 Neil Jerram <neil@ossau.uklinux.net>
9558
8f85c0c6
NJ
9559 * gc.h (scm_unhash_name): Old declaration removed.
9560
9561 * eval.c (s_scm_eval): Change @var{primitive-eval} to
9562 @code{primitive-eval}.
9563
9564 * feature.c, vectors.c, net_db.c, unif.c, weaks.c, struct.c,
9565 version.c, alist.c, ports.c, ramap.c, unif.c, strings.c, list.c:
9566 Change @deffnx lines in docstrings to say {Scheme Procedure}
9567 rather than primitive or procedure.
9568
9569 * posix.c (scm_execl), filesys.c (scm_close), unif.c
9570 (scm_array_set_x, scm_array_contents, scm_uniform_array_read_x,
9571 scm_bit_set_star_x, scm_bit_invert_x), ramap.c (scm_array_fill_x,
9572 scm_array_for_each, scm_array_index_map_x), vectors.c (scm_vector,
9573 scm_make_vector, scm_vector_to_list, scm_vector_fill_x), strop.c
9574 (scm_string_split, scm_string_ci_to_symbol), strings.c
9575 (scm_string_p), sort.c (scm_merge), print.c (scm_newline),
9576 macros.c (scm_macro_type), alist.c (scm_acons, scm_assq):
9577 Docstring fixes and improvements reflecting edits that have been
9578 made in the reference manual source.
9579
9580 * objprop.c (scm_object_properties, scm_set_object_properties_x,
9581 scm_object_property, scm_set_object_property_x): Remove invalid
9582 @deffnx lines for corresponding procedure property primitives.
9583
cecb4a5e
NJ
9584 These changes add a @deffnx C function declaration and function
9585 index entries for each Guile primitive to the copy of the doc
9586 snarf output that is used for reference manual synchronization.
9587 Online help is unchanged.
849038b5 9588
cecb4a5e
NJ
9589 * snarf.h (SCM_SNARF_DOCS): Output primitive's C function name.
9590 (SCM_DEFINE, SCM_DEFINE1, SCM_REGISTER_PROC): Supply to C function
9591 name to SCM_SNARF_DOCS.
849038b5 9592
cecb4a5e
NJ
9593 * guile-snarf-docs-texi.in: Pass the shell script's arguments into
9594 snarf-check-and-output-texi.
9595
9596 * Makefile.am (guile-procedures.texi): New rule.
9597 (BUILT_SOURCES, guile.texi, guile-procedures.txt, CLEANFILES):
9598 Changed so that the last stage of doc snarfing is now performed
9599 twice, once to produce guile-procedures.txt for online help, and
9600 once to produce guile.texi for reference manual synchronization.
9601
ddea3325
DH
96022001-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
9603
9604 * eval.c (RETURN): Wrap in do{}while(0) in order to make it
9605 safely usable as a single statement followed by a ';', for example
9606 in an if statement.
9607
9608 (SCM_CEVAL, SCM_APPLY): Clean up code using 'RETURN'.
9609
72dd0a03
NJ
96102001-11-13 Neil Jerram <neil@ossau.uklinux.net>
9611
9612 * random.c (scm_random_solid_sphere_x,
9613 scm_random_hollow_sphere_x): Correct "shere" typos.
9614
9615 * hashtab.c (scm_hash_fold): Add missing apostrophe to docstring.
9616
9617 * version.c (scm_version): Update docstring to include
9618 `micro-version'.
9619
6558eda6
MV
96202001-11-13 Marius Vollmer <mvo@zagadka.ping.de>
9621
409b8588
MV
9622 * modules.c (scm_c_export): Call va_end after collecting the
9623 symbols.
9624
adb8c0f2
MV
9625 * strop.h, strop.c (scm_substring_move_left_x,
9626 scm_substring_move_right_x): Removed.
9627
6558eda6
MV
9628 * __scm.h (HAVE_UINTPTR_T, HAVE_PTRDIFF_T, HAVE_LONG_LONG,
9629 HAVE_LONG_LONGS): Define to "1" when defining them, to mirror what
9630 configure does.
9631
5d8fc640
MV
96322001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
9633
9634 * numbers.c: Document macros to define when including
9635 num2integral.i.c. MAX_VALUE and MIN_VALU are no longer used, we
9636 now rely on SIZEOF_ macros that have been figured out at
9637 configure time.
9638
9639 * num2integral.i.c: Adapt to new interface.
9640 (NUM2INTEGRAL): Test whether a fixnum can be represented in the
9641 target type by casting it and checking whether it is still the
9642 same. Do not try to handle bignums for integral types that are
9643 smaller than fixnums. When handling bignums, collect the
9644 magnituse first into a unsigned type, and correctly check for
9645 overflow.
9646 (INTEGRAL2BIG): Do not use MIN_VALUE explicitely by observing that
9647 only -MIN_VALUE can still be negative of all negative numbers (in
9648 twos-complement).
9649
849038b5 9650 * tags.h (SIZEOF_SCM_T_BITS): Define it appropriately.
5d8fc640
MV
9651
9652 * __scm.h: Define HAVE_UINTPTR_T, HAVE_PTRDIFF_T and
9653 HAVE_LONG_LONG depending on whether their size is non-zero.
9654
d6b8cf11
TTN
96552001-11-11 Thien-Thi Nguyen <ttn@glug.org>
9656
9657 * strop.c (scm_string_null_p): Docfix; nfc.
9658 Thanks to Scott Lenser.
9659
9401323e
NJ
96602001-11-07 Neil Jerram <neil@ossau.uklinux.net>
9661
9662 * extensions.c (scm_load_extension): Canonicalize docstring
9663 whitespace.
9664
9665 * unif.c (scm_uniform_array_write), ports.c
9666 (scm_current_output_port, scm_force_output), dynwind.c
9667 (scm_dynamic_wind), scmsigs.c (scm_setitimer, scm_getitimer),
9668 filesys.c (scm_open, scm_lstat), struct.c
9669 (scm_make_struct_layout), random.c (scm_random,
9670 scm_random_solid_sphere_x, scm_random_hollow_sphere_x, strop.c
9671 (scm_i_index): Remove superfluous whitespace from end of docstring
9672 lines.
9673
9674 * filesys.c (scm_select), guardians.c (scm_guardian_greedy_p),
9675 strings.c (scm_make_string), variable.c (scm_make_variable,
9676 scm_make_undefined_variable, scm_variable_p, scm_variable_set_x,
9677 scm_variable_bound_p), scmsigs.c (scm_setitimer, scm_getitimer),
9678 posix.c (scm_crypt), struct.c (scm_make_vtable_vtable), hashtab.c
9679 (scm_hash_fold), ports.c (scm_port_for_each): Remove superfluous
9680 newline at end of docstrings.
9681
9682 * modules.c (scm_set_current_module): Add missing newline to
9683 docstring.
9684
b4e15479
SJ
96852001-11-07 Stefan Jahn <stefan@lkcc.org>
9686
9687 * win32-socket.[ch]: New files. Defines Winsock-API error codes
9688 and makes them available through Guile. That is because the
9689 Winsock-API does not store its errors in `errno' and thus cannot
9690 return error messages via `strerror (errno)'.
9691
9692 * socket.c (scm_init_socket): Initialize `win32-socket' part
9693 here under M$-Windows.
9694
d6b8cf11 9695 * numbers.h: Added missing declaration of
b4e15479
SJ
9696 `scm_sys_check_number_conversions()'.
9697
9698 * error.c: Local definition of SCM_I_STRERROR and SCM_I_ERRNO
9699 and use in `(strerror)' and `(system-error)'.
9700
d6b8cf11 9701 * Makefile.am (EXTRA_libguile_la_SOURCES): Added
b4e15479
SJ
9702 `win32-socket.[ch]' to extra source and header files.
9703
7ab89df1
MV
97042001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
9705
9706 * script.c (scm_shell_usage, scm_compile_shell_switches): Prepend
9707 a call to turn-on-debugging when --debug has been given instead of
9708 turning it on directly. Also, handle new `--no-debug' option,
9709 which might suppress the call to turn-on-debugging.
9710
0233bfc1
SJ
97112001-11-05 Stefan Jahn <stefan@lkcc.org>
9712
9713 * struct.c (s_scm_struct_vtable_p): Corrected docstring.
9714
8f99e3f3
SJ
97152001-11-04 Stefan Jahn <stefan@lkcc.org>
9716
9717 * Makefile.am (libguile_la_LIBADD): Added $(THREAD_LIBS_LOCAL)
d6b8cf11 9718 here (was at guile_LDADD) which describes the dependency
8f99e3f3
SJ
9719 correctly and allows a clean build on Win32.
9720
d6b8cf11 9721 * __scm.h (SCM_API): Follow-up patch. Renamed __FOO__ macros
8f99e3f3
SJ
9722 into FOO.
9723
9724 * __scm.h: USE_DLL_IMPORT indicates the usage of the DLL
9725 import macros for external libraries (libcrypt, libqthreads,
9726 libreadline and libregex).
9727
9728 * coop-defs.h: Include <winsock2.h> for `struct timeval'.
9729
9730 * posix.c (flock): Added support for flock() in M$-Windows.
9731
9732 * guile.c (SCM_IMPORT): Follow-up patch. Use SCM_IMPORT instead
9733 of __SCM_IMPORT__.
9734
9735 * fports.c (getflags): Differentiate reading and writing pipes
9736 descriptors.
9737
9738 * filesys.c (S_IS*): Redefine all of the S_IS*() macros for
9739 M$-Windows.
9740
9741 * coop.c (coop_condition_variable_timed_wait_mutex): Use
9742 conditionalized error code if `ETIMEDOUT' is not available.
9743 (scm_thread_usleep): Remove bogus declaration of `struct timeval
9744 timeout'.
9745
9746 * numbers.c (PTRDIFF_MIN): Moved this definition where it actually
9747 belongs. That is because NO_PREPRO_MAGIC gets undefined after
9748 each inclusion of `num2integral.i.c'.
9749 (SIZE_MAX): Define NO_PREPRO_MAGIC if SIZE_MAX is undefined.
9750
4e21fa60
MV
97512001-11-03 Marius Vollmer <mvo@zagadka.ping.de>
9752
9753 * eval.c (scm_m_begin): Allow `(begin)`, with no subforms.
9754 (SCM_CEVAL): Evaluate an empty `begin' to SCM_UNSPECIFIED.
9755
08112c95
MD
97562001-11-02 Mikael Djurfeldt <mdj@linnaeus>
9757
7663c008
MD
9758 * print.c (scm_iprin1): Mark print state as revealed when
9759 dispatching to generic write or display.
9760
08112c95
MD
9761 * unif.c (scm_ra2contig): Fixed memory overwrite bug.
9762
f712d833
MV
97632001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
9764
9765 Support for native Win32. Thanks to Stefan Jahn!
d6b8cf11 9766
f712d833
MV
9767 * Makefile.am: Add win32-uname.c, win32-uname.h, win32-dirent.c
9768 and win32-dirent.h to extra source and header files. These
9769 include the uname() and the POSIX dirent interface implementation
9770 for M$-Windows. Put `-no-undefined' into LDFLAGS to support
9771 linkers which do not allow unresolved symbols inside shared
9772 libraries. Corrected `guile_filter_doc_snarfage$(EXEEXT)'
9773 dependency.
9774
d6b8cf11
TTN
9775 * __scm.h: Defined SCM_API. This macro gets prepended to all
9776 function and data definitions which should be exported or imported
f712d833
MV
9777 in the resulting dynamic link library in the Win32 port.
9778
9779 * __scm.h, alist.h, arbiters.h, async.h, backtrace.h, boolean.h,
d6b8cf11 9780 chars.h, continuations.h, coop-defs.h, coop-threads.h,
f712d833
MV
9781 debug-malloc.h, debug.h, deprecation.h, dynl.h, dynwind.h,
9782 environments.h, eq.h, error.h, eval.h, evalext.h, extensions.h,
9783 feature.h, filesys.h, fluids.h, fports.h, gc.h, gdb_interface.h,
9784 gdbint.h, gh.h, goops.h, gsubr.h, guardians.h, hash.h, hashtab.h,
9785 hooks.h, init.h, ioext.h, iselect.h, keywords.h, lang.h, list.h,
d6b8cf11 9786 load.h, macros.h, mallocs.h, modules.h, net_db.h, numbers.h,
f712d833
MV
9787 objects.h, objprop.h, options.h, pairs.h, ports.h, posix.h, print.h,
9788 procprop.h, procs.h, properties.h, ramap.h, random.h, rdelim.h,
9789 read.h, regex-posix.h, root.h, rw.h, scmsigs.h, script.h, simpos.h,
9790 smob.h, socket.h, sort.h, srcprop.h, stackchk.h, stacks.h, stime.h,
9791 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
9792 tags.h, threads.h, throw.h, unif.h, values.h, variable.h, vectors.h,
9793 vports.h, weaks.h:
9794 Prefixed each each exported symbol with SCM_API.
9795
d6b8cf11 9796 * continuations.c: Added comment about the use of the extern
f712d833
MV
9797 declarations of {get,set}context() functions used in the ia64 port.
9798
9799 * continuations.h, gc.c: `__libc_ia64_register_backing_store_base'
9800 is meant to be a `unsigned long *'.
9801
9802 * filesys.c: Include `direct.h' if possible. Use local
9803 `win32-dirent.h' for the native M$-Windows port. Define S_IS*()
9804 macros for M$-Windows. Implementation of `fstat_Win32()' which is
9805 able to differentiate between sockets and other file descriptors.
9806 Use this function as wrapper in `scm_fstat()'. Fixed typo in
9807 `scm_dirname()'.
9808
9809 * fports.c: Include `io.h' is possible. Put `*fp' into referring
9810 statement block in `scm_fport_buffer_add()'.
9811 Some corrections in `getflags()'.
d6b8cf11 9812
f712d833
MV
9813 * gdb_interface.h (GDB_INTERFACE): Also support __CYGWIN__.
9814
9815 * guile.c: Make sure to define __SCM_IMPORT__ for shared library
9816 build on Win32. Disable preloaded symbols on Win2 platforms.
9817
9818 * ioext.c, ports.c: Include `io.h' is possible.
9819
9820 * mkstemp.c: Include `process.h' is possible.
9821
9822 * net_db.c: Disable extern declaration of `h_errno' for __CYGWIN__,
9823 too.
9824 Put `scm_return_entry()' into HAVE_GETSERVENT conditional.
9825
9826 * posix.c: Remove unnecessary dirent includes and defines. Include
9827 local `win32-uname.h' for MinGW. Extern declaration of
9828 `mkstemp()' for systems where it does not exists. Make
9829 `getlogin()' available on M$-Windows.
9830
9831 * scmsigs.c: Made `usleep()' avalable on MinGW.
9832
9833 * stime.c: On M$-Windows `tzname[]' is known to be `_tzname[]'.
9834
9835 * win32-dirent.c: Include "win32-dirent.h", not "dirent.h".
9836
9837 * win32-uname.c: Include "win32-uname.h", not "uname.h".
9838
d245ce23
MD
98392001-10-28 Mikael Djurfeldt <mdj@linnaeus>
9840
9841 * unif.c (scm_uniform_array_read_x, scm_uniform_array_write):
9842 Don't apply scm_uniform_vector_length on arrays.
9843
8ea46249
DH
98442001-10-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
9845
9846 * eval.c (scm_lookupcar, scm_m_letstar, scm_m_do, iqq,
9847 scm_m_define, scm_m_letrec1, scm_m_let, scm_m_expand_body,
9848 scm_macroexp, unmemocopy, scm_eval_args, scm_deval_args,
9849 SCM_CEVAL, scm_map, scm_init_eval): When building lists, prefer
9850 scm_list_<n> over scm_cons[2]?.
9851
9852 (scm_unmemocar, scm_m_cond, scm_m_letstar, scm_m_letrec1,
9853 scm_m_let, scm_m_atbind, unmemocopy, SCM_CEVAL, SCM_APPLY): Use
9854 SCM_C[AD][AD]R instead of explicit form.
9855
9856 (scm_m_set_x, scm_m_cond, scm_m_letstar, scm_m_do): Reordered
9857 comparison parameters.
9858
9859 (scm_m_case, scm_m_cond, scm_m_letstar, scm_m_do, SCM_CEVAL): Use
9860 !SCM_NULLP instead of SCM_NIMP.
9861
9862 (scm_m_case): Don't copy the form. Renamed proc to clause and
9863 minimized its scope. Renamed x to clauses. Removed side
9864 effecting operation from macro call.
9865
9866 (scm_m_cond): Don't copy the form. Renamed arg1 to clause and
9867 minimized its scope. Renamed x to clauses. Minimized the scope
9868 of variable 'len'. Make sure the else clause is treated specially
9869 even in case of '=>' occurences. Don't change the else to #t in
9870 order to be able to distinguish this case in the evaluator. Leave
9871 type checking of the recipient to the evaluator.
9872
9873 (scm_c_improper_memq): Made the comment somewhat clearer.
9874
9875 (scm_m_lambda): Renamed proc to formals. Removed unnecessary
9876 test for SCM_IM_LET at the place of the formal parameters.
9877 Simplified the formal parameter checking.
9878
9879 (scm_m_letstar): Added Comment. Renamed proc to bindings.
9880 Renamed arg1 to binding and minimized its scope. Eliminated
9881 unnecessary consing.
9882
9883 (scm_m_do): Renamed proc to bindings. Minimized the scope of
9884 variable 'len'.
9885
9886 (build_binding_list): New static function.
9887
9888 (unmemocopy): Don't use SCM_TYP7 on pairs (it's unclean).
9889 Further, split up the 'letrec' unmemoizing code to the
9890 corresponding parts for 'do', 'let' and 'letrec', adding comments
9891 to each form. Cleanup the handling of the do form (This removes
9892 some *real* code :-).
9893
9894 (SCM_CEVAL): Removed side effecting operation from macro call.
9895 Handle the 'else clause of the 'cond form specially - the symbol
9896 'else is not replaced with #t any more.
9897
8186c4f5
GH
98982001-10-14 Gary Houston <ghouston@arglist.com>
9899
9900 * version.c (scm_version): use sprintf instead of snprintf,
9901 for portability. thanks to Bill Schottstaedt.
9902
89759084
MD
99032001-10-14 Mikael Djurfeldt <mdj@linnaeus>
9904
9905 * read.c (scm_lreadr): When user-defined hash procedure returns
9906 SCM_UNSPECIFIED: Fall back to standard handling instead of raising
9907 an exception. (This prevents parsing of uniform vectors from
9908 interfering with parsing of numbers.)
9909
9c7ce563
MV
99102001-10-13 Marius Vollmer <mvo@zagadka.ping.de>
9911
9912 * numbers.c: Set NO_PREPRO_MAGIC when defining our version of
9913 PTRDIFF_MIN. Thanks to Ken Raeburn.
9914
99152001-10-07 Marius Vollmer <mvo@zagadka.ping.de>
9916
9917 * Makefile.am (EXTRA_libguile_la_SOURCES): Added "mkstemp.c".
9918
9919 * eval.c (scm_m_atbind): First try to find the variable without
9920 defining it locally; when it has not been found, define it
9921 locally.
9922
9923 * modules.c (module_variable): Pass over variables that exist but
9924 are unbound.
9925
99262001-10-06 Marius Vollmer <mvo@zagadka.ping.de>
9927
9928 * backtrace.c (display_backtrace_file_and_line): Only use
9929 scm_basename when POSIX support is compiled in. Thanks to Chris
9930 Cramer.
9931
1fe5e088
DH
99322001-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
9933
9934 * numbers.c (mem2uinteger): Return number read so far when coming
9935 across a hexdigit after having read a # or if not reading a hex
9936 value. This will enable the calling code to correctly handle
9937 forms like 1e2. (The background is, that the exponent markers d,
9938 e and f are also hexdigits.) Thanks to Mikael Djurfeldt for
9939 providing this patch.
9940
9941 (mem2complex): Fix erroneous double-negation. Now, numbers like
9942 1-i will be read correctly.
9943
68665a97
MD
99442001-10-12 Mikael Djurfeldt <mdj@linnaeus>
9945
9946 * debug.c (scm_mem_to_proc): Fixed typo in previous change.
9947
9948 * validate.h (SCM_VALIDATE_DOUBLE_DEF_COPY): New macro.
9949
d5cf5324
DH
99502001-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
9951
9952 * print.c (scm_print_state_vtable, print_state_pool):
9953 Initialize. These variables are now registered as gc roots.
9954
9955 (scm_current_pstate): Update documentation.
9956
9957 (scm_current_pstate, scm_make_print_state, scm_free_print_state,
9958 scm_prin1, scm_init_print): print_state_pool is registered as a
9959 gc root and thus does not need to be protected by a surrounding
9960 pair any more.
9961
9962 (make_print_state): The car of print_state_pool no longer holds
9963 the scm_print_state_vtable.
9964
9965 (scm_current_pstate, scm_make_print_state, print_circref,
9966 scm_iprin1, scm_prin1, scm_iprlist): Prefer !SCM_<foo> over
9967 SCM_N<foo>.
9968
9969 (scm_prin1): When building lists, prefer scm_list_<n> over
9970 scm_cons[2]?.
9971
9972 (scm_iprlist): Removed a redundant SCM_IMP test.
9973
9974 (scm_simple_format): Use SCM_EQ_P to compare SCM values.
9975
37c56aec
DH
99762001-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
9977
9978 * debug.c (scm_make_iloc): Prefer !SCM_<foo> over SCM_N<foo>.
9979
9980 (scm_memcons, scm_mem_to_proc): When building lists, prefer
9981 scm_list_<n> over scm_cons[2]?.
9982
9983 (scm_mem_to_proc): Prefer SCM_CONSP over SCM_NIMP.
9984
9985 (scm_procedure_name): Use SCM_CADR instead of explicit form.
9986
9987 (debugobj_print): Coerce scm_intprint arg 1 to long, not int.
9988 Thanks to Rob Browning for the patch (see log entry 2001-09-21) -
9989 for some reason his patch didn't make it into the cvs.
9990
79d34f68
DH
99912001-10-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
9992
9993 * numbers.c (mem2decimal_from_point): Cleaned up the parsing a
9994 little bit - should even be somewhat more accurate now.
9995
5e137c65
RB
99962001-10-08 Rob Browning <rlb@defaultvalue.org>
9997
9998 * gc.c: support ia64 register backing store.
9999 (SCM_MARK_BACKING_STORE): new macro.
10000
10001 * continuations.h: support ia64 register backing store.
10002 (struct scm_t_contregs): add ia64 register backing store.
10003
10004 * continuations.c: support ia64 register backing store.
10005 (continuation_mark): mark ia64 register backing store.
10006 (continuation_free): free ia64 register backing store.
10007 (scm_make_continuation): capture ia64 register backing store.
10008 (copy_stack_and_call): copy ia64 register backing store.
10009
ee083ac2
DH
100102001-10-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
10011
10012 * hashtab.c (scm_hash_fn_create_handle_x): The result of assoc_fn
10013 is known to be #f if no entry is found. Thus, use !SCM_FALSEP
10014 instead of SCM_NIMP to test for that case.
10015
10016 * strings.h (SCM_SET_STRING_LENGTH): Cast the length to
10017 scm_t_bits instead of long.
10018
71dcdbf9
MV
100192001-10-06 Marius Vollmer <mvo@zagadka.ping.de>
10020
10021 * tags.h (SCM_T_BITS_MAX, SCM_T_SIGNED_BITS_MAX,
10022 SCM_T_SIGNED_BITS_MIN): New.
10023 * numbers.h (SCM_MOST_POSITIVE_FIXNUM, SCM_MOST_NEGATIVE_FIXNUM):
10024 Use them to make these macros computable by the preprocessor.
10025
10026 * num2integral.i.c (INTEGRAL2NUM): Let the preprocessor test
10027 whether the integral type fits in a fixnum, not the compiler.
10028 This removes a spurious compiler warning. Also, honor the
10029 NO_PREPRO_MAGIC flag to suppress any preprocessor tests. This is
10030 needed for `long long's.
10031
10032 * numbers.c: Define NO_PREPRO_MAGOC when including
10033 num2integral.c.i for `long long' and `signed long long'.
10034
152812c0
MD
100352001-10-06 Mikael Djurfeldt <mdj@linnaeus>
10036
10037 These changes fixes a race condition in the Guile coop - pthread
10038 compatibility code.
d6b8cf11 10039
152812c0
MD
10040 * coop.c (mother_awake_p): New variable.
10041 (coop_create): Set mother_awake_p before creating or signalling
10042 mother; wait until mother is going to sleep before returning.
10043 (mother): Reset mother_awake_p before going to sleep.
10044
11d49f54
DH
100452001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
10046
10047 * options.c (protected_objects, scm_init_options): The content of
10048 protected_objects is now protected from garbage collection using
10049 scm_gc_register_root instead of scm_permanent_object.
10050
10051 (get_option_setting): New static function that computes an option
10052 setting as it was formerly done in the function scm_options.
10053
10054 (get_documented_option_setting): New static function that
10055 returns option documentation as it was formerly done in the
10056 function scm_options. Note that documentation C strings are no
10057 longer precomputed into SCM objects. Instead, they are converted
10058 into SCM strings every time get_documented_option_setting is
10059 called.
10060
10061 (change_option_setting): New static functions that modifies the
10062 option setting as it was formerly done in the function
10063 scm_options. The function is now exception safe, i. e. won't
10064 cause a memory leak when interrupted. Further, only non-immediate
10065 option values are added to the protection list.
10066
10067 (scm_options): This function now has only the purpose to dispatch
10068 to to get_option_setting, get_documented_option_setting or
10069 change_option_setting, depending on the arguments given to
10070 scm_options.
10071
10072 (scm_init_opts): Don't convert documentation C strings into SCM
10073 strings. Further, don't protect any object values: They _must_
10074 be immediate values, otherwise there is no guarantee that they
10075 have not been collected before anyway.
10076
10077 * options.[ch] (scm_t_option): Made type unsigned, name into a
10078 constant char* and val into a scm_t_bits type.
10079
10080 (scm_options, scm_init_opts): The number of options is guaranteed
10081 to be larger or equal to zero. Thus, the type is changed to
10082 unsigned.
10083
3dbacabc
DH
100842001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
10085
10086 * num2integral.i.c (NUM2INTEGRAL): Eliminated some warnings about
10087 testing an unsigned value for being >= 0.
10088
14282d0f
DH
100892001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
10090
10091 * numbers.h: Removed old comment about using SCM_CAR to access
10092 non-pair cells.
10093
10094 (SCM_MOST_POSITIVE_FIXNUM, SCM_MOST_NEGATIVE_FIXNUM): Make sure
10095 the return value is signed. Thanks to Brian Crowder for the bug
10096 report.
10097
10098 (SCM_SRS): Avoid unnecessary casting and don't unpack input
10099 values. With this patch, SCM_SRS can be safely used for other
10100 types than scm_t_signed_bits. However, it should still better be
10101 an internal macro and thus be renamed to SCM_I_SRS.
10102
10103 (SCM_MAKINUM, SCM_INUM): Use proper casting.
10104
2dbec7b5
GH
101052001-10-03 Gary Houston <ghouston@arglist.com>
10106
10107 * continuations.h, unif.h: in the descriptions of the bit patterns
10108 of the heap cells, make bit 0 the least significant.
10109
cf4ee841
TTN
101102001-09-25 Thien-Thi Nguyen <ttn@glug.org>
10111
10112 * chars.h (SCM_MAKE_CHAR): Use `scm_t_bits' instead of `intptr_t'.
10113 Thanks to Golubev I. N.
10114
4a151b3d
GH
101152001-09-25 Gary Houston <ghouston@arglist.com>
10116
10117 * ports.c (scm_drain_input): extended the docstring. thanks to
10118 Alex Schroeder and Thien-Thi Nguyen.
10119
581ded70
MD
101202001-09-23 Mikael Djurfeldt <mdj@linnaeus>
10121
10122 * validate.h (SCM_NUM2FLOAT, SCM_NUM2DOUBLE,
10123 SCM_VALIDATE_FLOAT_COPY, SCM_VALIDATE_DOUBLE_COPY): New
10124 macros. (The NUM names might soon change.)
10125
10126 * numbers.h: Added missing declarations.
10127
5437598b
MD
101282001-09-22 Mikael Djurfeldt <mdj@linnaeus>
10129
10130 * Makefile.am: Distribute num2float.i.c.
10131
10132 * num2float.i.c: New file, multiply included by numbers.c, used
10133 to "templatize" the float <-> num conversion routines.
10134
10135 * numbers.c: New functions: scm_num2float, scm_float2num,
10136 scm_num2double, scm_double2num.
10137
0b073f0f
RB
101382001-09-21 Rob Browning <rlb@defaultvalue.org>
10139
10140 * .cvsignore: really add version.h
10141
10142 * strings.h (SCM_SET_STRING_LENGTH): coerce "l" to a long.
10143 Otherwise it fails on the alpha. However, we might rather choose
10144 this size conditionally.
10145
10146 * numbers.c (scm_gcd): change "k" to a long from an int.
10147 Otherwise it fails on the alpha. However, we might rather choose
10148 this size conditionally.
10149
10150 * error.c (scm_wta): coerce char* to intptr_t before int
10151 assignment.
10152
10153 * debug.c (debugobj_print): coerce scm_intprint arg 1 to long, not
10154 int.
10155
10156 * chars.h (SCM_MAKE_CHAR): coerce value to intptr_t.
10157
2830fd91
MD
101582001-09-20 Mikael Djurfeldt <mdj@linnaeus>
10159
10160 * numbers.c (scm_integer_expt): Accept inexact integer in second
10161 argument. (Thanks to Bill Schottstaedt.)
10162
c13f0a90
RB
101632001-09-20 Rob Browning <rlb@defaultvalue.org>
10164
10165 * .cvsignore: add version.h
10166
10167 * versiondat.h.in: removed (obsolete).
10168
10169 * version.h.in: renamed from version.h.
10170 (SCM_GUILE_MAJOR_VERSION): new public macro.
10171 (SCM_GUILE_MINOR_VERSION): new public macro.
10172 (SCM_GUILE_MICRO_VERSION): new public macro.
10173
10174 * version.h: renamed to version.h.in.
10175
10176 * version.c
10177 (scm_major_version): support integer *_VERSION macros.
10178 (scm_minor_version): support integer *_VERSION macros.
10179 (scm_micro_version): support integer *_VERSION macros.
10180 (scm_version): support integer *_VERSION macros.
10181
147c18a0
MD
101822001-09-20 Mikael Djurfeldt <mdj@linnaeus>
10183
10184 * error.c, error.h: Made error keys globally accessible.
10185 Applications might want to test for these or use them in a direct
10186 call to scm_error.
10187
10188 * num2integral.i.c (NUM2INTEGRAL): Report an error when these
10189 routines are passed an inexact. This change in behavior is
10190 motivated by concordance with R5RS: It is more common that a
10191 primitive doesn't want to accept an inexact for an exact.
10192
662c5539
DH
101932001-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
10194
10195 The following patch partially undoes my patch from 2001-06-30,
10196 where I added the function scm_gc_mark_cell_conservatively. The
10197 function is buggy, since it breaks guile during conservative
10198 marking if a pointer on the stack points directly into the list of
10199 free cells on the heap: With conservative cell marking this will
10200 cause the whole free list to be scanned and marked - boom!
10201
10202 * gc.c (allocated_mark, MARK, heap_segment,
10203 scm_gc_mark_cell_conservatively, scm_init_storage), gc.h
cf4ee841 10204 (scm_gc_mark_cell_conservatively): Remove function
662c5539
DH
10205 scm_gc_mark_cell_conservatively and update the corresponding
10206 comments and uses accordingly. Thanks to Christopher Cramer for
10207 the patch. (Minor corrections by me.)
10208
6c1b7628
GH
102092001-09-15 Gary Houston <ghouston@arglist.com>
10210
10211 * root.h (scm_root_state): removed the continuation_stack and
10212 continuation_stack_ptr members, which have no apparent purpose.
10213 (scm_continuation_stack, scm_continuation_stack_ptr): #defines
10214 removed.
662c5539 10215
6c1b7628
GH
10216 * root.c (root_mark), init.c (restart_stack, start_stack), gc
10217 (scm_igc): remove all references to contination_stack and
10218 continuation_stack_ptr, avoiding allocation of a vector and
10219 useless processing during gc.
10220
455c0ac8
DH
102212001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10222
10223 * guardians.c (tconc_t, t_tconc): Renamed tconc_t to t_tconc.
10224
10225 (TCONC_IN): Make sure that the cell word 0 is initialized last.
10226
10227 (guardians_t, t_guardians): Renamed guardians_t to t_guardians.
10228
10229 (GUARDIAN, GUARDIAN_DATA): Renamed GUARDIAN to GUARDIAN_DATA.
10230
10231 (guardian_apply, scm_get_one_zombie, scm_make_guardian,
10232 mark_and_zombify): Prefer !SCM_<foo> over SCM_N<foo>.
10233
22ba637b
DH
102342001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10235
10236 * guardians.c (mark_dependencies_in_tconc,
10237 whine_about_self_centered_zombies, scm_init_guardians): Register
10238 the static global variable `self_centered_zombies' via
10239 scm_gc_register_root, to make some cdr-ing unnecessary.
10240
c3c4d801
DH
102412001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10242
10243 * backtrace.c (display_backtrace_file,
10244 display_backtrace_file_and_line): Use SCM_EQ_P when comparing SCM
10245 values, use SCM_FALSEP when comparing SCM values against #f.
10246 Thanks to Rob Browning for the bug report.
10247
b00418df
DH
102482001-09-12 Martin Baulig <martin@home-of-linux.org>
10249
10250 * strings.[ch] (scm_str2string): New function.
10251
a0d34a0b
MV
102522001-09-06 Marius Vollmer <mvo@zagadka.ping.de>
10253
10254 * gc.c (scm_done_free): Always subtract size from scm_mallocated
10255 when computing nm, even if it's negative.
10256 (scm_must_malloc): Abort on overflow of scm_mtrigger.
10257 (scm_must_realloc): Likewise.
10258
b10586f0
ML
102592001-09-01 Michael Livshin <mlivshin@bigfoot.com>
10260
10261 * numbers.c (scm_sys_check_number_conversions): new function,
10262 defined if Guile is compiled in debugging mode. currently checks
10263 `scm_num2ulong', should check much much more.
10264
10265 * num2integral.i.c (NUM2INTEGRAL): when converting a bignum to
10266 unsigned, ensure that it's positive. thanks to Martin Baulig!
cf4ee841 10267
8c494e99
DH
102682001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10269
10270 * __scm.h: Added new section about compile time selectable
10271 features.
10272
10273 (long_long, ulong_long, scm_sizet, SCM_WNA, SCM_OUTOFRANGE,
10274 SCM_NALLOC, SCM_HUP_SIGNAL, SCM_INT_SIGNAL, SCM_FPE_SIGNAL,
10275 SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL, SCM_GC_SIGNAL,
10276 SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG, SCM_NUM_SIGS):
10277 Removed.
10278
10279 * deprecation.c (scm_include_deprecated_features): Simplified.
10280
10281 * eval.c (EVALCAR, unmemocopy), eval.h (SCM_XEVALCAR): Use
9a5fa6e9 10282 `SCM_IMP' instead of `!SCM_CELLP´.
8c494e99
DH
10283
10284 * eval.c (unmemocopy): Eliminate redundant SCM_CELLP tests.
10285 Extract side-effecting operations from macros.
10286
10287 (scm_init_eval): Don't initialize *top-level-lookup-closure*,
10288 scm_top_level_lookup_closure_var and scm_system_transformer.
10289
10290 * gc.c (CELL_P): New local definition to replace SCM_CELLP.
10291
10292 (heap_segment): Use CELL_P instead of SCM_CELLP.
10293
10294 * init.c (start_stack): Don't initialize
10295 scm_top_level_lookup_closure_var and scm_system_transformer.
10296
10297 * modules.c (scm_set_current_module): Don't access
10298 scm_top_level_lookup_closure_var and scm_system_transformer.
10299
10300 (scm_sym2var): Don't call scm_variable_set_name_hint.
10301
10302 (scm_post_boot_init_modules): Removed deprecated initializations.
10303
10304 * print.c (scm_ipruk): Don't access cell contents of non cells.
10305
10306 * strings.c (scm_string_set_x): All strings are writable.
10307
10308 * strings.h (SCM_STRINGP): Use SCM_TYP7 to determine the string
10309 type. There is only one string type now.
10310
10311 (SCM_STRING_COERCE_0TERMINATION_X): Deprecated.
10312
10313 * tags.h: Remove comments about two different string types.
10314
10315 (SCM_CELLP, SCM_NCELLP): Deprecated.
10316
10317 * variable.c (make_variable): Remove code variant for vcells.
10318
10319 * variable.h (SCM_VARIABLE_REF, SCM_VARIABLE_SET,
10320 SCM_VARIABLE_LOC): Remove code variant for vcells.
10321
10322 * __scm.h, deprecation.[ch]: Renamed SCM_DEBUG_DEPRECATED to
10323 SCM_ENABLE_DEPRECATED with the logic reversed.
10324
10325 * dynl.c (moddata, registered_mods), dynl.[ch]
10326 (scm_register_module_xxx, scm_registered_modules,
10327 scm_clear_registered_modules), error.[ch] (scm_wta), eval.c
10328 (*top-level-lookup-closure*), eval.[ch]
10329 (scm_top_level_lookup_closure_var, scm_system_transformer,
10330 scm_eval_3, scm_eval2), gc.h (SCM_SETAND_CAR, SCM_SETOR_CAR,
10331 SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_FREEP, SCM_NFREEP,
10332 SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16,
10333 SCM_GCCDR), gc.[ch] (scm_remember, scm_protect_object,
10334 scm_unprotect_object), modules.c (root_module_lookup_closure,
10335 scm_sym_app, scm_sym_modules, module_prefix, make_modules_in_var,
10336 beautify_user_module_x_var, try_module_autoload_var,
10337 scm_module_full_name), modules.[ch] (scm_the_root_module,
10338 scm_make_module, scm_ensure_user_module, scm_load_scheme_module),
cf4ee841 10339 ports.h (scm_port, scm_ptob_descriptor, scm_port_rw_active),
8c494e99
DH
10340 ports.[ch] (scm_close_all_ports_except), random.h (scm_rstate,
10341 scm_rng, scm_i_rstate), strings.h (SCM_SLOPPY_STRINGP,
10342 SCM_RWSTRINGP, SCM_STRING_UCHARS, SCM_STRING_CHARS), strings.[ch]
10343 (scm_read_only_string_p, scm_makstr, scm_makfromstr,
10344 scm_make_shared_substring), tags.h (scm_tc7_substring,
10345 SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP, scm_tc7_ssymbol,
10346 scm_tc7_msymbol, scm_tcs_symbols), variable.c (sym_huh),
10347 variable.[ch] (scm_variable_set_name_hint, scm_builtin_variable),
10348 variable.h (SCM_VARVCELL, SCM_UDVARIABLEP, SCM_DEFVARIABLEP):
10349 Removed.
10350
10351 * dynl.c (scm_dynamic_link, scm_dynamic_func), error.c
10352 (scm_error_scm), filesys.c (scm_chown, scm_chmod, scm_open_fdes,
10353 scm_stat, scm_link, scm_rename, scm_delete_file, scm_mkdir,
10354 scm_rmdir, scm_opendir, scm_chdir, scm_symlink, scm_readlink,
10355 scm_lstat, scm_copy_file), fports.c (scm_open_file), ioext.c
10356 (scm_fdopen), net_db.c (scm_gethost, scm_getnet, scm_getproto,
10357 scm_getserv), ports.c (scm_truncate_file, scm_sys_make_void_port),
10358 posix.c (scm_getpwuid, scm_getgrgid, scm_execl, scm_execlp,
10359 scm_execle, scm_mkstemp, scm_utime, scm_access, scm_setlocale,
10360 scm_mknod, scm_crypt, scm_chroot, scm_getpass, scm_sethostname),
10361 regex-posix.c (scm_make_regexp, scm_regexp_exec), simpos.c
10362 (scm_system, scm_getenv), socket.c (scm_inet_aton), stime.c
10363 (setzone, scm_strftime, scm_strptime), vports.c
10364 (scm_make_soft_port): Remove calls to
10365 SCM_STRING_COERCE_0TERMINATION_X. Since the substring type is
10366 gone, all strings are 0-terminated anyway.
10367
10368 * dynl.h (LIBGUILE_DYNL_H, SCM_DYNL_H), random.h (RANDOMH,
10369 SCM_RANDOM_H): Renamed the macros that are defined to inhibit
10370 double inclusion of the same headers to the SCM_<filename>_H
10371 format.
10372
10373 * eval.c (SCM_CEVAL), gc.c (MARK, scm_gc_sweep), gh_data.c
10374 (gh_scm2chars), hash.c (scm_hasher), objects.c (scm_class_of),
10375 print.c (scm_iprin1): The type scm_tc7_substring does not exist
10376 any more.
10377
10378 * ports.h (SCM_PORTP, SCM_OPPORTP, SCM_OPINPORTP, SCM_OPOUTPORTP,
10379 SCM_INPUT_PORT_P, SCM_OUTPUT_PORT_P, SCM_OPENP), tags.h
10380 (SCM_TYP16_PREDICATE), variable.h (SCM_VARIABLEP): Prefer
10381 !SCM_<foo> over SCM_N<foo>.
10382
dee01b01
DH
103832001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10384
10385 * Makefile.am: Remove references to symbols-deprecated.c.
10386
10387 * symbols.c (scm_init_symbols): Don't initialize deprecated
10388 symbol functions.
10389
10390 * symbols-deprecated.c: Removed.
10391
10392 * fluids.[ch] (scm_internal_with_fluids), gsubr.[ch]
10393 (scm_make_gsubr, scm_make_gsubr_with_generic), hooks.[ch]
10394 (scm_create_hook), list.c (list*), list.h (SCM_LIST[0-9],
10395 scm_listify), list.[ch] (scm_sloppy_memq, scm_sloppy_memv,
10396 scm_sloppy_member), load.c (scm_end_of_file_key), load.[ch]
10397 (scm_read_and_eval_x), numbers.[ch] (scm_mkbig, scm_big2inum,
10398 scm_adjbig, scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big,
10399 scm_big2dbl), numbers.h (SCM_FIXNUM_BIT), procs.h
10400 (scm_subr_entry, SCM_SUBR_DOC), procs.[ch] (scm_make_subr_opt,
10401 scm_make_subr, scm_make_subr_with_generic), root.c (setjmp_type,
10402 setjmp_type), root.[ch] (scm_call_catching_errors), smob.[ch]
10403 (scm_make_smob_type_mfpe, scm_set_smob_mfpe), strports.[ch]
10404 (scm_strprint_obj, scm_read_0str, scm_eval_0str), symbols.h
10405 (SCM_CHARS, SCM_UCHARS, SCM_SETCHARS, SCM_SLOPPY_SUBSTRP,
10406 SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_LENGTH_MAX, SCM_LENGTH,
10407 SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH, SCM_ROCHARS,
10408 SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR, scm_strhash,
10409 scm_sym2vcell, scm_sym2ovcell_soft, scm_sym2ovcell,
10410 scm_intern_obarray_soft, scm_intern_obarray, scm_intern,
10411 scm_intern0, scm_sysintern, scm_sysintern0,
10412 scm_sysintern0_no_module_lookup, scm_symbol_value0,
10413 scm_string_to_obarray_symbol, scm_intern_symbol,
10414 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
10415 scm_symbol_bound_p, scm_symbol_set_x, scm_gentemp,
10416 scm_init_symbols_deprecated), vectors.c (s_vector_set_length_x),
10417 vectors.[ch] (scm_vector_set_length_x): Removed.
10418
10419 * fluids.h (FLUIDSH, SCM_FLUIDS_H), gsubr.c (GSUBRH, SCM_GSUBR_H),
10420 list.h (LISTH, SCM_LIST_H), load.h (LOADH, SCM_LOAD_H), root.h
10421 (ROOTH, SCM_ROOT_H), strports.h (STRPORTSH, SCM_STRPORTS_H):
10422 Renamed the macros that are defined to inhibit double inclusion of
10423 the same headers to the SCM_<filename>_H format.
10424
10425 * procs.h (SCM_CLOSUREP, SCM_PROCEDURE_WITH_SETTER_P), symbols.h
10426 (SCM_SYMBOLP), vectors.h (SCM_VECTORP): Prefer !SCM_<foo> over
10427 SCM_N<foo>.
10428
b29058ff
DH
104292001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10430
10431 * continuations.h (scm_contregs), debug.h (scm_debug_info,
10432 scm_debug_frame, SCM_DSIDEVAL), filesys.h (SCM_OPDIRP), fports.h
10433 (scm_fport), options.h (scm_option), snarf.h (SCM_CONST_LONG,
10434 SCM_VCELL, SCM_GLOBAL_VCELL, SCM_VCELL_INIT,
10435 SCM_GLOBAL_VCELL_INIT), srcprop.h (scm_srcprops,
10436 scm_srcprops_chunk), stacks.h (scm_info_frame, scm_stack), unif.h
10437 (scm_array, scm_array_dim, SCM_ARRAY_CONTIGUOUS, SCM_HUGE_LENGTH),
10438 validate.h (SCM_FUNC_NAME, SCM_WTA, RETURN_SCM_WTA,
10439 SCM_VALIDATE_NUMBER_COPY, SCM_VALIDATE_NUMBER_DEF_COPY,
10440 SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
10441 SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
10442 SCM_VALIDATE_RWSTRING, SCM_VALIDATE_OPDIR): Removed.
10443
10444 * continuations.h (CONTINUATIONSH, SCM_CONTINUATIONS_H), filesys.h
10445 (FILESYSH, SCM_FILESYS_H), fports.h (FPORTSH, SCM_FPORTS_H),
10446 options.h (OPTIONSH, SCM_OPTIONS_H), regex-posix.h (REGEXPOSIXH,
10447 SCM_REGEX_POSIX_H), snarf.h (LIBGUILE_SNARF_H, SCM_SNARF_H),
10448 srcprop.h (SCM_SOURCE_PROPERTIES_H, SCM_SRCPROP_H), unif.h
10449 (SCM_UNIFORM_VECTORS_H, SCM_UNIF_H), validate.h (SCM_VALIDATE_H__,
10450 SCM_VALIDATE_H): Renamed the macros that are defined to inhibit
10451 double inclusion of the same headers to the SCM_<filename>_H
10452 format.
10453
10454 * debug.h (SCM_RESET_DEBUG_MODE), regex-posix.h (SCM_RGXP),
10455 srcprop.h (SRCBRKP, PROCTRACEP), struct.h (SCM_STRUCTP),
10456 validate.h (SCM_VALIDATE_THUNK, SCM_VALIDATE_ARRAY,
10457 SCM_VALIDATE_VECTOR_OR_DVECTOR, SCM_VALIDATE_VTABLE): Prefer
10458 !SCM_<foo> over SCM_N<foo>.
10459
0527e687
DH
104602001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10461
10462 * _scm.h (_SCMH, SCM__SCM_H), alist.h (ALISTH, SCM_ALIST_H),
10463 arbiters.h (ARBITERSH, SCM_ARBITERS_H), backtrace.h (BACKTRACEH,
10464 SCM_BACKTRACE_H), boolean.h (BOOLEANH, SCM_BOOLEAN_H), chars.h
10465 (SCM_CHARSH, SCM_CHARS_H), coop-defs.h (COOP_DEFSH,
10466 SCM_COOP_DEFS_H), coop-threads.h (COOP_THREADSH,
10467 SCM_COOP_THREADS_H), debug-malloc.h (DEBUGMALLOCH,
10468 SCM_DEBUG_MALLOC_H), dynwind.h (DYNWINDH, SCM_DYNWIND_H),
10469 environments.h (ENVIRONMENTS_H, SCM_ENVIRONMENTS_H), eq.h (EQH,
10470 SCM_EQ_H), evalext.h (EVALEXTH, SCM_EVALEXT_H), extensions.h
10471 (LIBGUILE_EXTENSIONS_H, SCM_EXTENSIONS_H), feature.h (FEATUREH,
10472 SCM_FEATURE_H), gdbint.h (GDBINTH, SCM_GDBINT_H), guardians.h
10473 (SCM_GUARDIANH, SCM_GUARDIANS_H), hash.h (HASHH, SCM_HASH_H),
10474 hashtab.h (HASHTABH, SCM_HASHTAB_H), init.h (INITH, SCM_INIT_H),
10475 ioext.h (IOEXTH, SCM_IOEXT_H), iselect.h (ISELECTH,
10476 SCM_ISELECT_H), keywords.h (KEYWORDSH, SCM_KEYWORDS_H), lang.h
10477 (LANGH, SCM_LANG_H), mallocs.h (MALLOCSH, SCM_MALLOCS_H), net_db.h
10478 (SCM_NETDBH, SCM_NET_DB_H), objprop.h (OBJPROPH, SCM_OBJPROP_H),
10479 posix.h (POSIXH, SCM_POSIX_H), procprop.h (PROCPROPH,
10480 SCM_PROCPROP_H), properties.h (PROPERTIES_H, SCM_PROPERTIES_H),
10481 ramap.h (RAMAPH, SCM_RAMAP_H), rdelim.h (SCM_RDELIM,
10482 SCM_RDELIM_H), read.h (READH, SCM_READ_H), rw.h (SCM_RW,
10483 SCM_RW_H), scmsigs.h (SCMSIGSH, SCM_SCMSIGS_H), script.h (SCRIPTH,
10484 SCM_SCRIPT_H), simpos.h (SIMPOSH, SCM_SIMPOS_H), socket.h
10485 (SCM_SOCKETH, SCM_SOCKET_H), sort.h (SORTH, SCM_SORT_H),
10486 stackchk.h (STACKCHKH, SCM_STACKCHK_H), stime.h (STIMEH,
10487 SCM_STIME_H), strop.h (STROPH, SCM_STROP_H), strorder.h
10488 (STRORDERH, SCM_STRORDER_H), threads.h (THREADSH, SCM_THREADS_H),
10489 throw.h (THROWH, SCM_THROW_H), version.h (VERSIONH,
10490 SCM_VERSION_H), vports.h (VPORTSH, SCM_VPORTS_H): Renamed
10491 the macros that are defined to inhibit double inclusion of the
10492 same headers to the SCM_<filename>_H format.
10493
fada26b2
MV
104942001-08-27 Marius Vollmer <mvo@zagadka.ping.de>
10495
10496 * ports.c, ports.h, fprots.c, gc.c, ioext.c: Replaced
10497 "scm_t_portable" with "scm_port_table" which was an artifact from
10498 the great "scm_*_t -> scm_t_" renaming.
10499
e4d1c1ea
TTN
105002001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
10501
10502 * gc_os_dep.c (GC_noop1): Move before `GC_find_limit' where it is
10503 used; nfc. Thanks to Bill Schottstaedt.
10504
10505 * validate.h (SCM_VALIDATE_USHORT_COPY, SCM_VALIDATE_SHORT_COPY,
10506 SCM_VALIDATE_UINT_COPY, SCM_VALIDATE_INT_COPY): New macros.
10507 Thanks to Chris Cramer.
10508
b573e744
MV
105092001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
10510
10511 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
10512
10513 * eval.c (scm_m_atbind): Redesigned to behvae like `let', but with
10514 dynamic scope.
10515 * dynwind.h (scm_swap_bindings): Declare.
10516 * dynwind.c (scm_swap_bindings): Make non-static.
10517
8a3e715b
ML
105182001-08-25 Michael Livshin <mlivshin@bigfoot.com>
10519
10520 * gc.c (scm_gc_sweep): now can sweep unreachable variables (by
10521 doing exactly nothing about them). thanks Neil!
10522
cf504ee0
NJ
105232001-08-18 Neil Jerram <neil@ossau.uklinux.net>
10524
10525 * __scm.h (SCM_ENABLE_VCELLS): Fix spelling mistake in comment.
ec2667f0 10526
43b83b54
TTN
105272001-08-17 Thien-Thi Nguyen <ttn@revel.glug.org>
10528
10529 * gc.c: Fix omission bug: Add `heap_segment' forward decl
10530 (proto) in the case when either `GUILE_DEBUG' or
10531 `GUILE_DEBUG_FREELIST' preprocessor symbols are defined.
10532
10533 (map_free_list): Fix typo: Ref `f' correctly.
10534
10535 Thanks to Chris Cramer.
10536
ab4cd34b
RB
105372001-08-15 Rob Browning <rlb@defaultvalue.org>
10538
10539 * Makefile.am (libguile_la_LDFLAGS): use libtool interface version
10540 variables.
10541 (libpath.h): change libguileversion to libguileinterface.
10542
b754e3d1
MV
105432001-08-07 Marius Vollmer <mvo@zagadka.ping.de>
10544
10545 * Makefile.am (EXTRA_DIST): Distribute ChangeLog-1996-1999 and
10546 ChangeLog-2000. Thanks to Daniel Skarda!
10547
8b1d12c7
ML
105482001-08-07 Michael Livshin <mlivshin@bigfoot.com>
10549
10550 * guile-snarf-docs-texi.in: don't call the tokenizer here, we now
10551 do it from the Makefile.
10552
10553 * Makefile.am: rearrange the snarfing slightly, so that .doc files
10554 are of a reasonable size.
10555
baffb19f
NJ
105562001-08-02 Neil Jerram <neil@ossau.uklinux.net>
10557
10558 * stacks.c (scm_make_stack): Improve docstring by explaining use
10559 of cutting args.
10560
c1151355
MV
105612001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
10562
10563 * chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
10564 scm_char_whitespace_p, scm_char_upper_case_p,
10565 scm_char_lower_case_p, scm_char_is_both_p): Do not require
10566 characters to fulfill isascii in addition to the primary
10567 predicate.
10568
3c9a524f
DH
105692001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10570
10571 * numbers.c (DIGITS, scm_small_istr2int, scm_istr2int,
10572 scm_istr2flo, scm_istring2number): Removed.
10573
10574 (iflo2str, scm_real_p, scm_integer_p): Use SCM_<foo> instead of
10575 SCM_SLOPPY_<foo>.
10576
10577 (t_exactness, t_radix, DIGIT2UINT, XDIGIT2UINT, mem2uinteger,
10578 mem2decimal_from_point, mem2ureal, mem2complex, scm_i_mem2number):
10579 Added.
10580
10581 (scm_string_to_number): Use new number parser.
10582
10583 (scm_exact_to_inexact): Replace dummy by a GPROC, which also
10584 handles complex numbers.
10585
10586 * numbers.h (NUMBERSH, SCM_NUMBERS_H): Rename <foo>H to
10587 SCM_<foo>_H.
10588
10589 (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Prefer !SCM_<pred> over
10590 SCM_N<pred>.
10591
10592 (scm_istr2int, scm_istr2flo, scm_istring2number): Removed.
10593
10594 (scm_i_mem2number): Added.
10595
10596 (scm_exact_to_inexact): Changed signature.
10597
10598 * read.c (scm_lreadr): Perform the shortcut test for '+ and '-
10599 here instead of within scm_i_mem2number. Call scm_i_mem2number
10600 instead of scm_istr2int and scm_istring2number.
10601
01f11e02
DH
106022001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10603
10604 * eval.c (scm_lookupcar, scm_m_body, scm_m_lambda, unmemocopy,
10605 scm_unmemocopy, scm_badargsp, scm_eval_body, CHECK_EQVISH,
10606 SCM_CEVAL, scm_nconc2last, SCM_APPLY, scm_copy_tree): Prefer
10607 !SCM_<pred> over SCM_N<pred>.
10608
10609 (scm_eval_body): Remove side effecting code from macro call.
10610
10611 (SCM_CEVAL, SCM_APPLY): Remove goto statement and redundant
10612 SCM_NIMP test.
10613
6cf69537
DH
106142001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10615
10616 * pairs.h (SCM_VALIDATE_PAIR): Use SCM_CONSP, not SCM_ECONSP.
10617
54866b6c
MV
106182001-07-29 Marius Vollmer <mvo@zagadka.ping.de>
10619
10620 Removed vcell slot from structs.
43b83b54 10621
54866b6c
MV
10622 * struct.h (scm_vtable_index_vcell): Removed. Renumbered
10623 subsequent indices.
10624
10625 * struct.c (scm_struct_vtable_p): Do not check vcell slot for
10626 zero. Use scm_vtable_index_layout instead of "0" when accessing
10627 said slot.
10628 (scm_init_struct): Remove vcell slot layout code from
10629 required_vtable_fields.
10630
10631 * objects.h (scm_si_redefined, scm_si_hashsets): Renumbered.
10632
10633 * goops.c (build_class_class_slots): Removed vcell slot
10634 definition.
10635
10636 * goops.h: Renumbered slot indices. (SCM_CLASS_CLASS_LAYOUT):
10637 Removed vcell slot layout code.
10638 (scm_si_vcell): Removed.
10639
5b54c4da
MV
106402001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
10641
a0f5718e 10642 "Glocs" have been removed.
43b83b54 10643
a0f5718e
MV
10644 * tags.h: Update tag system docs.
10645 (scm_tc3_cons_gloc): Renamed to scm_tc3_struct. Changed all uses.
10646 (scm_tcs_cons_gloc): Renamed to scm_tcs_struct. Changed all uses.
10647 (SCM_ECONSP, SCM_NECONSP): Removed. Changed all uses to SCM_CONSP
10648 or SCM_NCONSP, respectively.
10649
10650 * struct.c, struct.h, srcprop.c, procs.c, procprop.c, print.c,
10651 objects.c. modules.c, goops.c, eval.c, debug.c: Changed all uses
10652 of scm_tc3_cond_gloc and scm_tcs_cons_gloc. See above.
10653
10654 * print.c (scm_iprin1): Remove printing of glocs. Do not try to
10655 tell glocs from structs.
43b83b54 10656
a0f5718e
MV
10657 * gc.c (scm_gc_mark, scm_gc_sweep): Remove handling of glocs.
10658
10659 * eval.c (scm_m_atbind): Make a list of variables, not glocs.
10660 (scm_ceval, scm_deval): For SCM_IM_BIND, fiddle with variables
10661 instead of with glocs.
10662 (EVALCAR): Do not test for glocs.
10663 (scm_lookupcar, scm_lookupcar1): Do not handle glocs in race
10664 condition.
10665 (scm_unmemocar): Do not handle glocs.
10666 (scm_m_atfop): Memoize as a variable, not as a gloc.
10667 (scm_eval_args, scm_deval_args): Do not handle glocs.
10668 (scm_ceval, scm_deval): Likewise.
43b83b54 10669
a0f5718e
MV
10670 * eval.h (SCM_XEVALCAR): Do not test for glocs.
10671 (SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL, SCM_GLOC_VAL_LOC):
10672 Removed.
10673
10674 * debug.h, debug.c (scm_make_gloc, scm_gloc_p): Removed.
10675
10676 * dynwind.c (scm_swap_bindings): Likewise.
10677 (scm_dowinds): Updated to recognize lists of variables instead of
10678 lists of glocs.
10679
10680 * __scm.h (SCM_CAUTIOS, SCM_RECKLESS): Update comments.
10681
43b83b54 10682
5b54c4da
MV
10683 * gc_os_dep.c (GC_noop1): Moved into the same #if/#endif context
10684 where it is needed.
43b83b54 10685
3c3db128
GH
106862001-07-25 Gary Houston <ghouston@arglist.com>
10687
10688 * numbers.c (scm_logand, scm_logior, scm_logxor): adjusted the
10689 docstrings to reflect the n-ary implementation.
10690
dd29a169
MV
106912001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
10692
10693 * eval.c (scm_ceval, scm_deval): Use "RETURN" macro when returning
10694 value of a variable, not the plain "return" statement.
10695
f5fe6c2f
MV
106962001-07-25 Marius Vollmer <mvo@zagadka.ping.de>
10697
10698 * eval.c: Allow variables in memoized code (in addition to glocs).
10699 (scm_lookupcar): Handle variables in lost races. Replace symbol
10700 with variable directly, do not make a gloc.
10701 (scm_unmemocar): Rewrite variables using a reverse lookup, just
10702 like glocs.
10703 (scm_ceval, scm_deval): Deal with variables in SCM_IM_SET and in
10704 the main switch.
10705
ee0c7345
MV
107062001-07-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
10707
6d9ad98a
MV
10708 * variable.c (scm_i_variable_print): Use "value" instead of
10709 "binding" since a binding is the mapping between symbols and
10710 variables, not between variables and their values.
10711
ee0c7345
MV
10712 * tags.h (scm_tc7_variable): New.
10713 * gc.c (scm_gc_mark): Handle scm_tc7_variable objects.
10714 * print.c (scm_iprin1): Likewise.
10715
10716 * variable.h (scm_tc16_variable): Removed.
10717 (SCM_VARIABLEP): Test for new tc7 code.
10718 (scm_i_variable_print): New.
10719 * variable.c (scm_tc16_variable): Removed.
10720 (variable_print): Renamed to scm_i_variable_print and made
10721 non-static.
10722 (variable_equal_p): Removed.
10723 (make_variable): Construct a tc7 object instead of a smob.
10724 (scm_init_variable): Do not register smob.
43b83b54 10725
f3805ebb
MV
107262001-07-22 Marius Vollmer <mvo@zagadka.ping.de>
10727
10728 * tags.h: Include inttypes.h when we have it.
10729
107302001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
10731
10732 * tags.h (SCM_UNBOUND): Make it the 34th isym/iflag, the 33th slot
10733 is taken by the new SCM_IM_CALL_WITH_VALUES.
10734 * print.c (scm_isymnames): Update table accordingly.
43b83b54 10735
6a1677a3
GH
107362001-07-22 Gary Houston <ghouston@arglist.com>
10737
10738 * regex-posix.c (s_scm_regexp_exec): use scm_long2num not
10739 SCM_MAKINUM to convert regoff_t value to SCM.
10740
1bed8c28
GH
107412001-07-21 Gary Houston <ghouston@arglist.com>
10742
10743 * scmsigs.c: include sys/time.h for itimer stuff.
10744
e658215a
RB
107452001-07-19 Rob Browning <rlb@defaultvalue.org>
10746
10747 * gc_os_dep.c (GC_noop1): ifdef out (unused) to quiet warning.
10748
10749 * c-tokenize.lex: add option %nounput to quiet warning.
10750 Add prototype for yylex to quiet warning.
10751
10752 * scmconfig.h.in: add flags for setitimer and getitimer.
10753
10754 * scmsigs.h (scm_init_scmsigs): new prototype.
10755 (scm_init_scmsigs): new prototype.
10756
10757 * scmsigs.c (s_scm_setitimer): new function.
10758 (s_scm_setitimer): new function.
10759
58ade102
MG
107602001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10761
10762 * alist.c, arbiters.c, async.h, backtrace.h, boolean.c, chars.c,
10763 chars.h, continuations.h, debug-malloc.h, dynl.c, feature.c,
10764 feature.h, filesys.h, fluids.h, fports.h, gc_os_dep.c,
10765 gdb_interface.h, gh_eval.c, gh_funcs.c, gh_io.c, gh_list.c,
10766 gh_predicates.c, gsubr.c, gsubr.h, guardians.h,
10767 guile-func-name-check.in, guile-snarf-docs-texi.in,
10768 guile-snarf-docs.in, guile-snarf.awk.in, guile-snarf.in,
10769 hashtab.h, iselect.h, keywords.h, lang.c, list.h, load.h,
10770 objprop.c, objprop.h, options.c, options.h, random.h,
10771 regex-posix.h, root.c, root.h, script.c, snarf.h, stackchk.c,
10772 strerror.c, strop.h, strports.h, threads.h, values.c, values.h,
10773 version.c, version.h: Updated copyright notice.
10774
6b80d352
DH
107752001-07-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
10776
10777 * goops.c (sym_layout, sym_vcell, sym_vtable, sym_print,
10778 sym_procedure, sym_setter, sym_redefined, sym_h0, sym_h1, sym_h2,
10779 sym_h3, sym_h4, sym_h5, sym_h6, sym_h7, sym_name,
10780 sym_direct_supers, sym_direct_slots, sym_direct_subclasses,
10781 sym_direct_methods, sym_cpl, sym_default_slot_definition_class,
10782 sym_slots, sym_getters_n_setters, sym_keyword_access, sym_nfields,
10783 sym_environment, scm_sym_change_class): New static variables to
10784 hold predefined symbols.
10785
10786 (build_class_class_slots): Build the list using scm_list_n
10787 instead of cons. Also, slots are already created as lists, thus
10788 making a call to maplist unnecessary.
10789
10790 (scm_class_name, scm_class_direct_supers, scm_class_direct_slots,
10791 scm_class_direct_subclasses, scm_class_direct_methods,
10792 scm_class_precedence_list, scm_class_slots, scm_class_environment,
10793 scm_method_procedure, create_standard_classes, purgatory): Use
10794 predefined symbols.
10795
10796 (build_slots_list, compute_getters_n_setters,
10797 scm_sys_initialize_object, scm_sys_inherit_magic_x,
10798 get_slot_value_using_name, set_slot_value_using_name,
10799 scm_sys_invalidate_method_cache_x, scm_generic_capability_p,
10800 scm_compute_applicable_methods, scm_sys_method_more_specific_p,
10801 make_struct_class): Prefer !SCM_<pred> over SCM_N<pred>.
10802
10803 (scm_sys_prep_layout_x): Minimize variable scopes.
10804
10805 (scm_sys_prep_layout_x, scm_sys_fast_slot_ref,
10806 scm_sys_fast_slot_set_x): Fix signedness.
10807
10808 (go_to_hell, go_to_heaven, purgatory, scm_change_object_class,
10809 lock_cache_mutex, unlock_cache_mutex, call_memoize_method,
10810 scm_memoize_method, scm_wrap_object): Use packing and unpacking
10811 when converting to and from SCM values.
10812
10813 (scm_enable_primitive_generic_x): Add rest argument checking.
10814
10815 (map, filter_cpl, maplist, scm_sys_initialize_object,
10816 scm_sys_prep_layout_x, slot_definition_using_name,
10817 scm_enable_primitive_generic_x, scm_compute_applicable_methods,
10818 call_memoize_method, scm_make, scm_make_class): Prefer explicit
10819 predicates over SCM_N?IMP tests.
10820
10821 (scm_sys_prep_layout_x): Fix typo in error message. Fix type
10822 checking.
10823
10824 (burnin, go_to_hell): Use SCM_STRUCT_DATA instead of the SCM_INST
10825 alias.
10826
63bcad19
DH
108272001-07-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
10828
10829 * fports.c (fport_print): Don't use SCM_C[AD]R for non pairs.
10830
10831 * num2integral.i.c (INTEGRAL2NUM, INTEGRAL2BIG): Fix signedness.
10832
10833 * symbols-deprecated.c (scm_gentemp): Simplify vector test.
10834
10835 * vectors.c (scm_vector_p): Eliminate redundant IMP test.
10836
4d6aae71
ML
108372001-07-12 Michael Livshin <mlivshin@bigfoot.com>
10838
10839 * strings.c (s_scm_string): fix arg position in assert.
10840
4b8ec619
GH
108412001-07-11 Gary Houston <ghouston@arglist.com>
10842
10843 * strports.c (st_write): use memcpy, not strncpy. thanks to
10844 Dale P. Smith.
10845
dbb640bd
TTN
108462001-07-09 Thien-Thi Nguyen <ttn@revel.glug.org>
10847
10848 * alist.c, alloca.c, arbiters.c, async.c, async.h, backtrace.c,
10849 boolean.c, chars.c, continuations.c, coop-defs.h, coop-threads.c,
10850 debug-malloc.h, debug.c, debug.h, dynl.c, dynwind.c, eq.c,
10851 error.c, eval.c, evalext.c, feature.c, feature.h, filesys.c,
10852 filesys.h, fluids.c, fluids.h, fports.c, fports.h, gc.c, gc.h,
10853 gdbint.c, gsubr.c, guardians.c, hash.c, hashtab.c, hooks.c,
10854 hooks.h, inet_aton.c, init.c, ioext.c, keywords.c, keywords.h,
10855 lang.c, list.c, load.c, macros.c, mallocs.c, memmove.c, modules.c,
10856 net_db.c, numbers.c, numbers.h, objects.c, objprop.c, options.c,
10857 pairs.c, pairs.h, ports.c, ports.h, posix.c, print.c, print.h,
10858 procprop.c, procs.c, procs.h, properties.c, putenv.c, ramap.c,
10859 random.c, random.h, read.c, regex-posix.c, regex-posix.h, root.c,
10860 root.h, scmsigs.c, script.c, simpos.c, smob.c, snarf.h, socket.c,
10861 sort.c, srcprop.c, srcprop.h, stackchk.c, stacks.c, stacks.h,
10862 stime.c, strerror.c, strings.c, strings.h, strop.c, strorder.c,
10863 strports.c, struct.c, struct.h, symbols-deprecated.c, symbols.c,
10864 symbols.h, tags.h, threads.c, threads.h, throw.c, unif.c, unif.h,
10865 variable.c, variable.h, vectors.c, vectors.h, version.c, vports.c,
10866 weaks.c, weaks.h: Remove "face-lift" comment.
10867
fd6c6321
RB
108682001-07-08 Rob Browning <rlb@defaultvalue.org>
10869
10870 * .cvsignore: add stamp-h.in.
10871
f91e4547
MG
108722001-07-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10873
10874 * hooks.c (scm_make_hook, scm_add_hook_x),
10875 (scm_remove_hook_x, scm_reset_hook_x, scm_run_hook): Added return
10876 value info to the docstrings.
10877
7beabedb
MG
108782001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10879
10880 Some more compatibility patches for Windows.
dbb640bd 10881
7beabedb
MG
10882 * posix.c (getlogin): getlogin() implementation for Windows.
10883
10884 * backtrace.c, ioext.c: Include <stdio.h>.
10885
10886 * unif.c, script.c, rw.c, error.c: Include <io.h>, if it does
10887 exist.
10888
10889 * cpp_sig_symbols.in: Added SIGBREAK.
10890
0d0560d0
MV
108912001-07-01 Marius Vollmer <mvo@zagadka.ping.de>
10892
10893 * strports.c (scm_read_0str, scm_eval_0str): Call
10894 scm_c_read_string and scm_c_eval_string respectively, not
10895 themselves. Thanks to Dale P. Smith!
10896
9a97e362
DH
108972001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10898
10899 * unif.c (scm_array_set_x): The variable args does not
10900 necessarily have to be a list. Further, got rid of a redundant
10901 SCM_NIMP test.
10902
592996c9
DH
109032001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10904
10905 * list.c (SCM_I_CONS): Make sure the cell type is initialized
10906 last.
10907
10908 * gc.c (s_scm_map_free_list, scm_igc, scm_gc_sweep,
f91e4547 10909 init_heap_seg): Fixed signedness.
592996c9
DH
10910
10911 (init_heap_seg): Replaced strange for-loop with a while loop.
10912
10913 * weaks.h (WEAKSH, SCM_WEAKS_H): Rename <foo>H to SCM_<foo>_H.
10914
10915 (SCM_WVECTP): Prefer !SCM_<pred> over SCM_N<pred>.
10916
10917 The following patch adds conservative marking for the elements of
10918 free or allocated cells.
10919
10920 * gc.c (allocated_mark, heap_segment): New static functions.
10921
10922 (which_seg): Deleted, since the functionality is now provided by
10923 function heap_segment.
10924
10925 (map_free_list): Use heap_segment instead of which_seg.
10926
10927 (MARK): If cell debugging is disabled, mark free cells
10928 conservatively.
10929
10930 (scm_mark_locations, scm_cellp): Extracted the search for the
10931 heap segment of a SCM value into function heap_segment.
10932
10933 (scm_init_storage): Allocated cells must be marked
10934 conservatively.
10935
10936 * gc.[ch] (scm_gc_mark_cell_conservatively): New function.
10937
10938 The following patch changes the representation of weak vectors to
10939 double cells instead of using an extension of the vector's
10940 allocated memory.
10941
10942 * gc.c (MARK): Use SCM_SET_WVECT_GC_CHAIN instead of assigning to
10943 the result of SCM_WVECT_GC_CHAIN.
10944
10945 (scm_gc_sweep): Weak vectors don't have extra fields any more.
10946
10947 * weaks.c (allocate_weak_vector): New static function. It does
10948 not patch any previously created vector object during the
10949 construction of a weak vector, and thus doesn't need to switch
10950 off interrupts during vector creation.
10951
10952 (scm_make_weak_vector, scm_make_weak_key_hash_table,
10953 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
10954 Use allocate_weak_vector to provide the new weak vector object.
10955
10956 * weaks.h (SCM_WVECT_TYPE, SCM_SET_WVECT_TYPE,
10957 SCM_SET_WVECT_GC_CHAIN): New macros. The weak vector subtype is
10958 now stored in the double cell.
10959
10960 (SCM_IS_WHVEC, SCM_IS_WHVEC_V, SCM_IS_WHVEC_B, SCM_IS_WHVEC_ANY):
10961 Use SCM_WVECT_TYPE.
10962
10963 (SCM_WVECT_GC_CHAIN): The weak objects are now chained together
10964 using an entry of the double cell.
10965
4dadf664
TTN
109662001-06-30 Thien-Thi Nguyen <ttn@revel.glug.org>
10967
10968 * stamp-h.in: bye bye
10969
02202352
MV
109702001-06-30 Marius Vollmer <mvo@zagadka.ping.de>
10971
10972 * gh_eval.c (gh_eval_str): Use scm_c_eval_string instead of
10973 scm_eval_0str.
10974
10975 * load.c, load.h (scm_c_primitive_load,
10976 scm_c_primitive_load_path): New.
10977
10978 * strports.c, strports.h (scm_c_read_string): Renamed from
10979 scm_read_0str. Also, added "const" qualifier to argument.
10980 (scm_c_eval_string): Renamed from scm_eval_0str.
10981 (scm_read_0str, scm_eval_0str): Deprecated.
10982
df1ad0d1
MG
109832001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10984
10985 * fluids.c (scm_c_with_fluid): Use scm_list_1() instead of
10986 SCM_LIST1.
10987
1afff620
KN
109882001-06-28 Keisuke Nishida <kxn30@po.cwru.edu>
10989
10990 * list.h (scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5,
10991 scm_list_n): New functions.
10992 (SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5,
10993 SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify): Deprecated.
10994 (lots of files): Use the new functions.
4dadf664 10995
1afff620
KN
10996 * goops.c (CALL_GF1, CALL_GF2, CALL_GF3, CALL_GF4): Use scm_call_N.
10997
10998 * strings.c: #include "libguile/deprecation.h".
10999
b858464a
MG
110002001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11001
11002 * read.c (scm_lreadr): When reading a hash token, check for a
11003 user-defined hash procedure first, so that overriding the builtin
11004 hash characters is possible (this was needed for implementing
11005 SRFI-4's read synax `f32(...)').
4dadf664 11006
b858464a
MG
11007 * num2integral.i.c: Use scm_t_signed_bits instead of scm_t_bits,
11008 because the latter is unsigned now and breaks comparisons like
11009 (n < (scm_t_signed_bits)MIN_VALUE).
4dadf664 11010
d95c0b76
NJ
110112001-06-26 Neil Jerram <neil@ossau.uklinux.net>
11012
11013 * eval.h, eval.c (scm_call_4): New function.
11014
11015 * eval.c (SCM_APPLY, SCM_CEVAL, ENTER_APPLY): Call trap handlers
11016 directly rather than dispatching to them via scm_ithrow and a lazy
11017 catch.
4dadf664 11018
d95c0b76
NJ
11019 * eval.c (scm_evaluator_trap_table), eval.h (SCM_ENTER_FRAME_HDLR,
11020 SCM_APPLY_FRAME_HDLR, SCM_EXIT_FRAME_HDLR): Add three new options
11021 for trap handler procedures.
11022
11023 * debug.h (SCM_RESET_DEBUG_MODE): Add checks for trap handler
11024 procedures not being #f.
11025
30e3be5a
ML
110262001-06-27 Michael Livshin <mlivshin@bigfoot.com>
11027
11028 * Makefile.am (c-tokenize.c): add rule to generate it.
11029 (EXTRA_DIST): add c-tokenize.lex, so it gets distributed.
11030
11031 filter-doc-snarfage.c: remove.
11032
82893676
MG
110332001-06-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11034
11035 * ports.c (scm_output_port_p): Use result of SCM_COERCE_OUTPORT.
11036
11037 The following set of changes makes compiling Guile under various
11038 Windows compilers easier. Compilation under GNU systems should
11039 not be affected at all.
11040
11041 Thanks to Stefan Jahn for all necessary information, patches and
11042 testing.
4dadf664 11043
82893676
MG
11044 * posix.c: Conditialize getpwent, getgrent, kill, getppid, getuid,
11045 getpgrp, ttyname, primitive-fork and some header inclusion for
11046 Windows.
11047
11048 * random.c: Define M_PI, if not predefined and use __int64 for
11049 LONG64 under Windows.
11050
11051 * scmsigs.c: Emulate some functions (alarm, sleep, kill) under
11052 Windows and conditionalize some signal names.
11053
4dadf664 11054 * socket.c (scm_getsockopt): Added missing comma.
82893676
MG
11055 Include socket library header under Windows.
11056
11057 * stime.c (CLKTCK): Add cast to int, to make it compile under
11058 Windows.
11059
11060 * ports.c (truncate): New function, compiled only under Windows.
11061
11062 * net_db.c: Do not declare errno under Windows.
11063
11064 * iselect.h, inet_aton.c: Include socket library headers under
11065 Windows.
11066
11067 * guile.c (inner_main): Under Windows, initialize socket library
11068 and initialize gdb_interface data structures.
11069
11070 * gdb_interface.h: Under Windows, gdb_interface cannot be
11071 initialized statically. Initialize at runtime instead.
11072
11073 * fports.c (write_all): ssize_t -> size_t.
11074 (fport_print): Conditionalize call to ttyname().
11075 (getflags): New function, compiled only under Windows.
11076
11077 * filesys.c: Conditionalize inclusion of <pwd.h>. Conditionalize
11078 primitives chown, link, fcntl.
11079 (scm_basename, scm_dirname): Under Windows, handle \ as well as /
11080 as path seperator.
11081
11082 * backtrace.c: Include <io.h> under Windows.
11083
11084 * async.h (ASYNCH, SCM_ASYNC_H): Rename <foo>H to SCM_<foo>_H.
11085
11086 * _scm.h: Added preprocessor conditional for __MINGW32__ for errno
11087 declaration.
11088
fdc28395
KN
110892001-06-27 Keisuke Nishida <kxn30@po.cwru.edu>
11090
11091 * eval.c (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
11092 scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): New functions.
11093 * eval.h (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
11094 scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): Declared.
11095 * async.c (scm_run_asyncs), coop-threads.c (scheme_body_bootstrip,
11096 scheme_handler_bootstrip), debug.c (with_traps_inner), dynwind.c
11097 (scm_dynamic_wind, scm_dowinds), environments.c
11098 (import_environment_conflict), eval.c (scm_macroexp, scm_force,
11099 scm_primitive_eval_x, scm_primitive_eval), fluids.c (apply_thunk),
11100 goops.c (GETVAR, purgatory, make_class_from_template,
11101 scm_ensure_accessor), hashtab.c (scm_ihashx, scm_sloppy_assx,
11102 scm_delx_x, fold_proc), hooks.c (scm_c_run_hook), load.c
11103 (scm_primitive_load), modules.c (scm_resolve_module,
11104 scm_c_define_module, scm_c_use_module, scm_c_export,
11105 module_variable, scm_eval_closure_lookup, scm_sym2var,
11106 scm_make_module, scm_ensure_user_module, scm_load_scheme_module),
11107 ports.c (scm_port_for_each), print.c (scm_printer_apply),
11108 properties.c (scm_primitive_property_ref), ramap.c (ramap,
11109 ramap_cxr, rafe, scm_array_index_map_x, read.c (scm_lreadr),
11110 scmsigs.c (sys_deliver_signals), sort.c (applyless), strports.c
11111 (scm_object_to_string, scm_call_with_output_string,
11112 scm_call_with_input_string), throw.c (scm_body_thunk,
11113 scm_handle_by_proc, hbpca_body), unif.c (scm_make_shared_array,
11114 scm_make_shared_array), vports.c (sf_flush, sf_write,
11115 sf_fill_input, sf_close): Use one of the above functions.
11116 * goops.c, hashtab.c, scmsigs.c, sort.c: #include "libguile/root.h".
11117
36284627
DH
111182001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
11119
11120 * filesys.c (scm_close), ports.c (scm_close_port,
11121 scm_port_closed_p), strop.c (scm_string_null_p): Use SCM_BOOL
11122 instead of SCM_NEGATE_BOOL.
11123
11124 * filesys.c (scm_stat): Clean up type dispatch.
11125
11126 * filesys.c (scm_stat), ports.c (scm_input_port_p,
11127 scm_output_port_p): Get rid of redundant IM type check.
11128
11129 * filesys.c (scm_readdir, scm_getcwd, scm_readlink), gh_data.c
11130 (gh_str2scm), load.c (scm_primitive_load, scm_internal_parse_path,
11131 scm_search_path), net_db.c (scm_gethost, scm_getnet, scm_getproto,
11132 scm_return_entry), numbers.c (scm_number_to_string), objects.c
11133 (scm_make_subclass_object), ports.c (scm_port_mode), read.c
11134 (scm_lreadr), simpos.c (scm_getenv), socket.c (scm_inet_ntoa,
11135 scm_addr_vector), stime.c (scm_strftime), strings.c
11136 (scm_makfromstrs, scm_makfrom0str, scm_substring), strings.h
11137 (SCM_STRING_COERCE_0TERMINATION_X), strop.c (string_copy,
11138 scm_string_split), strports.c (scm_strport_to_string), symbols.c
11139 (scm_symbol_to_string), vports.c (sf_write): Use scm_mem2string
11140 instead of scm_makfromstr.
11141
11142 * net_db.c (scm_sethost, scm_setnet, scm_setproto, scm_setserv),
11143 ports.c (scm_close_all_ports_except), read.c (scm_lreadr,
11144 scm_read_hash_extend), stime.c (scm_strftime), strings.c
11145 (scm_string_append, scm_string), strings.h (SCM_STRINGP,
11146 SCM_STRING_COERCE_0TERMINATION_X, SCM_RWSTRINGP), strop.c
11147 (string_capitalize_x): Prefer explicit type check over SCM_N?IMP,
11148 !SCM_<pred> over SCM_N<pred>.
11149
11150 * strings.[ch] (scm_makfromstr): Deprecated.
11151
11152 (scm_mem2string): New function, replaces scm_makfromstr.
11153
11154 * strings.c (scm_substring), strop.c (string_copy,
11155 scm_string_split), strports.c (scm_strport_to_string), symbols.c
11156 (scm_symbol_to_string): Fix gc problem.
11157
11158 * strings.h (STRINGSH, SCM_STRINGS_H): Rename <foo>H to
11159 SCM_<foo>_H.
11160
11161 * validate.h (SCM_VALIDATE_SUBSTRING_SPEC_COPY): Eliminate
11162 warning about comparing signed and unsigned values. This fix is
11163 not optimal, since it won't work reliably if sizeof (c_start) >
11164 sizeof (size_t) or sizeof (c_end) > sizeof (size_t). A better
11165 solution is to define this macro as an inline function, thus
11166 allowing to specifiy the types of c_start and c_end.
11167
13dcb666
DH
111682001-06-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
11169
11170 * debug.h (SCM_DEBUGOBJ_FRAME): Deliver result as a
11171 scm_t_debug_frame*.
11172
11173 * debug.h (DEBUGH, SCM_DEBUG_H), stacks.h (STACKSH, SCM_STACKSH):
11174 Rename <foo>H to SCM_<foo>_H.
11175
11176 * stacks.c (NEXT_FRAME, narrow_stack): Prefer explicit type check
11177 over SCM_N?IMP, !SCM_<pred> over SCM_N<pred>.
11178
11179 (narrow_stack): Make i unsigned. Don't use side-effecting
11180 operations in conditions.
11181
11182 (narrow_stack, scm_make_stack, scm_stack_id,
11183 scm_last_stack_frame): Get rid of redundant SCM_N?IMP checks.
11184
11185 (scm_make_stack, scm_stack_id, scm_last_stack_frame): Clean up
11186 type dispatch. No need to cast result of SCM_DEBUGOBJ_FRAME any
11187 more.
11188
11189 (scm_stack_ref, scm_frame_previous, scm_frame_next): Fix
11190 signedness.
11191
ea2c3968 11192 (scm_last_stack_frame): Remove bogus `;'.
13dcb666
DH
11193
11194 * stacks.h (SCM_FRAMEP): Fix type check.
11195
ac13d9d2
ML
111962001-06-25 Michael Livshin <mlivshin@bigfoot.com>
11197
ee0c0e03
ML
11198 * Makefile.am (MAINTAINERCLEANFILES): be sure to remove
11199 c-tokenize.c when doing maintainer-clean.
11200
ac13d9d2
ML
11201 * snarf.h (SCM_SNARF_DOCS): change the "grammar" slightly.
11202
11203 * guile-snarf-docs.in, guile-snarf-docs-texi.in: rewrite &
11204 simplify.
11205
11206 * eval.c: all hash signs are in column 0.
11207
11208 * Makefile.am (guile_filter_doc_snarfage): build using
11209 c-tokenize.c, not filter-doc-snarfage.c.
11210 rearrange snarfing dependencies a bit.
11211
11212 * c-tokenize.lex: new file.
11213
16be44e5
MV
112142001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
11215
11216 * srcprop.h, srcprop.c (scm_srcprops_to_plist): Renamed from
11217 scm_t_srcpropso_plist. See the big type renaming.
11218 * coop-defs.h (scm_mutex_trylock, scm_cond_timedwait): Likewise.
11219 Thanks to Seth Alves!
4dadf664 11220
16be44e5
MV
11221 * numbers.c (SIZE_MAX, PTRDIFF_MIN, PTRDIFF_MAX): Only define when
11222 they aren't defined already.
11223
5843e5c9
DH
112242001-06-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
11225
11226 * backtrace.c (display_backtrace_body): Use SCM_VALIDATE_STACK
11227 and SCM_VALIDATE_OPOUTPORT instead of SCM_ASSERT. Fix signedness
11228 problem.
11229
11230 * backtrace.c (display_expression, scm_set_print_params_x,
11231 display_application, display_frame, scm_backtrace), numbers.c
11232 (scm_istring2number), objects.c (scm_class_of,
11233 scm_mcache_lookup_cmethod, scm_mcache_compute_cmethod): Prefer
11234 explicit type check over SCM_N?IMP, !SCM_<pred> over SCM_N<pred>.
11235
11236 * fluids.c (scm_fluid_ref, scm_fluid_set_x): Fluid numbers are
11237 always positive.
11238
11239 * numbers.c (scm_i_mkbig): Remove unnecessary casts, remove
11240 unnecessary SCM_DEFER_INTS, SCM_ALLOW_INTS.
11241
11242 * objects.c (scm_class_of): Type fix.
11243
11244 (scm_mcache_lookup_cmethod): Improved comment, simplified,
11245 eliminated goto.
11246
11247 * pairs.h (scm_error_pair_access): The function can return if
11248 called recursively.
11249
6b41a313
MG
112502001-06-20 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11251
11252 * init.c (scm_init_guile_1): Removed initialization of tag.c.
11253
11254 * gdbint.c, init.c: Removed inclusion of tag.h.
11255
11256 * tag.h, tag.c: Removed files.
11257
11258 * Makefile.am: Removed tag.{h,c,doc,x} in various places.
11259
fbbdb121
GH
112602001-06-20 Gary Houston <ghouston@arglist.com>
11261
11262 * deprecation.c, extensions.c, rw.c: include string.h.
11263
72c17ed0
GH
112642001-06-19 Gary Houston <ghouston@arglist.com>
11265
11266 * filter-doc-snarfage.c (process): added ungetc in
11267 MULTILINE_COOKIE case since otherwise it fails when there's no
11268 space between the '(' and the quote of the following string
11269 (gcc 3.0).
11270
4ff9f825
MV
112712001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
11272
4927dd28
MV
11273 Throughout: replace "scm_*_t" with "scm_t_*", except "scm_lisp_t".
11274
b629af45
MV
112752001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
11276
11277 * unif.h (SCM_ARRAY_NDIM): Shift then cast so that no sign
0f002b27
MV
11278 extension takes place.
11279 * strings.h (SCM_STRING_LENGTH): Likewise.
11280 (SCM_STRING_MAX_LENGTH): Use unsigned numbers.
4dadf664 11281
4ff9f825
MV
11282 * __scm.h (ptrdiff_t): Typedef to long when configure didn't find
11283 it.
11284
11285 * tags.h: Include <stdint.h> when we have it.
11286 (scm_bits_t): Changed to be a unsigned type. Use uintptr_t when
11287 available. Else use "unsigned long".
11288 (scm_signed_bits_t): New.
11289
11290 * numbers.h (SCM_SRS): Cast shiftee to scm_signed_bits_t.
11291 (SCM_INUM): Cast result to scm_signed_bits_t.
11292
58bee6a8
TTN
112932001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org>
11294
11295 * mkstemp.c: Update path to #include file scmconfig.h.
11296 Thanks to Golubev I. N.
11297
00d8d838
DH
112982001-06-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
11299
11300 * struct.h (SCM_STRUCT_VTABLE_FLAGS): New macro.
11301
ea2c3968 11302 * goops.h (SCM_NUMBER_OF_SLOTS): Removed bogus `\' at the end of
00d8d838
DH
11303 the macro definition.
11304
11305 (SCM_CLASSP, SCM_INSTANCEP, SCM_PUREGENERICP, SCM_ACCESSORP,
11306 SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Use SCM_STRUCT_VTABLE_FLAGS
11307 instead of SCM_INST_TYPE.
11308
11309 (SCM_ACCESSORP, SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Make sure
11310 the object is a struct before accessing its struct flags.
11311
11312 (SCM_INST_TYPE, SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Deprecated.
11313
495c67e5
GH
113142001-06-10 Gary Houston <ghouston@arglist.com>
11315
11316 * rdelim.c (scm_init_rdelim_builtins): don't try to activate the
11317 (ice-9 rdelim) module in (guile) and (guile-user). it didn't
11318 work reliably anymore. try it from boot-9.scm instead.
11319
6a9003d3
MV
113202001-06-09 Marius Vollmer <mvo@zagadka.ping.de>
11321
11322 * ports.c (scm_lfwrite): Maintain columnd and row count in port.
9a5fa6e9 11323 Thanks to Matthias Köppe!
58bee6a8 11324
47bcd646
ML
113252001-06-08 Michael Livshin <mlivshin@bigfoot.com>
11326
a88ff5b6
ML
11327 * snarf.h, filter-doc-snarfage.c: more changes to cope with
11328 space-happy C preprocessors.
11329
47bcd646 11330 * filter-doc-snarfage.c, guile-snarf.in: try to cope with spaces
9a5fa6e9 11331 inside cookies. thanks to Matthias Köppe!
47bcd646 11332
bab246f3
DH
113332001-06-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
11334
11335 * keywords.c (keyword_print): Don't use SCM_C[AD]R to access
11336 keywords. Fix gc protection.
11337
11338 * objects.c (scm_mcache_lookup_cmethod): Don't use side effecting
11339 operations in macro calls.
11340
11341 * pairs.c (scm_error_pair_access): Avoid recursion.
11342
11343 Thanks to Matthias Koeppe for reporting the bugs that correspond
11344 to the following set of patches.
11345
11346 * unif.c (scm_bit_set_star_x, scm_bit_invert_x), vectors.h
11347 (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR): Obtain the
11348 bitvector base address using SCM_BITVECTOR_BASE.
11349
11350 * unif.h (SCM_BITVECTOR_BASE): Return the base address as an
11351 unsigned long*.
11352
dcb410ec
DH
113532001-06-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
11354
11355 * goops.c (SCM_CLASS_REDEF): Removed.
11356
11357 * vectors.h (VECTORSH, SCM_VECTORS_H): Renamed <foo>H to
11358 SCM_<foo>_H.
11359
11360 Thanks to Matthias Koeppe for reporting the bugs that correspond
11361 to the following set of patches.
11362
11363 * goops.c (scm_sys_prep_layout_x, scm_basic_basic_make_class,
11364 create_basic_classes, scm_sys_fast_slot_set_x, set_slot_value,
11365 scm_sys_allocate_instance, clear_method_cache,
11366 scm_sys_invalidate_method_cache_x, scm_make,
11367 create_standard_classes, scm_make_port_classes, scm_make_class,
11368 scm_add_slot): Use SCM_SET_SLOT to set slot values.
11369
11370 (prep_hashsets): Use SCM_SET_HASHSET to set class hash values.
11371
11372 * goops.h (SCM_SET_SLOT, SCM_SET_HASHSET): New macros.
11373
11374 * ramap.c (BINARY_ELTS_CODE, BINARY_PAIR_ELTS_CODE,
11375 UNARY_ELTS_CODE): Remove bogus break statement.
11376
11377 * vectors.h (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR):
11378 Don't access bit vectors elements as SCM objects.
11379
11380 * weaks.c (scm_make_weak_vector, scm_make_weak_key_hash_table,
11381 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
11382 Don't assign to an unpacked value.
11383
e81d98ec
DH
113842001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
11385
11386 * __scm.h (SCM_NORETURN): Moved here from error.h.
11387
11388 (SCM_UNUSED): New macro.
11389
11390 (SCM_DEBUG_PAIR_ACCESSES): New macro.
11391
11392 * backtrace.c (display_error_handler), continuations.c
11393 (continuation_print), debug.c (debugobj_print), dynwind.c
11394 (guards_print), environments.c (observer_print,
11395 core_environments_finalize, leaf_environment_cell,
11396 leaf_environment_print, eval_environment_print,
11397 eval_environment_observer, import_environment_define,
11398 import_environment_undefine, import_environment_print,
11399 import_environment_observer, export_environment_define,
11400 export_environment_undefine, export_environment_print,
11401 export_environment_observer), eval.c (scm_m_quote, scm_m_begin,
11402 scm_m_if, scm_m_set_x, scm_m_and, scm_m_or, scm_m_case,
11403 scm_m_cond, scm_m_lambda, scm_m_letstar, scm_m_do, scm_m_delay,
11404 scm_m_letrec1, scm_m_apply, scm_m_cont, scm_m_nil_cond,
11405 scm_m_nil_ify, scm_m_t_ify, scm_m_0_cond, scm_m_0_ify,
11406 scm_m_1_ify, scm_m_atfop, scm_m_at_call_with_values), evalext.c
11407 (scm_m_generalized_set_x), fluids.c (fluid_print), fports.c
11408 (fport_print), gc.c (gc_start_stats, scm_remember_upto_here_1,
11409 scm_remember_upto_here_2, scm_remember_upto_here, mark_gc_async),
11410 gh_init.c (gh_standard_handler), goops.c (get_slot_value,
11411 set_slot_value, test_slot_existence, scm_change_object_class,
11412 scm_m_atslot_ref, scm_m_atslot_set_x, make_struct_class,
11413 default_setter), guardians.c (guardian_print, guardian_gc_init,
11414 guardian_zombify, whine_about_self_centered_zombies), guile.c
11415 (inner_main), init.c (stream_handler), keywords.c (keyword_print),
11416 mallocs.c (malloc_print), numbers.c (scm_print_real,
11417 scm_print_complex, scm_bigprint), ports.c (flush_port_default,
11418 end_input_default, scm_port_print, fill_input_void_port,
11419 write_void_port), root.c (root_print), smob.c (scm_mark0,
11420 scm_free0, scm_smob_print, scm_smob_apply_1_error,
11421 scm_smob_apply_2_error, scm_smob_apply_3_error, free_print),
11422 stime.c (restorezone), strings.c (scm_makfromstr), struct.c
11423 (scm_struct_free_0, scm_struct_free_standard,
11424 scm_struct_free_entity, scm_struct_gc_init, scm_free_structs),
11425 throw.c (jmpbuffer_print, lazy_catch_print, ss_handler,
11426 scm_handle_by_throw, scm_ithrow), weaks.c
11427 (scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
11428 scm_scan_weak_vectors), ramap.c (scm_array_fill_int), filesys.c
11429 (scm_dir_print): Mark unused parameters with SCM_UNUSED.
11430
11431 * error.h (SCM_NORETURN): Moved to __scm.h.
11432
11433 * error.h (ERRORH, SCM_ERROR_H), pairs.h (PAIRSH, SCM_PAIRS_H):
11434 Renamed <foo>H to SCM_<foo>_H.
11435
11436 * gc.c (debug_cells_gc_interval): New static variable.
11437
11438 (scm_assert_cell_valid): If selected by the user, perform
11439 additional garbage collections.
11440
11441 (scm_set_debug_cell_accesses_x): Extended to let the user specify
11442 if additional garbage collections are desired.
11443
11444 (mark_gc_async): If additional garbage collections are selected
11445 by the user, don't call the after-gc-hook. Instead require the
11446 user to run the hook manually.
11447
11448 * pairs.c (scm_error_pair_access): New function. Only compiled
11449 if SCM_DEBUG_PAIR_ACCESSES is set to 1.
11450
11451 * pairs.h (SCM_VALIDATE_PAIR): New macro.
11452
11453 (SCM_CAR, SCM_CDR, SCM_SETCAR, SCM_SETCDR): If
11454 SCM_DEBUG_PAIR_ACCESSES is set to 1, make sure that the argument
11455 is a real pair object. (Glocs are also accepted, but that may
11456 change.) If not, abort with an error message.
11457
17fa3fcf
DH
114582001-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
11459
11460 * eval.c (SCM_VALIDATE_NON_EMPTY_COMBINATION): New macro.
11461
11462 (SCM_CEVAL, SCM_APPLY): Replace calls to SCM_EVALIM2 with calls
11463 to SCM_VALIDATE_NON_EMPTY_COMBINATION.
11464
feeedafb
MV
114652001-06-05 Marius Vollmer <mvo@zagadka.ping.de>
11466
11467 * extensions.c (scm_c_register_extension): Allow NULL as library
11468 name.
11469 (load_extension): Ignore NULL library names when comparing.
58bee6a8 11470
feeedafb
MV
11471 * hash.c (scm_hasher): Use SCM_UNPACK in the case labels so that
11472 non-pointers are being compared. Thanks to Alexander Klimov!
11473
4bcdfe46
GH
114742001-06-04 Gary Houston <ghouston@arglist.com>
11475
11476 * rw.c (scm_write_string_partial): new procedure implementing
11477 write-string/partial in (ice-9 rw).
11478 * rw.h: declare scm_write_string_partial.
58bee6a8 11479
f480396b
MV
114802001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
11481
feeedafb
MV
11482 * keywords.c (keyword_print): Substract 1 from length of symbol
11483 name, accounting for the silly dash.
11484
11485 * dynl.c (scm_registered_modules, scm_clear_registered_modules):
11486 Do not emit deprecation warning.
11487
f480396b
MV
11488 Added exception notice to all files.
11489
11490 * dynl.c: Include "deprecation.h".
11491
c794483c
MV
114922001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
11493
11494 * dynl.c (scm_register_module_xxx, scm_registered_modules,
11495 scm_clear_registered_modules): Deprecated.
11496
9454d8d5
RB
114972001-06-02 Rob Browning <rlb@cs.utexas.edu>
11498
11499 * .cvsignore: add guile_filter_doc_snarfage guile-snarf-docs
11500 guile-snarf-docs-texi.
11501
11502 * fports.c: HAVE_ST_BLKSIZE changed to
11503 HAVE_STRUCT_STAT_ST_BLKSIZE.
11504 (scm_fport_buffer_add): HAVE_ST_BLKSIZE changed to
11505 HAVE_STRUCT_STAT_ST_BLKSIZE.
11506
11507 * filesys.c (scm_stat2scm): HAVE_ST_RDEV changed to
11508 HAVE_STRUCT_STAT_ST_RDEV.
11509 (scm_stat2scm): HAVE_ST_BLKSIZE changed to
11510 HAVE_STRUCT_STAT_ST_BLKSIZE.
11511 (scm_stat2scm): HAVE_ST_BLOCKS changed to
11512 HAVE_STRUCT_STAT_ST_BLOCKS.
11513
114f9bab
MV
115142001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
11515
b0c16cd9
MV
11516 * strports.c (scm_eval_string): Use scm_primitive_eval_x instead
11517 of scm_eval_x to allow module changes between the forms in the
11518 string. Set/restore module using scm_c_call_with_current_module.
11519
114f9bab
MV
11520 * mkstemp.c: New file, slightly modified from libiberties
11521 mkstemps.c.
11522
c99f9605
ML
115232001-05-31 Michael Livshin <mlivshin@bigfoot.com>
11524
11525 * guile-snarf-docs.in, guile-snarf-docs-texi.in,
11526 filter-doc-snarfage.c: new files.
11527
11528 * Makefile.am: add stuff to [build,] use and distribute
11529 guile-snarf-docs, guile-snarf-docs-texi, guile_filter_doc_snarfage.
11530
11531 * guile-snarf.in: grok the new snarf output.
11532
11533 * snarf.h: make the output both texttools- and `read'-friendly.
11534
47bcd646
ML
11535 * guile-doc-snarf.in: reimplement in terms of guile-snarf and
11536 guile-snarf-docs. (should also deprecate, I guess. maybe not).
c99f9605 11537
7eb5d7b2
MV
115382001-05-31 Marius Vollmer <mvo@zagadka.ping.de>
11539
11540 * print.c (scm_simple_format): Support "~~" and "~%". Signal
11541 error for unsupported format controls and for superflous
ec2667f0 11542 arguments. Thanks to Daniel Skarda!
7eb5d7b2
MV
11543
11544 * print.h, print.c (scm_print_symbol_name): Factored out of
11545 scm_iprin1.
11546 (scm_iprin1): Call it.
58bee6a8 11547
7eb5d7b2
MV
11548 * keywords.c (keyword_print): Use scm_print_symbol_name so that
11549 weird names are printed correctly.
11550
11551 * print.c (scm_print_symbol_name): Symbols whose name starts with
11552 `#' or `:' or ends with `:' are considered weird.
11553
609c3d30
MG
115542001-05-30 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11555
11556 * numbers.c (scm_difference, scm_divide): Clarified comments for -
11557 and /.
11558
115592001-05-29 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11560
11561 * debug.h: Removed prototype for scm_eval_string.
11562
8d09eb04
MG
115632001-05-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11564
11565 * symbols.c (scm_gensym): Fix buffer overrun (try `(gensym
58bee6a8 11566 (make-string 2000 #\!))' in an older version).
8d09eb04
MG
11567
11568 Change strncpy to memcpy to allow embedded NUL characters in
11569 symbol prefix.
11570
dd85ce47
ML
115712001-05-28 Michael Livshin <mlivshin@bigfoot.com>
11572
fde50407
ML
11573 * hooks.c (scm_create_hook): deprecated.
11574 (make_hook): deleted.
11575 (scm_make_hook): all the hook creation code is now here.
11576
11577 * gc.c (scm_init_gc): don't call `scm_create_hook'. instead make
11578 a hook, make it permanent, and do a `scm_c_define' on it.
11579
dd85ce47
ML
11580 * strop.c (s_scm_string_capitalize_x): fix docstring quoting.
11581
11582 * socket.c (s_scm_inet_pton): fix docstring quoting.
11583 (s_scm_inet_ntop): ditto.
11584
11585 * num2integral.i.c (INTEGRAL2NUM): cast to fix a warning.
11586
11587 * hashtab.c (scm_internal_hash_fold): fix argument position in
11588 SCM_ASSERT.
11589
11590 * environments.c (s_scm_import_environment_set_imports_x): fix
11591 argument position in SCM_ASSERT.
11592
11593 * debug.c (s_scm_make_gloc): fix SCM packing/unpacking.
11594 (s_scm_make_iloc): ditto.
11595
729dbac3
DH
115962001-05-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
11597
11598 * __scm.h (SCM_DEBUG_TYPING_STRICTNESS): Make 1 the default.
11599
11600 * eval.c (promise_print): Read the promise's value as an object.
11601
11602 (SCM_CEVAL): Don't perform side-effecting operations in macro
11603 parameters.
11604
11605 * eval.h (SCM_EVALIM2): Fix the typing strictness of the
11606 conditional expression.
11607
11608 * gc.c (scm_master_freelist, scm_master_freelist2): Added missing
11609 initializer.
11610
11611 * gh_data.c (gh_set_substr): Removed redundant unsigned >= 0
11612 text, removed redundant computation of effective_length and fixed
11613 the overflow check.
11614
11615 * goops.c (test_slot_existence): Use SCM_EQ_P to compare SCM
11616 values.
11617
11618 (wrap_init): Don't use SCM_C[AD]R for non pairs.
11619
11620 (hell): Make it a scm_bits_t pointer rather than a SCM pointer.
11621
11622 * goops.c (scm_sys_modify_class), strports.c (st_resize_port),
11623 struct.h (SCM_SET_STRUCT_PRINTER): Store unpacked values.
11624
11625 * goops.h (SCM_ACCESSORS_OF, SCM_SLOT): Return a SCM value.
11626
11627 * goops.h (GOOPSH, SCM_GOOPS_H), modules.h (MODULESH,
11628 SCM_MODULES_H), objects.h (OBJECTSH, SCM_OBJECTS_H), struct.h
11629 (STRUCTH, SCM_STRUCT_H), symbols.h (SYMBOLSH, SCM_SYMBOLS_H),
11630 __scm.h (__SCMH, SCM___SCM_H): Change <foo>H to SCM_<foo>_H.
11631
11632 * modules.[ch] (scm_module_tag): Make it a scm_bits_t value.
11633
11634 * objects.h (SCM_SET_CLASS_INSTANCE_SIZE): Fixed typing.
11635
ea2c3968 11636 * ramap.c (ramap_rp): Removed bogus `;'.
729dbac3
DH
11637
11638 * sort.c (scm_restricted_vector_sort_x): Fixed signedness
11639 problem.
11640
11641 * symbols.h (SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS, SCM_SYMBOL_FUNC,
11642 SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS):
11643 Read SCM objects rather than scm_bits_t values.
11644
11645 * tags.h (SCM_VOIDP_TEST): Removed.
11646
11647 (SCM_DEBUG_TYPING_STRICTNESS): Now takes values 0, 1, 2. The
11648 value of 2 now corresponds to the former 1, the current 1
11649 corresponds to the former situation that SCM_VOIDP_TEST was
11650 defined.
11651
58bee6a8
TTN
11652 (SCM): Now defined as typedef struct scm_unused_struct * SCM;
11653 If this appears to be not ANSI compliant, we will change it to
729dbac3
DH
11654 typedef struct scm_unused_struct { } * SCM;
11655 Thanks to Han-Wen Nienhuys for the suggestion.
11656
11657 * unif.c (scm_array_set_x): Fix typing problem, and use
11658 SCM_UVECTOR_BASE instead of SCM_VELTS or SCM_CELL_WORD_1 when
11659 dealing with uniform vectors.
11660
6b1b030e
ML
116612001-05-27 Michael Livshin <mlivshin@bigfoot.com>
11662
11663 * gc.c (scm_init_storage): init `scm_gc_registered_roots'.
11664 (scm_igc): mark from them, too (precisely, not conservatively!).
11665
11666 * root.h (scm_gc_registered_roots): new object in
11667 scm_sys_protects.
11668
11669 * hooks.c (scm_create_hook): call `scm_gc_protect_object' instead
11670 `scm_protect_object'. shouldn't call it at all, though, it seems.
11671
11672 * gc.c (scm_[un]protect_object): deprecated.
11673 (scm_gc_[un]protect_object): new names for scm_[un]protect_object.
11674 (scm_gc_[un]register_root[s]): new.
11675
11676 * gc.h: add prototypes for scm_gc_[un]protect_object,
11677 scm_gc_[un]register_root[s].
11678
c014a02e
ML
116792001-05-26 Michael Livshin <mlivshin@bigfoot.com>
11680
11681 revert the controversial part of the 2001-05-24 changes.
11682
0120801d
MV
116832001-05-25 Marius Vollmer <mvo@zagadka.ping.de>
11684
f4e0611e
MV
11685 * modules.c (scm_env_module): Exported to Scheme.
11686
0120801d 11687 * eval.c (scm_debug_opts): New option `show-file-name'.
729dbac3 11688
0120801d 11689 * debug.h (SCM_SHOW_FILE_NAME): New.
729dbac3 11690
0120801d
MV
11691 * backtrace.c: Include "libguile/filesys.h".
11692 (sym_base, display_backtrace_get_file_line,
11693 display_backtrace_file, display_backtrace_file_and_line): New.
11694 (display_frame): Call display_backtrace_file_and_line if that is
11695 requested.
11696 (display_backtrace_body): Call scm_display_backtrace_file if
11697 requested.
11698
11699 * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr):
11700 Prototypes removed since there's no definition for these
11701 functions.
11702
880a7d13
MG
117032001-05-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11704
11705 * unif.c (scm_make_ra, array_free), unif.h (SCM_ARRAY_DIMS):
11706 Changed use of scm_array->scm_array_t and
11707 scm_array_dim->scm_array_dim_t to enable build with
11708 --disable-deprecated.
11709
1be6b49c
ML
117102001-05-24 Michael Livshin <mlivshin@bigfoot.com>
11711
11712 The purpose of this set of changes is to regularize Guile's usage
11713 of ANSI C integral types, with the following ideas in mind:
11714
d69c867a
ML
11715 - SCM does not nesessarily have to be long.
11716 - long is not nesessarily enough to store pointers.
1be6b49c
ML
11717 - long is not nesessarily the same size as int.
11718
11719 The changes are incomplete and possibly buggy. Please test on
11720 something exotic.
11721
11722 * validate.h
11723 (SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,BITS,UBITS,INT,UINT}[_DEF]):
11724 new macros.
11725
11726 * unif.h: type renaming:
11727 scm_array -> scm_array_t
11728 scm_array_dim -> scm_array_dim_t
11729 the old names are deprecated, all in-Guile uses changed.
11730
11731 * tags.h (scm_ubits_t): new typedef, representing unsigned
11732 scm_bits_t.
11733
11734 * stacks.h: type renaming:
11735 scm_info_frame -> scm_info_frame_t
11736 scm_stack -> scm_stack_t
11737 the old names are deprecated, all in-Guile uses changed.
11738
11739 * srcprop.h: type renaming:
11740 scm_srcprops -> scm_srcprops_t
11741 scm_srcprops_chunk -> scm_srcprops_chunk_t
11742 the old names are deprecated, all in-Guile uses changed.
11743
11744 * gsubr.c, procs.c, print.c, ports.c, read.c, rdelim.c, ramap.c,
11745 rw.c, smob.c, sort.c, srcprop.c, stacks.c, strings.c, strop.c,
11746 strorder.c, strports.c, struct.c, symbols.c, unif.c, values.c,
11747 vectors.c, vports.c, weaks.c:
11748 various int/size_t -> size_t/scm_bits_t changes.
11749
11750 * random.h: type renaming:
11751 scm_rstate -> scm_rstate_t
11752 scm_rng -> scm_rng_t
11753 scm_i_rstate -> scm_i_rstate_t
11754 the old names are deprecated, all in-Guile uses changed.
11755
11756 * procs.h: type renaming:
11757 scm_subr_entry -> scm_subr_entry_t
11758 the old name is deprecated, all in-Guile uses changed.
11759
11760 * options.h (scm_option_t.val): unsigned long -> scm_bits_t.
11761 type renaming:
11762 scm_option -> scm_option_t
11763 the old name is deprecated, all in-Guile uses changed.
11764
11765 * objects.c: various long -> scm_bits_t changes.
11766 (scm_i_make_class_object): flags: unsigned long -> scm_ubits_t
11767
11768 * numbers.h (SCM_FIXNUM_BIT): deprecated, renamed to
11769 SCM_I_FIXNUM_BIT.
11770
11771 * num2integral.i.c: new file, multiply included by numbers.c, used
11772 to "templatize" the various integral <-> num conversion routines.
11773
11774 * numbers.c (scm_mkbig, scm_big2num, scm_adjbig, scm_normbig,
11775 scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl):
11776 deprecated.
11777 (scm_i_mkbig, scm_i_big2inum, scm_i_adjbig, scm_i_normbig,
11778 scm_i_copybig, scm_i_short2big, scm_i_ushort2big, scm_i_int2big,
11779 scm_i_uint2big, scm_i_long2big, scm_i_ulong2big, scm_i_bits2big,
11780 scm_i_ubits2big, scm_i_size2big, scm_i_ptrdiff2big,
11781 scm_i_long_long2big, scm_i_ulong_long2big, scm_i_dbl2big,
11782 scm_i_big2dbl, scm_short2num, scm_ushort2num, scm_int2num,
11783 scm_uint2num, scm_bits2num, scm_ubits2num, scm_size2num,
11784 scm_ptrdiff2num, scm_num2short, scm_num2ushort, scm_num2int,
11785 scm_num2uint, scm_num2bits, scm_num2ubits, scm_num2ptrdiff,
11786 scm_num2size): new functions.
11787
d69c867a 11788 * modules.c (scm_module_reverse_lookup): i, n: int -> scm_bits_t.
1be6b49c
ML
11789
11790 * load.c: change int -> size_t in various places (where the
11791 variable is used to store a string length).
11792 (search-path): call scm_done_free, not scm_done_malloc.
11793
11794 * list.c (scm_ilength): return a scm_bits_t, not long.
11795 some other {int,long} -> scm_bits_t changes.
11796
11797 * hashtab.c: various [u]int -> scm_bits_t changes.
11798 scm_ihashx_closure -> scm_ihashx_closure_t (and made a typedef).
11799 (scm_ihashx): n: uint -> scm_bits_t
11800 use scm_bits2num instead of scm_ulong2num.
11801
11802 * gsubr.c: various int -> scm_bits_t changes.
11803
11804 * goops.[hc]: various {int,long} -> scm_bits_t changes.
11805
d69c867a 11806 * gh_data.c (gh_num2int): no loss of precision any more.
1be6b49c
ML
11807
11808 * gh.h (gh_str2scm): len: int -> size_t
11809 (gh_{get,set}_substr): start: int -> scm_bits_t,
11810 len: int -> size_t
11811 (gh_<num>2scm): n: int -> scm_bits_t
11812 (gh_*vector_length): return scm_[u]size_t, not unsigned long.
11813 (gh_length): return scm_bits_t, not unsigned long.
11814
11815 * gc.[hc]: various small changes relating to many things stopping
11816 being long and starting being scm_[u]bits_t instead.
11817 scm_mallocated should no longer wrap around.
11818
11819 * fports.h: type renaming:
11820 scm_fport -> scm_fport_t
11821 the old name is deprecated, all in-Guile uses changed.
11822
11823 * fports.c (fport_fill_input): count: int -> scm_bits_t
11824 (fport_flush): init_size, remaining, count: int -> scm_bits_t
11825
11826 * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr): removed
11827 those prototypes, as the functions they prototype don't exist.
11828
11829 * fports.c (default_buffer_size): int -> size_t
11830 (scm_fport_buffer_add): read_size, write_size: int -> scm_bits_t
11831 default_size: int -> size_t
11832 (scm_setvbuf): csize: int -> scm_bits_t
11833
11834 * fluids.c (n_fluids): int -> scm_bits_t
11835 (grow_fluids): old_length, i: int -> scm_bits_t
11836 (next_fluid_num, scm_fluid_ref, scm_fluid_set_x): n: int ->
11837 scm_bits_t
11838 (scm_c_with_fluids): flen, vlen: int -> scm_bits_t
11839
11840 * filesys.c (s_scm_open_fdes): changed calls to SCM_NUM2LONG to
11841 the new and shiny SCM_NUM2INT.
11842
11843 * extensions.c: extension -> extension_t (and made a typedef).
11844
11845 * eval.h (SCM_IFRAME): cast to scm_bits_t, not int. just so
11846 there are no nasty surprises if/when the various deeply magic tag
11847 bits move somewhere else.
11848
11849 * eval.c: changed the locals used to store results of SCM_IFRAME,
11850 scm_ilength and such to be of type scm_bits_t (and not int/long).
11851 (iqq): depth, edepth: int -> scm_bits_t
11852 (scm_eval_stack): int -> scm_bits_t
11853 (SCM_CEVAL): various vars are not scm_bits_t instead of int.
11854 (check_map_args, scm_map, scm_for_each): len: long -> scm_bits_t
11855 i: int -> scm_bits_t
11856
11857 * environments.c: changed the many calls to scm_ulong2num to
11858 scm_ubits2num.
11859 (import_environment_fold): proc_as_ul: ulong -> scm_ubits_t
11860
11861 * dynwind.c (scm_dowinds): delta: long -> scm_bits_t
11862
11863 * debug.h: type renaming:
11864 scm_debug_info -> scm_debug_info_t
11865 scm_debug_frame -> scm_debug_frame_t
11866 the old names are deprecated, all in-Guile uses changed.
11867 (scm_debug_eframe_size): int -> scm_bits_t
11868
11869 * debug.c (scm_init_debug): use scm_c_define instead of the
11870 deprecated scm_define.
11871
11872 * continuations.h: type renaming:
11873 scm_contregs -> scm_contregs_t
11874 the old name is deprecated, all in-Guile uses changed.
11875 (scm_contregs_t.num_stack_items): size_t -> scm_bits_t
11876 (scm_contregs_t.num_stack_items): ulong -> scm_ubits_t
11877
11878 * continuations.c (scm_make_continuation): change the type of
d69c867a 11879 stack_size from long to scm_bits_t.
1be6b49c
ML
11880
11881 * ports.h: type renaming:
11882 scm_port_rw_active -> scm_port_rw_active_t (and made a typedef)
11883 scm_port -> scm_port_t
11884 scm_ptob_descriptor -> scm_ptob_descriptor_t
11885 the old names are deprecated, all in-Guile uses changed.
11886 (scm_port_t.entry): int -> scm_bits_t.
11887 (scm_port_t.line_number): int -> long.
11888 (scm_port_t.putback_buf_size): int -> size_t.
11889
11890 * __scm.h (long_long, ulong_long): deprecated (they pollute the
d69c867a 11891 global namespace and have little value beside that).
1be6b49c
ML
11892 (SCM_BITS_LENGTH): new, is the bit size of scm_bits_t (i.e. of an
11893 SCM handle).
11894 (ifdef spaghetti): include sys/types.h and sys/stdtypes.h, if they
d69c867a 11895 exist (for size_t & ptrdiff_t).
1be6b49c
ML
11896 (scm_sizet): deprecated.
11897
11898 * Makefile.am (noinst_HEADERS): add num2integral.i.c
11899
a6219f22
MV
119002001-05-23 Marius Vollmer <mvo@zagadka.ping.de>
11901
11902 * snarf.h (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of
11903 SCM_VARIABLE_INIT since that it what it used to be.
11904
11905 * deprecation.c (scm_include_deprecated_features): Make docstring
9a5fa6e9 11906 ANSIsh. Thanks to Matthias Köppe!
a6219f22 11907
311b6a3c
MV
119082001-05-21 Marius Vollmer <mvo@zagadka.ping.de>
11909
9dfc4faa
MV
11910 * symbols.c (scm_mem2symbol): Re-introduce indirect cell. It is
11911 needed for weak-key hashtables.
11912
11913 * procs.c (scm_make_subr_with_generic): Add missing last argument
11914 in call to scm_c_define_gsubr_with_generic. Thanks to Ariel Rios.
11915
11916 * eval.c: Use SCM_EQ_P instead of `==' or `!=' in certain
11917 places. (scm_c_improper_memq): Return 1 instead of SCM_BOOL_T.
311b6a3c
MV
11918
11919 * eval.h (SCM_EVALIM2): Use SCM_EQ_P instead of `=='.
11920
2fc933fe
MV
119212001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
11922
57ae112d
MV
11923 * symbols.c (scm_mem2symbol): Call `scm_must_strndup' instead of
11924 `duplicate_string'. Do not use an indirect cell, store symbol
11925 directly in collision list of hash table.
11926 (duplicate_string): Removed.
58bee6a8 11927
57ae112d
MV
11928 * init.c (scm_init_guile_1): Call scm_init_extensions.
11929
11930 * Makefile.am: Add "extensions.c" and related files in all the
11931 right places.
11932
11933 * extensions.h, extension.c: New files.
11934
11935 * gc.h, gc.c (scm_must_strdup, scm_must_strndup): New.
11936
2fc933fe
MV
11937 * modules.h (scm_system_module_env_p): Move out of deprecated
11938 section.
11939
11940 * rw.h (scm_init_rw): Added prototype.
11941
11942 * gsubr.h, gsubr.c (scm_c_make_gsubr, scm_c_define_gsubr,
11943 scm_c_make_gsubr_with_generic, scm_c_define_gsubr_with_generic):
11944 New functions. They replace scm_make_gsubr and
11945 scm_make_gsubr_with_generic. The `make' variants only create the
11946 gsubr object, while the `define' variants also put it into the
11947 current module. Changed all callers.
11948 (scm_make_gsubr, scm_make_gsubr_with_generic): Deprecated.
11949
11950 * procs.h, procs.c (scm_c_make_subr, scm_c_define_subr,
11951 scm_c_make_subr_with_generic, scm_c_define_subr_with_generic): New
11952 functions. They replace scm_make_subr, scm_make_subr_opt and
11953 scm_make_subr_with_generic. The `make' variants only create the
11954 subr object, while the `define' variants also put it into the
11955 current module. Changed all callers.
11956 (scm_make_subr, scm_make_subr_opt, scm_make_subr_with_generic):
11957 Deprecated.
11958
11959 * eval.c, gc.c, gh_funcs.c, goops.c, macros.c, pairs.c, ramap.c,
11960 rdelim.c, rw.c, scmsigs.c, snarf.h, values.c: Changed according to
11961 the comments above.
58bee6a8 11962
18928596
NJ
119632001-05-19 Neil Jerram <neil@ossau.uklinux.net>
11964
11965 * throw.c (scm_lazy_catch): Slight docstring clarification.
11966
21a13beb
MV
119672001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
11968
e2b6ddc6
MV
11969 * throw.c: Lazy-catch handlers are no longer allowed to return.
11970 Fixed comments throughout.
11971 (scm_ithrow): Signal an error when a lazy-catch handler returns.
11972 Moved actual jump to jmpbuf into if-branch where the jmpbuf is
11973 recognized as such.
11974
21a13beb
MV
11975 * version.c (s_scm_micro_version): Fix typo in FUNC_NAME, it
11976 refered to s_scm_minor_version previously.
11977
11978 * modules.h, modules.c: Moved around a lot of code so that
11979 deprecated features appear at the bottom.
11980 (root_module_lookup_closure, scm_sym_app, scm_sym_modules,
11981 module_prefix, make_modules_in_var, beautify_user_module_x_var,
11982 scm_the_root_module, scm_make_module, scm_ensure_user_module,
11983 scm_load_scheme_module): Deprecated.
11984 (scm_system_module_env_p): Return SCM_BOOL_T directly for
11985 environments corresponding to the root module.
11986 (convert_module_name, scm_c_resolve_module,
11987 scm_c_call_with_current_module, scm_c_define_module,
11988 scm_c_use_module, scm_c_export): New.
11989 (the_root_module): New static variant of scm_the_root_module. Use
11990 it everywhere instead of scm_the_root_module.
58bee6a8 11991
21a13beb
MV
11992 * fluids.h, fluids.c (scm_internal_with_fluids): Deprecated.
11993 (scm_c_with_fluids): Renamed from scm_internal_with_fluids.
11994 (scm_c_with_fluid): New.
11995 (scm_with_fluids): Use scm_c_with_fluids instead of
11996 scm_internal_with_fluids.
58bee6a8 11997
21a13beb
MV
11998 * goops.h, goops.c (scm_init_goops_builtins): Renamed from
11999 `scm_init_goops'. Do not explicitly create/switch modules.
12000 Return SCM_UNSPECIFIED.
12001 (scm_init_goops): Only register `%init-goops-builtins' procedure.
12002 (scm_load_goops): Use scm_c_resolve_module instead of
12003 scm_resolve_module.
58bee6a8 12004
21a13beb
MV
12005 * init.c (scm_init_guile_1): Call `scm_init_goops' instead of
12006 `scm_init_oop_goops_goopscore_module'. Call `scm_init_rdelim' and
12007 `scm_init_rw' prior to loading the startup files.
12008
12009 * rdelim.h, rdelim.c: (scm_init_rdelim_builtins): Renamed from
12010 scm_init_rdelim. Do not explicitly create/switch modules.
12011 Return SCM_UNSPECIFIED.
12012 (scm_init_rdelim): Only register `%init-rdelim-builtins'
12013 procedure.
58bee6a8 12014
21a13beb
MV
12015 * rw.c (scm_init_rw_builtins): Renamed from scm_init_rw. Do not
12016 explicitly create/switch modules. Return SCM_UNSPECIFIED.
12017 (scm_init_rw): Only register `%init-rw-builtins' procedure.
12018
12019 * script.c (scm_shell): Evaluate the compiled switches in the
12020 current module, not in the root module.
12021
120222001-05-18 Marius Vollmer <mvo@zagadka.ping.de>
12023
12024 * fluids.c (scm_c_with_fluids): Rename from
12025 scm_internal_with_fluids.
12026 (scm_internal_with_fluids): Deprecated.
12027 (scm_c_with_fluid): New.
12028
09cb9e73
DH
120292001-05-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
12030
12031 * print.h (PRINTH, SCM_PRINT_H): Renamed PRINTH to SCM_PRINT_H.
12032
12033 (SCM_PORT_WITH_PS_PORT, SCM_PORT_WITH_PS_PS): Only pairs may be
12034 accessed with SCM_C[AD]R.
12035
12036 (SCM_COERCE_OUTPORT): Removed redundant SCM_NIMP test.
12037
c81ea65d
RB
120382001-05-16 Rob Browning <rlb@cs.utexas.edu>
12039
12040 * version.c (s_scm_major_version): doc fixes.
12041 (s_scm_minor_version): doc fixes.
12042 (s_scm_minor_version): new function.
12043
12044 * version.h (scm_init_version): new function.
12045
12046 * versiondat.h.in: add GUILE_MICRO_VERSION.
12047
887dfa7d
DH
120482001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
12049
12050 * deprecation.c (scm_init_deprecation): Renamed
12051 GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
12052
78930a69
MV
120532001-05-16 Marius Vollmer <mvo@zagadka.ping.de>
12054
12055 * Makefile.am (cpp_sig_symbols.c, cpp_err_symbols.c): Make
12056 dependent on cpp_cnvt.awk
12057
39cde5c5
MG
120582001-05-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12059
12060 * script.c (scm_compile_shell_switches): New command line option
12061 `--use-srfi' for loading a list of SRFIs on startup.
12062 (scm_shell_usage): Added `--use-srfi' to help message.
12063
f3f9dcbc
MV
120642001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
12065
78930a69 12066 Merged from mvo-vcell-cleanup-1-branch.
887dfa7d 12067
f3f9dcbc
MV
12068 The concept of vcells has been removed from Guile. With it,
12069 explicit obarrays and associated operations are gone. Use
12070 hashtables instead of obarrays.
887dfa7d 12071
f3f9dcbc
MV
12072 Throughout: use scm_sym2var instead of scm_sym2vcell and treat
12073 result as variable instead of vcell. Glocs no longer point to a
12074 vcell but to a variable. Use scm_c_define instead of
12075 scm_sysintern and treat the result as a variable (which it is),
12076 not a vcell.
887dfa7d 12077
f3f9dcbc
MV
12078 * variable.c, variable.h (SCM_VARVCELL, SCM_UDVARIABLEP,
12079 SCM_DEFVARIABLEP): Deprecated.
12080 (SCM_VARIABLE_REF, SCM_VARIABLE_SET, SCM_VARIABLE_LOC): New.
12081 (variable_print): Do not print name of variable.
12082 (variable_equalp): Compare values, not vcells.
12083 (anonymous_variable_sym): Removed.
12084 (make_vcell_variable): Removed.
12085 (make_variable): New, as replacement.
12086 (scm_make_variable, scm_make_undefined_variable): Do not take name
12087 hint parameter.
12088 (scm_variable_ref): Check for SCM_UNDEFINED and throw "unbound"
12089 error in that case.
12090 (scm_builtin_variable): Deprecated.
12091
12092 * symbols.c, symbols.h (scm_sym2vcell, scm_sym2ovcell_soft,
12093 scm_sym2ovcell, scm_intern_obarray_soft, scm_intern_obarray,
12094 scm_intern, scm_intern0, scm_sysintern0_no_module_lookup,
12095 scm_sysintern, scm_sysintern0, scm_symbol_value0,
12096 scm_string_to_obarray_symbol, scm_intern_symbol,
12097 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned,
12098 scm_symbol_bound_p, scm_symbol_set_x, scm_gentmp, gentmp_counter):
12099 Deprecated and moved to "symbols-deprecated.c".
12100 (copy_and_prune_obarray, scm_builtin_bindings): Removed.
12101 (scm_init_symbols): Call scm_init_symbols_deprecated.
12102 * symbols-deprecated.c: New file.
12103 * Makefile.am: Added symbols-deprecated.c and related files in all
12104 the right places.
887dfa7d 12105
f3f9dcbc
MV
12106 * snarf.h (SCM_VCELL, SCM_GLOBAL_VCELL, SCM_VCELL_INIT,
12107 SCM_GLOBAL_VCELL_INIT): Deprecated.
12108 (SCM_VARIABLE, SCM_GLOBAL_VARIABLE, SCM_VARIABLE_INIT,
12109 SCM_GLOBAL_VARIABLE_INIT): New, as replacement. Changed all uses.
887dfa7d 12110
f3f9dcbc
MV
12111 * print.c (scm_iprin1): Use scm_module_reverse_lookup instead of
12112 SCM_GLOC_SYM.
12113
12114 * evalext.c, filesys.c, fports.c, gdbint.c, gh_data.c, gsubr.c,
12115 hooks.c, load.c, numbers.c, objects.c, ports.c, posix.c, procs.c,
12116 ramap.c, random.c, read.c, regex-posix.c, scmsigs.c, script.c,
12117 socket.c, srcprop.c, stacks.c, stime.c, struct.c, tag.c, throw.c:
12118 Changed according to the `throughout' comments.
12119
12120 * modules.h, modules.c (scm_module_system_booted_p): Changed type
12121 to `int'.
12122 (scm_module_type): Removed.
12123 (the_root_module): Renamed to the_root_module_var. Now points to
12124 a variable instead of a vcell. Updated all uses.
12125 (scm_the_root_module): Return SCM_BOOL_F when module systems
12126 hasn't been booted yet.
12127 (SCM_VALIDATE_STRUCT_TYPE): Removed.
12128 (scm_post_boot_init_modules): Made static.
12129 (scm_set_current_module): Call scm_post_boot_init_modules on first
12130 call.
12131 (make_modules_in, beautify_user_module_x, resolve_module,
12132 try_module_autoload, module_make_local_var_x): Tacked on "_var"
12133 suffix. Now point to variables instead of vcells. Updated all
12134 uses.
12135 (scm_module_lookup_closure): Deal with the module being SCM_BOOL_F
12136 and return SCM_BOOL_F in that case.
12137 (scm_module_transformer): Likewise.
12138 (sym_module, scm_lookup_closure_module, scm_env_module): New.
12139 (SCM_F_EVAL_CLOSURE_INTERFACE, SCM_EVAL_CLOSURE_INTERFACE_P): New.
12140 (scm_eval_closure_lookup): Do not allow new definitions when
12141 `interface' flag is set.
12142 (scm_standard_interface_eval_closure): New.
12143 (scm_pre_modules_obarray, scm_sym2var, scm_module_lookup,
12144 scm_lookup, scm_module_define, scm_define, scm_c_module_lookup,
12145 scm_c_lookup, scm_c_module_define, scm_c_define,
12146 scm_module_reverse_lookup, scm_get_pre_modules_obarray,
12147 scm_modules_prehistory): New.
12148 (scm_post_boot_init_modules): Use scm_c_define and scm_c_lookup
12149 instead of scm_intern0.
887dfa7d 12150
f3f9dcbc
MV
12151 * macros.c (scm_make_synt): Return SCM_UNSPECIFIED instead of the
12152 symbol.
12153
12154 * keywords.c (s_scm_make_keyword_from_dash_symbol): Use a regular
12155 hashtable operations to maintain the keywords, not obarray ones.
12156
12157 * init.c (scm_load_startup_files): Do not call
12158 scm_post_boot_init_modules. This is done by
12159 scm_set_current_module now.
12160 (scm_init_guile_1): Call scm_modules_prehistory. Call
12161 scm_init_variable early on.
12162
12163 * goops.c (s_scm_sys_goops_loaded): Get
12164 var_compute_applicable_methods from scm_sym2var, not from a direct
12165 invocation of scm_goops_lookup_closure.
12166
12167 * gh_funcs.c (gh_define): Return SCM_UNSPECIFIED instead of vcell.
12168
12169 * gc.c: Added simple debugging hack to mark phase of GC: When
12170 activated, do not tail-call scm_gc_mark. This gives nice
12171 backtraces.
12172 (scm_unhash_name): Removed.
12173
12174 * feature.c (features): Renamed to features_var. Now points to a
12175 variable instead of a vcell. Updated all uses.
12176
12177 * eval.h (SCM_TOP_LEVEL_LOOKUP_CLOSURE): Use
12178 `scm_current_module_lookup_closure' which will do the right thing
12179 when the module system hasn't been booted yet.
12180 (SCM_GLOC_SYM): Removed.
12181 (SCM_GLOC_VAR, SCM_GLOC_SET_VAL): New.
12182 (SCM_GLOC_VAL, SCM_GLOC_LOC): Reimplemented in terms of variables.
887dfa7d 12183
f3f9dcbc
MV
12184 * eval.c (scm_lookupcar, scm_lookupcar1): Deal with variables
12185 instead of with vcells. Do not overwrite `var' with the result of
12186 the lookup, use the new `real_var' instead. Remove `var2' in
12187 exchange (which was only used with threads).
12188 (sym_three_question_marks): New.
12189 (scm_unmemocar): Use `scm_module_reverse_lookup' instead of
12190 `SCM_GLOC_SYM'.
12191 (scm_lisp_nil, scm_lisp_t): Directly define as symbols.
12192 (scm_m_atfop): Expect the function definition to be a variable
12193 instead of a vcell.
12194 (scm_macroexp): Do not use `unmemocar', explicitely remember the
12195 symbol instead.
12196 (scm_unmemocopy): Removed thoughts about anti-macro interface.
12197 (scm_eval_args): Use more explicit code in the gloc branch of the
12198 atrocious struct ambiguity test. The optimizer will sort this
12199 out.
12200 (scm_deval_args): Likewise.
12201 (SCM_CEVAL): Likewise. Also, do not use unmemocar, explicitely
12202 remember the symbol instead. Added some comments where
12203 scm_tc3_cons_gloc really exclusively refers to structs.
12204 (scm_init_eval): Use scm_define to initialize "nil" and "t" to
12205 scm_lisp_nil and scm_lisp_t, respectively. Use scm_define instead
12206 of scm_sysintern in general.
12207
12208 * dynwind.c (scm_swap_bindings): Use SCM_GLOC_SET_VAL instead of
12209 explicit magic.
12210
12211 * debug.c (s_scm_make_gloc): Only allow proper variables, no
12212 pairs. Put the variable directly in the gloc.
12213 (s_scm_gloc_p): Use `scm_tc3_cons_gloc' instead of the magic `1'.
12214 (scm_init_debug): Use scm_c_define instead scm_sysintern.
12215
12216 * cpp_cnvt.awk: Emit "scm_c_define" instead of "scm_sysintern".
12217
12218 * backtrace.h, backtrace.c (scm_the_last_stack_fluid): Renamed to
12219 scm_the_last_stack_fluid_var. It now points to a variable instead
12220 of a vcell. Updated all uses.
12221 (scm_has_shown_backtrace_hint_p_var): Now points to a variable
12222 instead of a vcell. Updated all uses.
12223
12224 * _scm.h: Include "variables.h" and "modules.h" since almost
12225 everybody needs them now.
12226
12227 * root.h (scm_symhash, scm_symhash_vars): Removed.
12228 * gc.c (scm_init_storage): Do not initialize them.
887dfa7d 12229
7c33806a
DH
122302001-05-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
12231
12232 * eval.c (scm_init_eval): Initialize scm_undefineds and
58bee6a8 12233 scm_listofnull.
7c33806a
DH
12234
12235 * gc.c (scm_debug_newcell, scm_debug_newcell2): Fixed to behave
12236 like the SCM_NEWCELL macro counterparts.
12237
12238 (scm_init_storage, scm_init_gc): Moved initialization of
12239 scm_tc16_allocated from scm_init_gc to scm_init_storage.
12240
12241 (scm_init_storage): Moved initialization of scm_undefineds and
12242 scm_listofnull to eval.c, initializion of scm_nullstr to
12243 strings.c, initializion of scm_nullvect to vectors.c.
12244
12245 * gc.h (SCM_NEWCELL, SCM_NEWCELL2): Prefer SCM_NULLP over
12246 SCM_IMP, as in scm_debug_newcell and scm_debug_newcell2.
12247
12248 * init.c (scm_init_guile_1): Reordered some initializations and
12249 added dependcy information comments.
12250
12251 * load.c (scm_init_load): Use scm_nullstr.
12252
12253 * strings.c (scm_init_strings): Initialize scm_nullstr.
12254
12255 * vectors.c (scm_init_vectors): Initialize scm_nullvect.
12256
11bbab47
MV
122572001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
12258
12259 * values.c (print_values): Print as a unreadable object, not as
9a5fa6e9 12260 multiple lines. Thanks to Matthias Köppe!
11bbab47 12261
5cd06d5e
DH
122622001-05-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
12263
12264 * deprecation.c: Fixed copyright date.
12265
12266 * deprecation.h (DEPRECATION_H, SCM_DEPRECATION_H): Renamed
12267 DEPRECATION_H to SCM_DEPRECATION_H.
12268
32bac999
TTN
122692001-05-10 Thien-Thi Nguyen <ttn@revel.glug.org>
12270
12271 * guile-doc-snarf.in: Update copyright.
12272 Fix relative path bug. Thanks to Sergey Poznyakoff.
12273
c9dcc5ae
MV
122742001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
12275
12276 * ports.c (scm_port_revealed, scm_set_port_revealed_x): Only
12277 accept open ports. Thanks to Quetzalcoatl Bradley!
12278
7c582ec9
MG
122792001-05-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12280
12281 * procs.c: Increased `scm_subr_table_room' to 800 because Guile now
12282 has 779 primitives on startup.
12283
284ab601
MV
122842001-05-09 Marius Vollmer <mvo@zagadka.ping.de>
12285
12286 * eval.c (scm_i_eval): Copy expression before passing it to
12287 SCM_XEVAL. The copy operation was removed unintendedly during my
12288 change on 2001-03-25.
12289
910d1e40
ML
122902001-05-09 Michael Livshin <mlivshin@bigfoot.com>
12291
9a5fa6e9 12292 from Matthias Köppe (thanks!):
910d1e40
ML
12293
12294 * ports.c (scm_c_read): pointer arithmetic on void pointers isn't
12295 portable.
12296
12297 * deprecation.c (s_scm_include_deprecated_features): ANSI'fied the
12298 docstring.
12299
56e55ac7
DH
123002001-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
12301
12302 * gc.c (scm_init_gc): Added FIXME comment.
12303
12304 * hooks.c: Since hooks don't have a name any more, it is not
12305 necessary to include objprop.h.
12306
12307 (hook_print, scm_add_hook_x): Replace SCM_NFALSEP by !SCM_FALSEP.
12308
12309 (symbol_name, scm_make_hook_with_name): Removed.
12310
12311 (scm_create_hook): Don't set the hook's name property.
12312
12313 * hooks.h (HOOKSH, SCM_HOOKS_H): Renamed HOOKSH to SCM_HOOKS_H.
12314
12315 (SCM_HOOK_NAME, scm_make_hook_with_name): Removed.
12316
12317 * init.c (scm_init_guile_1): Hooks don't use objprops any more.
12318
12319 * numbers.c (SCM_FLOBUFLEN, FLOBUFLEN, scm_number_to_string,
12320 scm_print_real, scm_print_complex): Renamed SCM_FLOBUFLEN to
12321 FLOBUFLEN and define it unconditionally.
12322
d204b24c
MV
123232001-05-07 Marius Vollmer <mvo@zagadka.ping.de>
12324
438201b4
MV
12325 * gh_data.c (gh_lookup): Call gh_module_lookup with
12326 `scm_current_module ()', not `#f'.
12327 (gh_module_lookup): Expect a module instead of an obarray as first
12328 argument and do lookup in that module.
56e55ac7 12329
d204b24c
MV
12330 * ramap.c (raeql_1): Do not call scm_uniform_vector_length on
12331 arrays. The length of array is already determined differently and
12332 scm_uniform_vector_length does not work on arrays.
12333
26c1d549
MV
123342001-05-06 Marius Vollmer <mvo@zagadka.ping.de>
12335
fe7c2f88
MV
12336 * snarf.h (SCM_FUNC_CAST_ARBITRARY_ARGS): Use "SCM (*)()" for C++
12337 as well. "SCM (*)(...)" does not work on RedHat 7.1.
12338
26c1d549
MV
12339 * __scm.h (SCM_WTA_DISPATCH_0): Removed ARG and POS parameters,
12340 they are not used. Changed `wrong type' error into `wrong num
12341 args' error. Changed all callers.
56e55ac7 12342
26c1d549
MV
12343 * numbers.c (scm_difference): Call SCM_WTA_DISPATCH_0 when zero
12344 arguments are supplied.
12345
1c938eb8
TTN
123462001-05-05 Thien-Thi Nguyen <ttn@revel.glug.org>
12347
12348 * regex-posix.c (scm_regexp_exec): Expand docstring to briefly
12349 describe `regexp/notbol' and `regexp/noteol' execution flags.
12350
3a6379f7
TTN
12351 * strop.c (scm_substring_move_x): Doc fix; nfc.
12352
c10ecc4c
MV
123532001-05-05 Marius Vollmer <mvo@zagadka.ping.de>
12354
12355 * objects.c, objects.h (scm_valid_object_procedure_p): New.
12356 (scm_set_object_procedure_x): Use it to check argument. Fix
12357 docstring.
12358
12359 * evalext.c (scm_definedp): Fix docstring.
12360
a57a0b1e
GH
123612001-05-05 Gary Houston <ghouston@arglist.com>
12362
12363 * socket.c: use HAVE_IPV6 instead of AF_INET6 to enable IPv6
12364 support.
12365
7a095584
NJ
123662001-05-04 Neil Jerram <neil@ossau.uklinux.net>
12367
12368 * eval.c (scm_promise_p), list.c (scm_append_x, scm_reverse_x),
12369 symbols.c (scm_symbol_to_string), vports.c (scm_make_soft_port):
12370 Change R4RS references to R5RS.
12371
12372 * guile-snarf.awk.in: Fixes so that (i) blank lines in the
12373 docstring source are correctly reproduced in the output (ii)
12374 we don't anymore get occasional trailing quotes. Also reorganized
12375 and commented the code a little.
12376
12377 * scmsigs.c (scm_raise), throw.c (scm_throw): Docstring format
12378 fixes.
12379
dd2a6f3a
MG
123802001-05-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12381
12382 * strop.c (scm_string_split): New procedure.
12383
12384 * strop.h (scm_string_split): Added prototype.
12385
00120130
GH
123862001-05-04 Gary Houston <ghouston@arglist.com>
12387
12388 * socket.c: define uint32_t if netdb.h doesn't. thanks to
12389 Dale P. Smith.
12390
b65e6bfe
MV
123912001-05-02 Marius Vollmer <mvo@zagadka.ping.de>
12392
12393 * rw.c: Include "modules.h" and "strports.h".
12394
12395 * net_db.h (scm_gethost): Added prototype.
12396
12397 * deprecation.h, deprecation.c: New.
12398 * Makefile.am (libguile_la_SOURCES): Added "deprecation.c".
12399 (DOT_X_FILES): Added "deprecation.x".
12400 (modinclude_HEADERS): Added "deprecation.h".
12401
12402 * init.c: Include "deprecation.h".
12403 (scm_init_guile_1): Call scm_init_deprecation.
1c938eb8 12404
b65e6bfe
MV
124052001-05-01 Marius Vollmer <mvo@zagadka.ping.de>
12406
12407 * gh.h (gh_init_guile, gh_make_string, gh_string_length,
12408 gh_string_ref, gh_string_set_x, gh_substring, gh_string_append):
12409 New.
12410
b0e5fd8c
GH
124112001-04-29 Gary Houston <ghouston@arglist.com>
12412
12413 * rw.c: new file, implementing C part of module (ice-9 rw).
12414 (scm_read_string_x_partial): moved from ioext.c
12415 (scm_init_rw): new proc.
12416 * rw.h: new file.
12417 init.c: include rw.h and call scm_init_rw.
12418 Makefile.am: include rw.c and rw.h.
12419
0b2da99c
RB
124202001-04-28 Rob Browning <rlb@cs.utexas.edu>
12421
12422 * numbers.c: enabled local definition of SCM_FLOBUFLEN until we
12423 know what's supposed to happen to it.
12424
12425 * list.h (scm_list_star): deprecation expired - removed.
12426
12427 * numbers.h (scm_dblproc): deprecation expired - removed.
12428 (SCM_UNEGFIXABLE): deprecation expired - removed.
12429 (SCM_FLOBUFLEN): deprecation expired - removed.
12430 (SCM_INEXP): deprecation expired - removed.
12431 (SCM_CPLXP): deprecation expired - removed.
12432 (SCM_REAL): deprecation expired - removed.
12433 (SCM_IMAG): deprecation expired - removed.
12434 (SCM_REALPART): deprecation expired - removed.
12435 (scm_makdbl): deprecation expired - removed.
12436 (SCM_SINGP): deprecation expired - removed.
12437 (SCM_NUM2DBL): deprecation expired - removed.
12438 (SCM_NO_BIGDIG): deprecation expired - removed.
12439
12440 * tags.h (SCM_DOUBLE_CELLP): deprecation expired - removed.
12441 (scm_tc_dblr): deprecation expired - removed.
12442 (scm_tc_dblc): deprecation expired - removed.
12443 (scm_tc16_flo): deprecation expired - removed.
12444 (scm_tc_flo): deprecation expired - removed.
12445
12446 * tag.h (scm_tag): deprecation expired - removed.
12447
12448 * tag.c: (scm_tag): deprecation expired - removed.
12449
12450 * ioext.c: (scm_fseek): deprecation expired - removed.
12451
12452 * ioext.h (scm_fseek): deprecation expired - removed.
12453
12454 * gh_data.c (gh_int2scmb): deprecation expired - removed.
12455
12456 * gh.h (gh_int2scmb): deprecation expired - removed.
12457
e3334972
NJ
124582001-04-28 Neil Jerram <neil@ossau.uklinux.net>
12459
12460 * stacks.c (scm_make_stack): Fix typo in docstring.
12461
a0f979ac
RB
124622001-04-27 Rob Browning <rlb@cs.utexas.edu>
12463
12464 * error.c (scm_sysmissing): deprecation expired - removed.
12465
12466 * error.h (scm_sysmissing): deprecation expired - removed.
12467
12468 * gc.c
12469 (scm_init_gc): gc-thunk deprecation expired - removed.
12470 (scm_gc_vcell): deprecation expired - removed.
12471 (gc_async_thunk): scm_gc_vcell related code removed.
12472
12473 * vectors.h (SCM_NVECTORP): deprecation expired - removed.
12474
12475 * strings.h
12476 (SCM_NSTRINGP): deprecation expired - removed.
12477 (SCM_NRWSTRINGP): deprecation expired - removed.
12478
12479 * continuations.h (SCM_SETJMPBUF): deprecation expired - removed.
12480
12481 * chars.h
12482 (SCM_ICHRP): deprecation expired - removed.
12483 (SCM_ICHR): deprecation expired - removed.
12484 (SCM_MAKICHR): deprecation expired - removed.
12485
12486 * ports.h
12487 (SCM_INPORTP): deprecation expired - removed.
12488 (SCM_OUTPORTP): deprecation expired - removed.
12489
253081cf
MV
124902001-04-25 Marius Vollmer <mvo@zagadka.ping.de>
12491
12492 * modules.c (scm_module_type): New.
12493 (scm_post_boot_init_modules): Initialize from Scheme value.
12494 (the_module, scm_current_module, scm_init_modules): the_module is
12495 now a C only fluid.
12496 (scm_current_module): Export to Scheme.
12497 (scm_set_current_module): Do not call out to Scheme, do all the
12498 work in C. Export procedure to Scheme. Only accept modules, `#f'
12499 is no longer valid as the current module. Only set
12500 scm_top_level_lookup_closure_var and scm_system_transformer when
12501 they are not deprecated.
12502 (scm_module_transformer, scm_current_module_transformer): New.
12503
12504 * modules.h (scm_module_index_transformer, SCM_MODULE_TRANSFORMER,
12505 scm_current_module_transformer, scm_module_transformer): New.
1c938eb8 12506
253081cf
MV
12507 * gh_data.c: Removed FIXME comment about gh_lookup returning
12508 SCM_UNDEFINED. That's the right thing to do.
12509
12510 * eval.h, eval.c (scm_system_transformer): Deprecated by moving it
12511 into the conditionally compiled sections.
12512 * eval.c (scm_primitive_eval_x, scm_primitive_eval): Use
12513 scm_current_module_transformer instead of scm_system_transformer.
12514 * init.c (start_stack): Move initialization of
12515 scm_system_transformer to the deprecated section.
1c938eb8 12516
1f7f9ed4
NJ
125172001-04-22 Neil Jerram <neil@ossau.uklinux.net>
12518
12519 * throw.c (scm_throw): Correct docstring.
12520
66c73b76
GH
125212001-04-22 Gary Houston <ghouston@arglist.com>
12522
eefae538
GH
12523 * socket.c: attempted to improve the docstrings slightly.
12524
66c73b76
GH
12525 * net_db.c: remove bogus "close" declaration.
12526 (inet_aton declaration, scm_inet_aton, scm_inet_ntoa,
12527 scm_inet_netof, scm_lnaof, scm_inet_makeaddr, INADDR_ANY etc.):
12528 moved to socket.c.
12529 * net_db.h: declarations moved too.
12530
12531 * socket.c (scm_htonl, scm_ntohl): use uint32_t instead of unsigned
12532 long.
12533 (ipv6_net_to_num, ipv6_num_to_net): new static procedures.
12534 (VALIDATE_INET6): new macro.
12535 (scm_inet_pton, scm_inet_ntop): new procedures, implementing
12536 inet-pton and inet-ntop.
12537 (scm_fill_sockaddr): use VALIDATE_INET6 and ipv6_num_to_net.
12538 (scm_addr_vector): use ipv6_net_to_num.
1c938eb8 12539
7a7f7c53
DH
125402001-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
12541
12542 * eq.c (scm_equal_p), ramap.c (scm_init_ramap): Don't compute the
12543 smob number explicitly. Use SCM_TC2SMOBNUM instead.
12544
12545 * gc.c (MARK, scm_gc_sweep): Only check for illegal heap objects
12546 when compiled in debug mode.
12547
12548 (scm_gc_sweep): Only call smob's free function if it is defined.
12549
12550 * print.c (scm_iprin1): No need to check for validity of smob
12551 type or existence of print function.
12552
12553 * smob.[ch] (scm_smobs): Made into a fixed size global array.
12554 Resizing will not work well with preemptive threading.
12555
12556 * smob.c (scm_smob_print): Don't use SCM_CDR to access smob data.
12557
12558 (scm_make_smob_type): Extracted initialization of smob
12559 descriptors to scm_smob_prehistory. Don't use scm_numsmob outside
12560 of the critical section.
12561
12562 (scm_smob_prehistory): Initialize all smob descriptors. By
12563 default, don't assign a smob free function: Most smob types don't
12564 need one.
12565
12566 * smob.h (SMOBH, SCM_SMOB_H): Renamed SMOBH to SCM_SMOB_H.
12567
e1368a8d
GH
125682001-04-21 Gary Houston <ghouston@arglist.com>
12569
12570 * socket.c (FLIP_NET_HOST_128): new macro.
12571 (scm_fill_sockaddr): use new macro.
12572 (scm_addr_vector): completed IPv6 address support. added const
12573 to the address parameter.
12574
5a525b84
GH
125752001-04-20 Gary Houston <ghouston@arglist.com>
12576
12577 * socket.c (scm_fill_sockaddr): call htons for sin6_port.
12578 Don't assign sin6_scope_id in structure unless HAVE_SIN6_SCOPE_ID
12579 is defined.
12580 (scm_addr_vector): use a switch instead of multiple if statements.
12581 Add support for IPv6 (incomplete) .
e1368a8d 12582 MAX_ADDR_SIZE: increase to size of struct sockaddr_in6 if needed.
5a525b84 12583
1a551638
DH
125842001-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
12585
12586 * struct.c (scm_free_structs): Only pairs may be accessed with
12587 SCM_C[AD]R.
12588
c07b3fef
MD
125892001-04-19 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
12590
a9d861e3
MD
12591 * unif.h (SCM_ARRAY_CONTIGUOUS): Reintroduced as deprecated.
12592
c07b3fef
MD
12593 * __scm.h (SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1,
12594 SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_n): Inserted required
12595 parentheses in order to get the correct associativity.
12596
af7546eb
DH
125972001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12598
12599 * unif.c (scm_array_to_list): Added missing handling of arrays of
12600 bytes. Thanks to Masao Uebayashi for the bug report.
12601
4daecfee
DH
126022001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12603
12604 * debug.c (scm_procedure_source): Use SCM_CLOSURE_FORMALS more
12605 consistently.
12606
726d810a
DH
126072001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12608
12609 * procs.h (SCM_CLOSURE_FORMALS): New macro.
12610
12611 * debug.c (scm_procedure_source), eval.c (scm_badformalsp,
12612 SCM_CEVAL, SCM_APPLY), goops.c (get_slot_value, set_slot_value),
1c938eb8 12613 procprop.c (scm_i_procedure_arity), sort.c (closureless): Use
726d810a
DH
12614 SCM_CLOSURE_FORMALS.
12615
12616 * eval.c (scm_badformalsp, SCM_CEVAL), procprop.c
12617 (scm_i_procedure_arity): Prefer stronger predicates like
12618 SCM_NULLP or SCM_FALSEP over SCM_IMP.
12619
12620 * macros.c (macro_print): Extracted macro printing code from
12621 print.c and simplified it.
12622
12623 (scm_macro_type): Use SCM_MACRO_TYPE;
12624
12625 (scm_init_macros): Use macro_print for printing macros.
12626
12627 * print.c (scm_print_opts): Improved option documentation.
12628
12629 (scm_iprin1): Extracted printing of macros to macros.c.
12630 Simplified printing of ordinary closures.
12631
12632 * procs.c (scm_thunk_p): Fixed handling of closures. Thanks to
12633 Martin Grabmueller for the bug report.
12634
e038c042
DH
126352001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12636
12637 This patch eliminates some further applications of SCM_C[AD]R to
12638 non pair cells.
12639
12640 * gc.h (SCM_SETAND_CAR, SCM_SETOR_CAR): Deprecated. These have
12641 never been applied to real pairs.
12642
12643 * srcprop.h (SCM_SOURCE_PROPERTY_FLAG_BREAK): Added.
12644
12645 (SRCPROPBRK): Use SCM_SOURCE_PROPERTY_FLAG_BREAK.
12646
12647 * unif.h (SCM_ARRAY_CONTIGUOUS, SCM_ARRAY_FLAG_CONTIGUOUS,
12648 SCM_ARRAY_CONTP): Renamed SCM_ARRAY_CONTIGUOUS to
12649 SCM_ARRAY_FLAG_CONTIGUOUS and use it.
12650
12651 (SCM_SET_ARRAY_CONTIGUOUS_FLAG, SCM_CLR_ARRAY_CONTIGUOUS_FLAG):
12652 Added.
12653
12654 * srcprop.h (SRCPROPH), unif.h (UNIFH): Renamed to
12655 SCM_SOURCE_PROPERTIES_H and SCM_UNIFORM_VECTORS_H, respectively.
12656
12657 * srcprop.h (SETSRCPROPBRK, CLEARSRCPROPBRK), unif.c
12658 (scm_dimensions_to_uniform_array, scm_ra_set_contp): Don't use
12659 SCM_SET{AND,OR}_CAR.
12660
3453619b
GH
126612001-04-17 Gary Houston <ghouston@arglist.com>
12662
12663 * some initial support for IPv6:
1c938eb8 12664
3453619b
GH
12665 * socket.c (scm_fill_sockaddr): improve the argument validation.
12666 don't allocate memory until all args are checked. instead of
12667 unconditional memset of soka, try setting sin_len to 0 if
12668 SIN_LEN is defined. add support for AF_INET6. define FUNC_NAME.
12669 (scm_socket, scm_connect): extend docstrings for IPv6.
12670 (scm_init_socket): intern AF_INET6 and PF_INET6.
12671
216eedfc
DH
126722001-04-17 Niibe Yutaka <gniibe@m17n.org>
12673
12674 * srcprop.c (scm_make_srcprops): Added SCM_ALLOW_INTS which
12675 matches SCM_DEFER_INTS at the beginning of the function.
12676
12677 * mallocs.c (scm_malloc_obj): Remove un-matched SCM_ALLOW_INTS.
12678
12679 * gc.c (scm_igc): Unconditionally call
12680 SCM_CRITICAL_SECTION_START/END.
12681
12682 * fluids.c (next_fluid_num): Unconditionally call
12683 SCM_CRITICAL_SECTION_START/END.
12684 (s_scm_make_fluid): Remove un-matched SCM_DEFER_INTS.
12685
12686 * coop-defs.h (SCM_THREAD_DEFER, SCM_THREAD_ALLOW,
12687 SCM_THREAD_REDEFER, SCM_THREAD_REALLOW_1, SCM_THREAD_REALLOW_2):
12688 Removed.
12689
12690 * __scm.h (SCM_CRITICAL_SECTION_START, SCM_CRITICAL_SECTION_END):
12691 Defined as nothing for the case of !defined(USE_THREADS).
12692 (SCM_THREAD_DEFER, SCM_THREAD_ALLOW, SCM_THREAD_REDEFER):
12693 Removed.
12694 (<stdio.h>): Include when (SCM_DEBUG_INTERRUPTS == 1).
12695 (SCM_CHECK_NOT_DISABLED, SCM_CHECK_NOT_ENABLED): Print FILE and
12696 LINE.
12697 (SCM_DEFER_INTS, SCM_ALLOW_INTS_ONLY, SCM_ALLOW_INTS,
12698 SCM_REDEFER_INTS, SCM_REALLOW_INTS): Don't use
12699 SCM_THREAD_DEFER/SCM_THREAD_ALLOW. Instead, use
12700 SCM_CRITICAL_SECTION_START/END.
12701 (SCM_REALLOW_INTS: Bug fix. Don't call
12702 SCM_THREAD_SWITCHING_CODE.
12703 (SCM_TICK): Don't use SCM_DEFER_INTS/SCM_ALLOW_INTS. Instead, use
12704 SCM_THREAD_SWITCHING_CODE directly.
12705 (SCM_ENTER_A_SECTION): Unconditionally use
12706 SCM_CRITICAL_SECTION_START/END. (was:
12707 SCM_DEFER_INTS/SCM_ALLOW_INTS when SCM_POSIX_THREADS defined).
12708
127092001-04-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
12710
12711 * __scm.h (SCM_CAREFUL_INTS, SCM_DEBUG_INTERRUPTS): Replaced the
12712 macro SCM_CAREFUL_INTS by the macro SCM_DEBUG_INTERRUPTS and
12713 allowed to explicitly set this macro via the CFLAGS variable
12714 during make.
12715
12716 * fluids.c (next_fluid_num), gc.c (scm_igc), coop-defs.h
12717 (SCM_THREAD_CRITICAL_SECTION_START,
12718 SCM_THREAD_CRITICAL_SECTION_END): Renamed
12719 SCM_THREAD_CRITICAL_SECTION_START/END to
12720 SCM_CRITICAL_SECTION_START/END.
12721
f22ed5a0
KN
127222001-04-11 Keisuke Nishida <kxn30@po.cwru.edu>
12723
12724 * debug-malloc.c (grow, scm_debug_malloc_prehistory): Use memset
12725 instead of bzero.
1c938eb8 12726
f22ed5a0 12727 * coop.c, iselect.c (FD_ZERO_N): Unconditionally use memset.
1c938eb8 12728 (MISSING_BZERO_DECL): Remove the declaration.
f22ed5a0
KN
12729
12730 Thanks to NIIBE Yutaka.
12731
508ded1c
MD
127322001-04-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
12733
a087ba81
MD
12734 * init.c, goops.c, goops.h: Reverted change of 2001-03-29. (The
12735 goops module should be registered in order to work for an
12736 application which uses libguile statically linked.)
508ded1c 12737
e4b265d8
DH
127382001-04-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
12739
12740 * numbers.[ch] (scm_num2long, scm_num2long_long,
12741 scm_num2ulong_long, scm_num2ulong): Argument position is an
12742 unsigned integer.
12743
12744 * environments.c (eval_environment_folder,
12745 import_environment_folder), gh_data.c (gh_scm2longs,
12746 gh_scm2floats, gh_scm2doubles): Distinguish between 0 and NULL
12747 for integers and pointers, respectively.
12748
12749 * gh_data.c (gh_scm2ulong, gh_scm2long, gh_scm2int), socket.c
12750 (scm_fill_sockaddr), unif.c (scm_array_set_x), validate.h
12751 (SCM_NUM2ULONG, SCM_NUM2LONG, SCM_NUM2LONG_DEF,
12752 SCM_NUM2LONG_LONG): Don't pass argument positions as pointers.
12753
12754 * filesys.c (scm_open_fdes, scm_open), net_db (scm_inet_ntoa,
12755 scm_inet_netof, scm_lnaof, scm_gethost, scm_getproto), posix.c
12756 (scm_utime), ramap.c (scm_array_fill_int), scmsigs.c
12757 (scm_sigaction), socket.c (scm_htonl, scm_ntohl, scm_sendto),
12758 stime.c (scm_localtime, scm_gmtime), struct.c (scm_struct_set_x),
12759 validate.h (SCM_VALIDATE_LONG_COPY): Whitespace fixes.
12760
89d04205
NJ
127612001-04-09 Neil Jerram <neil@ossau.uklinux.net>
12762
12763 * strings.c (scm_read_only_string_p): Update docstring to reflect
12764 current (non-)usage of "read only" strings.
40f83c3e
NJ
12765 (scm_make_shared_substring): Clarify docstring by changing
12766 "semantics" to "arguments".
89d04205 12767
4d66be54
MG
127682001-04-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12769
12770 * hooks.c (scm_make_hook, scm_make_hook_with_name),
12771 (scm_hook_p, scm_hook_empty_p, scm_run_hook): Docstring
12772 improvements.
12773
1e6808ea
MG
127742001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12775
12776 The following changes make the documentation more consistent.
1c938eb8 12777
1e6808ea
MG
12778 * rdelim.c (scm_write_line), posix.c (scm_utime), ports.c
12779 (scm_seek), net_db.c (scm_inet_aton, scm_inet_ntoa),
12780 (scm_inet_netof, scm_lnaof, scm_inet_makeaddr), ioext.c
12781 (scm_ftell): Changed @smalllisp ... @end smalllisp to @lisp
12782 ... @end lisp.
12783
12784 * vports.c (scm_make_soft_port), version.c (scm_version), unif.c
12785 (scm_array_dimensions, scm_make_shared_array),
12786 (scm_transpose_array, scm_enclose_array, scm_bit_count_star),
12787 throw.c (scm_catch), struct.c (scm_make_vtable_vtable), strop.c
12788 (scm_string_rindex, scm_string_index, scm_substring_fill_x),
12789 (scm_string_null_p), strings.c (scm_read_only_string_p), root.c
12790 (scm_call_with_dynamic_root), ramap.c (scm_array_index_map_x),
12791 posix.c (scm_mknod), numbers.c (scm_logtest, scm_logbit_p),
12792 macros.c (scm_makmmacro), list.c (scm_append), environments.c
12793 (scm_environment_fold), dynwind.c (s_scm_dynamic_wind): Changed
12794 @example ... @end example to @lisp ... @end lisp.
12795
12796 * weaks.c (scm_weak_vector): Corrected docstring.
12797
12798 * hashtab.c (scm_hashq_ref, scm_hashq_set_x, scm_hashq_remove_x),
12799 (scm_hashv_ref, scm_hashv_set_x, scm_hashv_remove_x),
12800 (scm_hash_ref, scm_hash_set_x, scm_hash_remove_x, scm_hashx_ref),
12801 (scm_hashx_set_x, scm_hashx_get_handle),
12802 (scm_hashx_create_handle_x), regex-posix.c (scm_make_regexp),
12803 (scm_regexp_exec, scm_regexp_p), numbers.c (scm_logtest),
12804 vectors.c (scm_vector_fill_x), strings.c
12805 (scm_make_shared_substring), symbols.c (scm_string_to_symbol),
12806 objprop.c (scm_set_object_properties_x):
12807 (scm_set_object_property_x), throw.c (scm_catch, scm_lazy_catch),
12808 strports.c (scm_call_with_input_string), ports.c
12809 (scm_truncate_file), ioext.c (scm_ftell), ports.c (scm_seek),
12810 list.c (scm_append_x), dynwind.c (scm_dynamic_wind), error.c
12811 (scm_error_scm), vports.c (scm_make_soft_port), weaks.c
12812 (scm_make_weak_vector,scm_weak_vector_p),
12813 (scm_make_weak_key_hash_table, scm_make_weak_value_hash_table),
12814 (scm_make_doubly_weak_hash_table, scm_weak_key_hash_table_p),
12815 (scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
12816 macros.c (scm_macro_type), dynl.c (scm_dynamic_link),
12817 (scm_dynamic_unlink, scm_dynamic_call, scm_dynamic_args_call):
12818 Made parameter names match documentation by renaming parameters
12819 and/or fixing docstrings.
1c938eb8 12820
1e6808ea
MG
12821 * numbers.c (scm_ash): Corrected Texinfo markup.
12822
12823 * strop.c (scm_string_index, scm_string_rindex),
12824 (scm_substring_fill_x, scm_string_null_p): Removed `qdocs'.
12825
12826 * vports.c (scm_make_soft_port), unif.c
12827 (scm_uniform_vector_length, scm_array_p, scm_array_rank),
12828 (scm_dimensions_to_uniform_array, scm_transpose_array),
12829 (scm_array_in_bounds_p, scm_uniform_vector_ref),
12830 (scm_bit_count, scm_bit_position, scm_bit_count_star),
12831 (scm_array_to_list, scm_list_to_uniform_array),
12832 (scm_array_prototype, symbols.c (scm_string_to_symbol), strports.c
12833 (scm_open_input_string, scm_open_output_string),
12834 (scm_get_output_string), strop.c (scm_string_copy),
12835 (scm_string_fill_x), strings.c (scm_string_p, scm_string), stime.c
12836 (scm_get_internal_real_time, scm_times),
12837 (scm_get_internal_run_time, scm_current_time, scm_gettimeofday),
12838 (scm_localtime, scm_gmtime), socket.c (scm_htons, scm_ntohs),
12839 (scm_htonl, scm_ntohl, scm_socket, scm_socketpair),
12840 (scm_getsockopt, scm_getsockname, scm_getpeername, scm_recvfrom),
12841 simpos.c (scm_system), random.c (scm_random_uniform),
12842 (scm_random_normal, scm_random_exp), ramap.c
12843 (scm_array_equal_p), posix.c (scm_pipe, scm_getgroups),
12844 (scm_status_exit_val, scm_status_term_sig, scm_status_stop_sig),
12845 (scm_getppid, scm_getuid, scm_getgid, scm_geteuid, scm_getegid),
12846 (scm_getpgrp, scm_ttyname, scm_ctermid, scm_tcgetpgrp, scm_uname),
12847 (scm_environ, scm_tmpnam, scm_mkstemp, scm_access, scm_getpid),
12848 (scm_setlocale), ports.c (scm_char_ready_p, scm_drain_input),
12849 (scm_pt_size, scm_pt_member, scm_port_revealed, scm_port_mode),
12850 (scm_close_port, scm_input_port_p, scm_output_port_p, scm_port_p),
12851 (scm_port_closed_p, scm_eof_object_p, scm_read_char),
12852 (scm_peek_char), pairs.c (scm_pair_p, scm_cons), numbers.c
12853 (scm_logand, scm_logior, scm_logxor, scm_lognot),
12854 (scm_integer_expt, scm_bit_extract, scm_logcount),
12855 (scm_integer_length, scm_string_to_number, scm_inexact_to_exact),
12856 net_db.c (scm_inet_netof, scm_lnaof), modules.c
12857 (scm_interaction_environment), macros.c (scm_makacro),
12858 (scm_makmacro, scm_makmmacro), keywords.c (scm_keyword_p), ioext.c
12859 (scm_ftell, scm_dup_to_fdes, scm_fileno, scm_isatty_p),
12860 (scm_fdopen, scm_fdes_to_ports), gc.c (scm_gc_stats), fluids.c
12861 (scm_fluid_ref), filesys.c (scm_open_fdes),
12862 (scm_stat, scm_directory_stream_p, scm_getcwd, scm_readlink):
12863 Docstring correction: `Returns' -> `Return'
12864
1c938eb8
TTN
12865 * gc.c (scm_set_debug_cell_accesses_x):
12866 (s_scm_gc_set_debug_check_freelist_x):
1e6808ea
MG
12867 * fluids.c (scm_fluid_p): Added texinfo markup.
12868
12869 * error.c (scm_strerror): Made docstring more precise.
12870
12871 * vectors.c (scm_vector_p, scm_vector, scm_make_vector),
12872 (scm_vector_to_list, _scm_vector_fill_x), symbols.c
12873 (scm_symbol_p, scm_symbol_to_string), strorder.c
12874 (scm_string_equal_p, scm_string_ci_equal_p, scm_string_less_p),
12875 (scm_string_leq_p, scm_string_gr_p, scm_string_geq_p),
12876 (scm_string_ci_less_p, scm_string_ci_leq_p, scm_string_ci_gr_p):
12877 (scm_string_ci_geq_p), strop.c (scm_string_copy),
12878 (scm_string_fill_x): Removed `(r5rs)' from docstrings.
12879
9a6976cd
DH
128802001-04-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
12881
12882 * gc.c (MARK): Re-introduce a cheap sanity test for non debug
12883 mode, as suggested by Michael Livshin.
12884
463b2219
ML
128852001-03-31 Michael Livshin <mlivshin@bigfoot.com>
12886
12887 * backtrace.c (display_backtrace_body): since the `print_state'
12888 variable is not used (instead its data field is used directly as
12889 `pstate'), protect it from the hungry compiler optimizations.
12890 thanks to Bill Schottstaedt for the report.
12891
61045190
DH
128922001-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
12893
12894 * gc.[ch] (scm_tc16_allocated): New type tag for allocated cells.
12895 It is only defined and used if guile is compiled with
12896 SCM_DEBUG_CELL_ACCESSES set to true. It's purpose is, to never
12897 let cells with a free_cell type tag be visible outside of the
12898 garbage collector when in debug mode.
12899
12900 * gc.c (scm_debug_cell_accesses_p): Set to true as default.
12901
12902 (scm_assert_cell_valid): Use a local static variable to avoid
12903 recursion.
12904
12905 (MARK): Only check for rogue cell pointers in debug mode. Use
12906 scm_cellp for this purpose and place all checks for rogue pointers
12907 into that function. Further, since due to conservative scanning
12908 we may encounter free cells during marking, don't use the standard
12909 cell type accessor macro to determine the cell type.
12910
12911 (scm_cellp): Check if the cell pointer actually points into a
12912 card header.
12913
12914 (scm_init_gc): Initalize scm_tc16_allocated.
12915
12916 * gc.h (GCH): Renamed to SCM_GC_H.
12917
12918 (SCM_VALIDATE_CELL): Enclose the expression in brackets. This
12919 might be unnecessary, but I feel better this way :-)
12920
12921 (SCM_GC_CELL_TYPE): New macro.
12922
12923 (SCM_SETAND_CDR, SCM_SETOR_CDR): Deprecated. These are not used
12924 in guile, and it is unlikely that they will be applied to real
12925 pairs anyway.
12926
12927 (SCM_SET_FREE_CELL_TYPE): Removed. It was not used.
12928
12929 (SCM_GC_SET_ALLOCATED): New macro. Only non-empty if guile is
12930 compiled with SCM_DEBUG_CELL_ACCESSES set to true.
12931
12932 (SCM_NEWCELL, SCM_NEWCELL2): Use of SCM_GC_SET_ALLOCATED will
12933 make sure that in debug mode no free cell will ever be visible
12934 outside of the garbage collector.
12935
85d6df6a
DH
129362001-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
12937
12938 * async.c (scm_asyncs_pending): Don't use != to compare SCM
12939 values.
12940
12941 * async.c (scm_system_async), variable.c (scm_make_variable,
12942 scm_make_undefined_variable): Use scm_cons to create a pair.
12943
12944 * debug.c (scm_reverse_lookup): Perform proper type checking.
12945 Remove suspicious use of SCM_SLOPPY_CONSP.
12946
12947 * eq.c (scm_equal_p), tags.h (SCM_ECONSP): Use SCM_CONSP instead
12948 of SCM_SLOPPY_CONSP. A sane compiler should be able to perform
12949 the corresponding optimization.
12950
12951 * eval.c (iqq): Use proper type check.
12952
12953 (scm_m_expand_body): Remove redundant type checks.
12954
12955 (promise_print): Don't access promise cells as pairs.
12956
12957 * eval.c (EVALCAR, iqq, scm_m_expand_body, scm_eval_args,
12958 scm_deval_args SCM_CEVAL), guardians.c (scm_guard), hashtab.c
12959 (scm_internal_hash_fold), print.c (scm_iprlist): Use !SCM_CELLP
12960 for SCM_NCELLP, !SCM_CONSP for SCM_NCONSP, !SCM_IMP for SCM_NIMP,
12961 !SCM_FALSEP for SCM_NFALSEP, !SCM_NULLP for SCM_NNULLP
12962
12963 * eval.c (scm_m_define, scm_macroexp, SCM_CEVAL), print.c
12964 (scm_iprin1): Use new macro predicate and accessors.
12965
12966 * eval.h (scm_tc16_macro): Removed declaration. It is declared
12967 in macros.h.
12968
12969 * eval.h (EVALH), macros.h (MACROSH), ports.h (PORTSH), procs.h
12970 (PROCSH), tags.h (TAGSH), variable.h (VARIABLEH): Renamed to
12971 SCM_EVAL_H, SCM_MACROS_H, SCM_PORTS_H, SCM_PROCS_H, SCM_TAGS_H and
12972 SCM_VARIABLE_H. Even the macros that are used to inhibit
12973 including a header file twice should be in the SCM_ namespace.
12974
12975 * fluids.c (scm_swap_fluids, scm_swap_fluids_reverse),
12976 properties.c (scm_primitive_property_ref,
12977 scm_primitive_property_del_x): Prefer stronger predicates like
12978 SCM_NULLP or SCM_FALSEP over SCM_IMP.
12979
12980 * gc.c (MARK): Use proper macros to access procedure-with-setter
12981 cell elements and closure cell elements.
12982
12983 (gc_sweep_freelist_finish, scm_gc_sweep, init_heap_seg): Don't
12984 access free cells as pairs.
12985
12986 (scm_unprotect_object): scm_hashq_get_handle returns #f if
12987 no hashtab entry is found.
12988
12989 * gc.c (scm_gc_sweep), ports.c (scm_close_port): Use new macro
12990 SCM_CLR_PORT_OPEN_FLAG.
12991
12992 * guardians.c (TCONC_IN), print.c (scm_free_print_state): Don't
12993 use SCM_SET_C[AD]R for uninitialized cells.
12994
12995 * hashtab.c (scm_hash_fn_get_handle): Use SCM_VALIDATE_VECTOR.
12996 If the hashtable has no slots, return #f instead of '(). This
12997 unifies the return value with most assoc-functions.
12998
12999 (scm_hash_fn_ref): Use proper type check.
13000
13001 (scm_hashq_get_handle, scm_hashv_get_handle, scm_hash_get_handle):
13002 Removed references to non-existing functions from documentation.
13003
13004 * keywords.c (scm_keyword_dash_symbol): Use proper macros to
13005 access keyword cell elements.
13006
13007 * macros.h (SCM_MACROP, SCM_MACRO_TYPE, SCM_MACRO_CODE): New
13008 macros.
13009
13010 * ports.h (SCM_CLR_PORT_OPEN_FLAG): New macro.
13011
13012 * print.c (scm_iprlist): Added comment. Improved loop
13013 conditions.
13014
13015 * procs.h (SCM_ENV, SCM_SETENV): Don't access closure cells as
13016 pairs.
13017
13018 * smob.c (scm_markcdr): Don't access smob cells as pairs.
13019
13020 * tags.h (SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP): Deprecated.
13021
13022 * throw.c (ACTIVATEJB, DEACTIVATEJB): Don't access jump buffer
13023 cells as pairs.
13024
13025 * variable.c (variable_print, variable_equalp, scm_variable_ref,
13026 scm_variable_set_x): Use proper macros to access variable cell
13027 elements.
13028
13029 (scm_variable_bound_p): Don't use SCM_NEGATE_BOOL.
13030
13031 * variable.h (SCM_VARVCELL): Don't access variable cells as
13032 pairs.
13033
13034 * vectors.c (scm_vector), weaks.c (scm_weak_vector): Simplified,
13035 added FIXME comment, removed register specifier.
13036
1b27e91a
KN
130372001-03-29 Keisuke Nishida <kxn30@po.cwru.edu>
13038
13039 * goops.c, goops.h (scm_init_oop_goops_goopscore_module): Deprecated.
13040 * init.c (scm_init_guile_1): Don't init goopscore module.
13041
16c634ec
MV
130422001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
13043
13044 * eval.c (SCM_APPLY): Check that arg1 is bound for scm_tc7_cxr.
13045
91344ceb
MG
130462001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13047
13048 * strop.c (scm_string_to_list): Fixed docstring markup.
13049 (scm_string_upcase_x, scm_string_upcase, scm_string_downcase_x),
13050 (scm_string_downcase, scm_string_capitalize_x),
13051 (scm_string_capitalize): Rewrote and corrected docstrings.
13052 (scm_string_ci_to_symbol): Made docstring more explicit.
13053
07576812
MV
130542001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
13055
13056 * values.h (scm_values_vtable, SCM_VALUESP): Moved here so that
13057 eval.c can use it.
13058 (scm_call_with_values): Removed.
13059 * values.c (values_vtable, scm_values_vtable): Added "scm_" prefix
13060 so that it can be exported.
13061 (scm_call_with_values): Removed.
1c938eb8 13062
07576812
MV
13063 * tags.h (SCM_IM_CALL_WITH_VALUES): New isym.
13064 * eval.c: Include "libguile/values.h"
13065 (scm_m_at_call_with_values, scm_sym_at_call_with_values):
13066 New.
13067 (unmemocopy, scm_ceval, scm_deval): Handle new isym.
13068 * eval.h (scm_sym_at_call_with_values, scm_m_at_call_with_values):
13069 New delcarations to support above change.
13070
13071 * eval.c (scm_primitive_eval_x, scm_primitive_eval): Fix syntax
13072 errors with last change.
1c938eb8 13073
07576812
MV
130742001-03-25 Marius Vollmer <mvo@zagadka.ping.de>
13075
13076 * eval.c (scm_primitive_eval_x, scm_primitive_eval, scm_i_eval_x,
13077 scm_i_eval): Moved the application of the system transformer from
13078 scm_i_eval to scm_primitive_eval.
13079
a17bb5fd
NJ
130802001-03-23 Neil Jerram <neil@ossau.uklinux.net>
13081
a6be01a4
NJ
13082 * guile-snarf.awk.in: Substitute "\\" with "\" in .doc output.
13083
a17bb5fd
NJ
13084 * strop.c (scm_string_index): Fix docstring line break
13085 regression.
13086
13087 * list.c (scm_cons_star): Fix docstring typo.
13088
be54b15d
DH
130892001-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
13090
13091 * gc.c (scm_init_storage), gdbint.c (scm_init_gdbint), numbers.c
13092 (big2str), ports.c (scm_drain_input), read.c (scm_read,
13093 scm_grow_tok_buf), strings.c (scm_string, scm_makfromstr,
13094 scm_make_string, scm_string_append), strports.c (st_resize_port,
13095 scm_object_to_string), unif.c (scm_make_uve): Replace calls to
13096 scm_makstr with calls to scm_allocate_string.
13097
13098 * strings.[ch] (scm_allocate_string): New function.
13099
13100 * strings.[ch] (scm_makstr): Deprecated.
13101
789ecc05
GH
131022001-03-18 Gary Houston <ghouston@arglist.com>
13103
6d163216
GH
13104 * posix.c (scm_tmpnam): check that return value from tmpnam is not
13105 NULL. rewrote the docstring.
13106 (scm_mkstemp): new procedure implementing "mkstemp!".
13107 * posix.h: declare scm_mkstemp.
13108
789ecc05
GH
13109 * net_db.c: declare h_errno if configure didn't define HAVE_H_ERRNO.
13110 normally it would be found in netdb.h.
13111
c6c79933
GH
131122001-03-17 Gary Houston <ghouston@arglist.com>
13113
e9e225e5
GH
13114 * sort.c (scm_sort): move sortvec variable to avoid a compiler
13115 warning when HAVE_ARRAYS is not defined. move len too.
13116
13117 * Makefile.am (DOT_X_FILES): remove net_db.x, posix.x, socket.x.
13118 (EXTRA_DOT_X_FILES): let configure set the value.
13119 (DOT_DOC_FILES): remove net_db.doc, posix.doc, socket.doc.
13120
c6c79933
GH
13121 * gc.c (scm_must_malloc): changed the comment explaining when
13122 scm_must variants of malloc/free etc., should be used, based on
13123 explanation from Dirk Herrmann.
13124 * fports.c (scm_fport_buffer_add): use FUNC_NAME instead of a local
13125 string with procedure name. use scm_must_malloc instead of malloc.
13126 (scm_setvbuf, scm_fdes_to_port, fport_close): use scm_must variants
13127 of malloc/free.
13128 * ports.c (scm_add_to_port_table, scm_remove_from_port_table,
13129 scm_ungetc): use scm_must variants of malloc/realloc/free.
13130 (scm_add_to_port_table, scm_ungetc): define FUNC_NAME.
13131
b3fcac34
DH
131322001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13133
13134 * __scm.h (SCM_ASSERT, SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1,
13135 SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_n): Don't call scm_wta, call
13136 scm_wrong_type_arg instead.
13137
13138 (SCM_WNA): Deprecated.
13139
13140 * error.[ch] (scm_wta): Deprecated.
13141
13142 * numbers.c (s_i_log): Minor comment fix.
13143
13144 * read.c (scm_lreadr), unif.c (scm_aind, scm_shap2ra,
13145 scm_make_shared_array, scm_transpose_array, scm_enclose_array,
13146 scm_array_in_bounds_p): Don't use SCM_ASSERT to check for
13147 wrong-num-args or misc errors.
13148
13149 * unif.c (scm_make_shared_array, scm_transpose_array,
13150 scm_enclose_array, scm_array_in_bounds_p, scm_array_set_x):
13151 Validate the rest argument (note: this is only done when guile is
13152 built with SCM_DEBUG_REST_ARGUMENT=1)
13153
13154 (scm_array_in_bounds_p, scm_uniform_vector_ref, scm_array_set_x):
13155 Replace calls to scm_wrong_num_args by SCM_WRONG_NUM_ARGS.
13156
13157 * validate.h (SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
13158 SCM_VALIDATE_NUMBER_DEF_COPY): Deprecated.
13159
68baa7e7
DH
131602001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13161
13162 * validate.h (SCM_WRONG_NUM_ARGS): Call scm_error_num_args_subr
13163 instead of scm_wrong_num_args.
13164
13165 * coop-threads.c: Don't include libguile/strings.h. (Was only
13166 needed for former implementation of SCM_WRONG_NUM_ARGS.)
13167
13168 * debug.c (scm_m_start_stack): Don't use SCM_ASSERT to check for
13169 wrong-num-args errors.
13170
9f40cd87
DH
131712001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13172
13173 * error.[ch] (scm_error_num_args_subr): New function.
13174
5352393c
MG
131752001-03-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13176
13177 * list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
13178 (scm_length, scm_append, scm_reverse, scm_list_ref),
13179 (scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
13180 (scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
13181 (scm_delete1_x), gc.c (scm_map_free_list),
13182 (scm_free_list_length), hash.c (scm_hashq, scm_hashv),
13183 (scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
13184 (scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
13185 (scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
13186 (scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
13187 (scm_current_pstate), scmsigs.c (scm_usleep), goops.c
13188 (scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
13189
13190 * weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
13191 (scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
13192 rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
13193 symbols.c (scm_symbol_interned_p), numbers.c
13194 (scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
13195 markup.
13196
a9205f07
KN
131972001-03-16 Keisuke Nishida <kxn30@po.cwru.edu>
13198
13199 * snarf.h (SCM_CONST_LONG): Deprecated.
13200 * tag.c (CONST_INUM): New macro. Use it to define scm_utag_*.
13201
6d583887
MV
132022001-03-15 Marius Vollmer <marius.vollmer@uni-dortmund.de>
13203
13204 * numbers.c (scm_num2ulong): Check that a bignum is positive
13205 before looking at the magnitude. Correctly check for overflow
13206 during conversion.
13207 (scm_num2long_long): Likewise.
13208 (scm_num2ulong_long): New.
13209 (ULONG_LONG_MAX): Define if not already defined.
13210 * numbers.h: (scm_num2ulong_long): New prototype.
1c938eb8 13211
e87a03fc
MG
132122001-03-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13213
13214 * validate.h (SCM_VALIDATE_OPOUTSTRPORT): New macro.
13215
13216 * strports.h (SCM_STRPORTP, SCM_OPSTRPORTP, SCM_OPINSTRPORTP),
13217 (SCM_OPOUTSTRPORTP): New predicate macros.
13218 (scm_open_input_string, scm_open_output_string),
13219 (scm_get_output_string): New prototypes.
1c938eb8 13220
e87a03fc
MG
13221 * strports.c (scm_open_input_string, scm_open_output_string),
13222 (scm_get_output_string): New procedures (SRFI-6 compliant).
13223 Made scm_tc16_strport non-static.
13224
160bb34a
DH
132252001-03-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13226
13227 * macros.h (SCM_ASSYNT): Removed unused object argument from
13228 signature.
13229
13230 * eval.c (scm_m_body, scm_m_quote, scm_m_begin, scm_m_if,
13231 scm_m_set_x, scm_m_and, scm_m_or, scm_m_case, scm_m_cond,
13232 scm_m_letstar, scm_m_do, scm_m_quasiquote, scm_m_delay,
13233 scm_m_define, scm_m_letrec1, scm_m_letrec, scm_m_let, scm_m_apply,
13234 scm_m_cont, scm_m_nil_cond, scm_m_nil_ify, scm_m_t_ify,
13235 scm_m_0_cond, scm_m_0_ify, scm_m_1_ify, scm_m_atfop, scm_m_atbind,
13236 scm_m_expand_body), evalext.c (scm_m_generalized_set_x,
13237 scm_m_undefine), goops.c (scm_m_atslot_ref, scm_m_atslot_set_x,
13238 scm_m_atdispatch): Removed unused object argument from call to
13239 SCM_ASSYNT.
13240
80dee77b
DH
132412001-03-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13242
13243 * gh.h/gh_data.c (gh_ints2scm): Changed the signature to use a
13244 const int* to reflect that the input array of integers remains
13245 unchanged. Thanks to Brett Viren for the hint.
13246
d3dd80ab
MG
132472001-03-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13248
13249 * gh_data.c (gh_scm2chars, gh_scm2shorts, gh_scm2longs),
13250 (gh_scm2floats, gh_scm2doubles): Check for malloc() returning NULL
13251 in various places.
13252 (gh_scm2newstr, gh_symbol2newstr): Change call to
13253 scm_must_malloc() to malloc(), because user-free()able memory is
13254 allocated.
13255
13256 * gc.c: Added declaration of `scm_debug_check_freelist'.
13257
26a3038d
MG
132582001-03-13 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13259
13260 * ports.c (scm_port_mode): Changed `mode' array size to 4.
13261
1f3908c4
KN
132622001-03-12 Keisuke Nishida <kxn30@po.cwru.edu>
13263
13264 * strports.c (scm_object_to_string): New procedure.
13265 (scm_strprint_obj): Deprecated.
13266 * strports.h: Reflect the changes.
13267
e11208ca
DH
132682001-03-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
13269
13270 * goops.h (SCM_VALIDATE_PUREGENERIC): New macro.
13271
13272 * goops.c (scm_m_atslot_ref, scm_m_atslot_set_x,
13273 scm_m_atdispatch): Provide definitions for FUNC_NAME. Don't use
13274 SCM_ASSYNT to check for correct argument types. Either use some
13275 SCM_VALIDATE_* macro or an explicit test.
13276
13277 (scm_make_foreign_object): Don't use SCM_ASSERT to check for
13278 misc-errors.
13279
13280 * macros.h (SCM_ASSYNT): On assertion failure, issue a misc-error
13281 instead of calling scm_wta.
13282
67e8151b
MG
132832001-03-12 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13284
13285 * load.c (scm_primitive_load, scm_primitive_load_path),
13286 (scm_sys_search_load_path): Corrected docstrings (file ->
13287 filename).
13288
13289 * eval.c (scm_force): Added texinfo markup to docstring.
13290 (scm_promise_p): Renamed parameter to `obj' to match docstring.
13291
13292 * debug-malloc.c: Reinserted #include <stdio.h>.
13293
e0c08f17
KN
132942001-03-11 Keisuke Nishida <kxn30@po.cwru.edu>
13295
e39c3de4
KN
13296 * list.c (s_scm_reverse_x): Use SCM_VALIDATE_LIST.
13297
e0c08f17
KN
13298 * environments.c, error.c, eval.c, filesys.c, hashtab.c, load.c,
13299 net_db.c, procprop.c, read.c, scmsigs.c, socket.c, struct.c:
13300 Use SCM_LISTn instead of scm_listify.
13301
e6e2e95a
MD
133022001-03-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13303
13304 * _scm.h: Removed #include <errno.h>.
13305
13306 * error.c, net_db.c, putenv.c, stime.c: Removed declaration of
13307 errno variable (can be a macro on some systems, for example when
13308 using linux libc with threads).
13309
13310 * error.c, filesys.c, gc.c, ioext.c, iselect.c, net_db.c, ports.c,
13311 posix.c, print.c, putenv.c, scmsigs.c, script.c, simpos.c, smob.c,
13312 socket.c, srcprop.c, stime.c, strop.c, unif.c, vports.c: Added
13313 #include <errno.h> in these 20 out of 100 files.
1c938eb8 13314
97d0e20b
GH
133152001-03-10 Gary Houston <ghouston@arglist.com>
13316
13317 * socket.c: add a definition of SUN_LEN (from glibc) for when it's
13318 not already defined.
13319
e75341b3
MD
133202001-03-09 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13321
13322 * coop.c: Inserted #include <stdio.h>.
13323
13324 * iselect.c: Reinserted #include <stdio.h>.
13325
74355186
MV
133262001-03-10 Marius Vollmer <mvo@zagadka.ping.de>
13327
13328 * posix.c: Replaced `#define' of __USE_XOPEN right before
13329 including unistd.h with a define of _GNU_SOURCE at the very top of
13330 the file.
13331
783e7774
KN
133322001-03-09 Keisuke Nishida <kxn30@po.cwru.edu>
13333
13334 * alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
13335 continuations.c, debug-malloc.c, debug.c, dynwind.c, eq.c, eval.c,
13336 feature.c, filesys.h, gc_os_dep.c, gh_data.c, gh_eval.c,
13337 gh_funcs.c, gh_io.c, gh_list.c, gh_predicates.c, hash.c,
13338 hashtab.c, iselect.c, keywords.c, list.c, load.c, mallocs.c,
13339 net_db.c, numbers.c, objprop.c, objprop.h, options.c, pairs.c,
13340 print.c, procprop.c, procs.c, properties.c, ramap.c,
13341 regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c, srcprop.c,
13342 stackchk.c, stacks.c, strings.c, strop.c, strorder.c, struct.c,
13343 symbols.c, tag.c, threads.c, variable.c, vectors.c, weaks.c:
1c938eb8 13344 Remove #include <stdio.h>
783e7774
KN
13345 * gc.c, gdbint.c, root.c, sort.c, unif.c: Add #include <string.h>.
13346
13347 * procs.c (scm_make_subr_opt): Init symcell to avoid warning.
13348
9a677c37
MG
133492001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13350
13351 * posix.c (scm_gethostname): Set initial name length to 256 for
13352 Solaris.
13353
94e6d793
MG
133542001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13355
13356 * posix.h (scm_crypt, scm_chroot, scm_getlogin, scm_cuserid),
13357 (scm_getpriority, scm_setpriority, scm_getpass, scm_flock),
13358 (scm_sethostname, scm_gethostname): New prototypes.
13359
13360 * posix.c: Added inclusion of <crypt.h>, <sys/resource.h> and
13361 <sys/file.h>, if present.
13362 (scm_init_posix): [PRIO_PROCESS, PRIO_PGRP, PRIO_USER, LOCK_SH,
13363 LOCK_EX, LOCK_UN, LOCK_NB]: New variables.
13364 (scm_crypt, scm_chroot, scm_getlogin, scm_cuserid),
13365 (scm_getpriority, scm_setpriority, scm_getpass, scm_flock),
13366 (scm_sethostname, scm_gethostname): New procedures.
13367
650a1cf9
NJ
133682001-03-08 Neil Jerram <neil@ossau.uklinux.net>
13369
13370 * ports.c (scm_port_column): Docstring fixes: (i) port-line arg is
13371 not optional (ii) "recommend" spelling correction.
13372
9636b49c
MD
133732001-03-08 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13374
5e4a4d09
MD
13375 * ramap.c (racp): Removed optimization which caused array copying
13376 to fail if the two arrays shared storage. Re-inserted the IVDEP
13377 macros removed in the change of 2000-03-09. (Don't really have a
13378 complete grasp of what they are for, but they seem to be necessary
13379 on Crays. This needs testing!) Thanks to Miroslav Silovic.
13380
9636b49c
MD
13381 * hash.c (scm_string_hash): Don't downcase characters.
13382
04a4d666
MD
133832001-03-07 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13384
9636b49c 13385 * symbols.c (scm_symbols_prehistory): Changed symbol hash table
04a4d666
MD
13386 size from 277 --> 1009.
13387
13388 * symbols.c, symbols.h (scm_sys_symbols): New function GUILE_DEBUG
13389 function.
13390
13391 * coop-threads.c: Fixed change of 2001-03-06.
1c938eb8 13392
04a4d666
MD
13393 * validate.h: Code formatting.
13394
66418d34
KN
133952001-03-07 Keisuke Nishida <kxn30@po.cwru.edu>
13396
13397 * Makefile.am (*.x): Add dependency on snarf.h and guile-doc-snarf.in.
13398 (*.doc): Add dependency on guile-snarf.awk.in.
13399
13400 * guile-snarf.awk.in: Neglect spaces at the end of
13401 SCM_SNARF_DOCSTRING_END. Skip lines "# NN ..." in the
13402 middle of docstrings. (To avoid the problem with gcc-2.96.)
13403
2ade72d7
DH
134042001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
13405
13406 * coop-threads.c (scm_call_with_new_thread), load.c
13407 (scm_primitive_load, scm_sys_search_load_path), random.c
13408 (scm_c_default_rstate), struct.c (scm_make_struct_layout,
13409 scm_struct_ref, scm_struct_set_x): Don't use SCM_ASSERT to
13410 (potentially) issue a scm-misc-error or wrong-num-args error
13411 message.
13412
13413 * load.c (scm_search_path): Use SCM_ASSERT_TYPE to give details
13414 about the expected type with the wrong-type-arg error message.
13415
13416 * smob.c (scm_make_smob): Abort on misuse of smob - it indicates
13417 a C level bug that can't be fixed from scheme anyway.
13418
586d7da2
MD
134192001-03-05 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13420
13421 * eval.c (scm_m_letstar): Removed check for duplicate bindings.
13422 Duplicate bindings are OK in a let* since a let* is semantically
13423 equivalent to a nested set of let:s.
13424
1dd05fd8
MG
134252001-03-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13426
13427 * print.c (scm_print_options): Fixed texinfo in docstring.
13428
13429 * net_db.c (scm_getserv, scm_getproto, scm_getnet): Return #f if
13430 the underlying functions getservent, getprotoent or getnetent
13431 return NULL instead of signalling an error.
13432
439006bf
GH
134332001-03-04 Gary Houston <ghouston@arglist.com>
13434
13435 * socket.c (scm_fill_sockaddr): don't allow buffer overflows when
13436 taking an unexpectedly large filename for an AF_UNIX socket from
13437 bind/connect/sendto (thanks to Martin Grabmueller).
1c938eb8 13438
439006bf
GH
13439 * socket.c (scm_sock_fd_to_port, SCM_SOCK_FD_TO_PORT): removed the
13440 former and adjusted the latter.
13441 (scm_socket, scm_socketpair): cosmetic changes.
13442 (scm_getsockopt, scm_setsockopt): declare optlen as int, not
13443 size_t as socklen_t substitute. don't restrict args/return values
13444 to INUM: allow full range of int or size_t.
13445 (scm_fill_sockaddr): check arguments before allocating memory, to
13446 avoid leakage. use malloc, not scm_must_malloc.
13447 (scm_connect, scm_bind, scm_sendto): use int, not size_t as socklen_t
13448 substitute. free the sockaddr structure before throwing an error.
13449 (scm_init_add_buffer): procedure removed, together with its static
13450 buffer scm_addr_buffer, which wouldn't be thread safe. instead,
13451 define a macro MAX_ADDR_SIZE and declare the buffer where needed.
13452 (scm_accept, scm_getpeername, scm_getsockname, scm_recvfrom,
13453 scm_sendto): use a local buffer instead of scm_addr_buffer.
13454 adjust for new SCM_SOCK_FD_TO_PORT. use int for address size,
13455 not size_t.
13456 (scm_recvfrom): set addr->sa_family to AF_UNSPEC before the recvfrom
13457 call to detect whether recvfrom could be bothered to set the address.
13458 (scm_init_socket): don't call scm_init_addr_buffer.
13459
276dd677
DH
134602001-03-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
13461
13462 * debug.c (scm_procedure_source, scm_procedure_environment),
13463 print.c (scm_get_print_state), ramap.c (scm_array_fill_int,
13464 scm_array_index_map_x), sort.c (scm_sort_x, scm_sort,
13465 scm_stable_sort_x, scm_stable_sort), stacks.c (scm_make_stack,
13466 scm_last_stack_frame), symbols.c (scm_sym2vcell, scm_sym2ovcell),
13467 unif.c (scm_list_to_uniform_array, scm_uniform_vector_length,
13468 scm_transpose_array, scm_enclose_array, scm_array_in_bounds_p,
13469 scm_uniform_vector_ref, scm_array_set_x, scm_uniform_array_read_x,
13470 scm_uniform_array_write, scm_bit_set_star_x, scm_bit_count_star,
13471 scm_array_to_list, scm_array_prototype), validate.h
13472 (SCM_VALIDATE_NUMBER_COPY): Don't call function scm_wta, call
13473 scm_misc_error or scm_wrong_type_arg instead.
13474
13475 * validate.h (SCM_WTA, RETURN_SCM_WTA): Deprecated.
13476
5e03762c
MD
134772001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13478
13479 * goops.c, goops.h (scm_sys_pre_expand_closure_x): Removed.
13480 (scm_sys_tag_body): Added.
13481
db4b4ca6
DH
134822001-03-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
13483
13484 * continuations.c (continuation_apply), eval.c (scm_m_lambda,
13485 scm_m_letstar, scm_m_letrec1, scm_m_let, SCM_APPLY), eval.h
13486 (SCM_EVALIM2), evalext.c (scm_m_generalized_set_x), gc.c
13487 (get_bvec, MARK), goops.c (scm_primitive_generic_generic),
13488 options.c (scm_options), ports.c (scm_remove_from_port_table),
13489 ramap.c (scm_ramapc), read.c (skip_scsh_block_comment, scm_lreadr,
13490 scm_lreadparen, scm_lreadrecparen), script.c (script_get_octal,
13491 script_get_backslash, script_read_arg), unif.c (scm_cvref): Don't
13492 call function scm_wta, call scm_misc_error or scm_wrong_type_arg
13493 instead.
13494
87e7741d
MD
134952001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13496
13497 * goops.c (scm_sys_pre_expand_closure_x): New procedure.
13498
d19b0aac
MV
134992001-03-04 Marius Vollmer <mvo@zagadka.ping.de>
13500
13501 * eval.c (scm_s_duplicate_bindings): New error message.
13502 (scm_m_letrec1, scm_m_letstar): Check for duplicate bindings.
13503
2fd945df
MV
135042001-03-03 Marius Vollmer <mvo@zagadka.ping.de>
13505
13506 * eval.h (SCM_EVALIM2): New macro. Use it when a
13507 immediate, literal constant should be evaluated.
13508 * eval.c (scm_s_duplicate_formals): New error message string.
13509 (scm_c_improper_memq): New function.
13510 (scm_m_lambda): Check for duplicate arguments.
13511 (scm_ceval, scm_deval): When executing a body: only cons a new
13512 toplevel environment frame when it is different from the
13513 existing one; use EVALCAR instead of SIDEVAL so that we can properly
13514 check for empty combinations; use SCM_EVALIM2 for the same reason
13515 in the non-toplevel loop.
13516 (nontoplevel_cdrxnoap, nontoplevel_cdrxbegin, nontoplevel_begin):
13517 New labels with the meaning of their non-"nontoplevel" partners,
13518 but they are used when it is known that the body is not evaluated at
13519 top-level.
13520 (scm_apply, scm_dapply): use SCM_EVALIM2 to get proper error
13521 reporting for empty combinations.
13522
9e6fc585
KN
135232001-03-02 Keisuke Nishida <kxn30@po.cwru.edu>
13524
13525 * Remove dump facilities.
13526 * dump.c, dump.h: Removed.
13527 * Makefile.am: Remove dump.c, dump.h, dump.x, dump.doc.
13528 * init.c: Remove #include "libguile/dump.h".
13529 (scm_init_guile_1): Remove scm_init_dump.
13530 * smob.h (scm_smob_descriptor): Remove slots: dump, undump.
13531 (scm_set_smob_dump, scm_set_smob_undump): Remove declaration.
13532 * smob.c (scm_make_smob_type): Remove initialization: dump, undump.
13533 (scm_set_smob_dump, scm_set_smob_undump): Removed.
13534
13535 * keywords.c: Remove #include "libguile/dump.h".
13536 (keyword_dump, keyword_undump): Removed.
13537 (scm_init_keywords): Remove scm_set_smob_dump and scm_set_smob_undump.
13538
eae54bf0
MG
135392001-03-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13540
13541 * vectors.c (s_scm_vector_p, list->vector, scm_vector)
13542 (scm_vector_ref, scm_vector_set_x, scm_vector_to_list)
13543 (scm_vector_fill_x), strorder.c (scm_string_equal_p)
13544 (scm_string_ci_equal_p, scm_string_less_p, scm_string_leq_p)
13545 (scm_string_gr_p, scm_string_geq_p, scm_string_ci_less_p)
13546 (scm_string_ci_geq_p), symbols.c (scm_symbol_p)
13547 (scm_symbol_to_string, scm_string_to_symbol): Changed use of @t{}
13548 to @code{} as the texinfo manual recommends, converted the
13549 examples to use a @lisp{}-environment.
13550
13551 * strports.c (scm_eval_string): Cleaned up the docstring.
13552
13553 * struct.c (scm_struct_p, scm_struct_vtable_p): Added texinfo
13554 markup.
13555
13556 * numbers.c (scm_exact_p, scm_odd_p, scm_even_p)
13557 (scm_number_to_string, scm_string_to_number, scm_number_p)
13558 (scm_real_p, scm_integer_p, scm_inexact_p, scm_make_rectangular)
13559 (scm_make_polar, scm_inexact_to_exact): Added texinfo markup.
13560 (scm_ash): Added texinfo markup and removed obsolete @refill.
13561 (scm_gr_p): Corrected comment.
13562 (scm_gr_p, scm_leq_p, scm_geq_p): Added texinfo markup to (future
13563 docstring) comments.
13564 (scm_positive_p, scm_less_p, scm_num_eq_p, scm_real_p)
13565 (scm_number_p, scm_negative_p, scm_max, scm_min, scm_sum)
13566 (scm_difference, scm_product, scm_divide, scm_asinh, scm_acosh)
13567 (scm_atanh, scm_truncate, scm_round, scm_exact_to_inexact)
13568 (floor, ceiling, $sqrt, $abs, $exp, $log, $sin, $cos, $tan, $asin)
13569 ($acos, $atan, $sinh, $cosh, $tanh, scm_real_part, scm_imag_part)
13570 (scm_magnitude, scm_angle, scm_abs, scm_quotient, scm_remainder)
13571 (scm_modulo, scm_gcd, scm_lcm): Added (future docstring) comments.
13572
23deee81
DH
135732001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
13574
13575 * __scm.h (SCM_ASSERT_TYPE): Add missing macro parameter.
13576 (Obviously nobody compiles with SCM_RECKLESS defined...)
13577
13578 * validate.h (SCM_ASSERT_RANGE): Use the argument number.
13579
6fe692e9
MD
135802001-02-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13581
13582 * ports.c, ports.h (scm_c_read, scm_c_write): New functions.
13583
13584 * ports.h (SCM_READ_BUFFER_EMPTY_P): New macro.
13585
27c37006
NJ
135862001-02-24 Neil Jerram <neil@ossau.uklinux.net>
13587
13588 * numbers.c (scm_two_doubles, scm_sys_expt, scm_sys_atan2,
13589 scm_make_polar): Rename arguments `z1' and `z2' to `x' and `y',
13590 since use of `z' suggests that the arguments may be complex.
13591
13592 * goops.c (scm_make), numbers.c (scm_sys_expt): Fix docstring
13593 typos.
13594
2069af38
NJ
135952001-02-23 Neil Jerram <neil@ossau.uklinux.net>
13596
13597 * dump.c (scm_binary_write, scm_binary_read), eval.c
13598 (scm_primitive_eval), guardians.c (scm_guardian_destroyed_p,
13599 scm_guardian_greedy_p, scm_make_guardian), fports.c
13600 (scm_file_port_p): Minor docstring fixes.
13601
b42ff180
MV
136022001-02-22 Marius Vollmer <mvo@zagadka.ping.de>
13603
2069af38 13604 * load.c (load): Use scm_primitive_eval_x instead of scm_i_eval_x.
97ea55f8
MV
13605
13606 * goops.c (scm_add_method, DEFVAR): Use scm_eval instead of
13607 scm_i_eval.
13608 (make_class_from_template): Do not bother to set the current
13609 module around the call to DEFVAR, scm_eval takes care of that.
13610 (scm_init_goops): Make scm_module_goops and
13611 scm_goops_lookup_closure permanent objects.
1c938eb8 13612
97ea55f8
MV
13613 * eval.c (scm_ceval, scm_deval): When evaluating expressions on
13614 top level, create a fresh top-level environment for each
13615 expression instead of mutating the exisint frame. This is
13616 important when that frame is closed over.
13617
b42ff180
MV
13618 * numbers.c (s_scm_logior) [SCM_DIGSTOOBIG]: Also use
13619 SCM_DIGSPERLONG instead of DIGSPERLONG.
13620
09f2ab1e
MV
136212001-02-21 Marius Vollmer <mvo@zagadka.ping.de>
13622
13623 * eval.c (scm_ceval, scm_deval): Check for wrong number of args
13624 before applying arrow procedure in `cond' and before applying
13625 receiver procedure in call-with-current-continuation.
13626 (scm_i_eval): Do not invoke scm_copy_tree in argument in SCM_XEVAL
13627 macro. The argument is expanded more than one time.
13628
13629 * numbers.c (scm_logior) [SCM_DIGSTOOBIG]: Correctly use
13630 SCM_BIGDIG instead of BIGDIG. Thanks to Steven G. Johnson!
13631
136322001-02-20 Marius Vollmer <mvo@zagadka.ping.de>
13633
13634 * guile-doc-snarf.in, guile-func-name-check.in: Added copyright
13635 notice and license.
13636
7090240c
MG
136372001-02-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13638
13639 * variable.c (scm_make_variable, scm_make_undefined_variable)
13640 (scm_variable_ref, scm_variable_set_x, scm_builtin_variable)
13641 (scm_variable_bound_p), values.c (scm_values)
13642 (scm_call_with_values), unif.c (scm_bit_count)
13643 (scm_bit_set_star_x), symbols.c (scm_gentemp)
13644 (scm_gensym), strings.c (scm_string_p, scm_make_string)
13645 (scm_read_only_string_p, scm_string_length, scm_string_ref)
13646 (scm_string_set_x, scm_substring, scm_string_append), stime.c
13647 (scm_strptime, scm_mktime), random.c (scm_seed_to_random_state)
13648 (scm_copy_random_state, scm_random), print.c (scm_newline)
13649 (scm_write_char, scm_simple_format), debug-malloc.c
13650 (scm_malloc_stats), environments.c (scm_environment_p)
13651 (scm_environment_bound_p, scm_environment_ref)
13652 (scm_environment_fold, scm_environment_define)
13653 (scm_environment_undefine, scm_environment_set_x)
13654 (scm_environment_cell, scm_environment_observe)
13655 (scm_environment_observe_weak, scm_environment_unobserve)
13656 (scm_make_eval_environment, scm_eval_environment_p)
13657 (scm_eval_environment_set_local_x, scm_eval_environment_local)
13658 (scm_eval_environment_imported)
13659 (scm_eval_environment_set_imported_x, scm_make_import_environment)
13660 (scm_import_environment_p, scm_import_environment_imports)
13661 (scm_import_environment_set_imports_x, scm_make_export_environment)
13662 (scm_export_environment_p, scm_export_environment_private)
13663 (scm_export_environment_set_private_x)
13664 (scm_export_environment_signature)
13665 (scm_export_environment_set_signature_x, scm_leaf_environment_p):
13666 Added texinfo markup.
13667
13668 * ports.c (scm_drain_input): Lowercased argument to @var.
13669 (scm_current_input_port, scm_current_output_port): Filled in
13670 missing explanation.
13671 (scm_current_load_port, scm_set_current_output_port)
13672 (scm_set_current_error_port, scm_port_line, scm_set_port_line_x):
13673 Added texinfo markup.
13674
13675 * arbiters.c (scm_make_arbiter, scm_try_arbiter)
13676 (scm_release_arbiter): Added texinfo markup to docstrings.
13677 Changed `Returns' to `Return'.
13678 (arbiter_print): Changed SCM_CDR to SCM_SMOB_DATA.
13679
25703850
NJ
136802001-02-16 Neil Jerram <neil@ossau.uklinux.net>
13681
13682 * guile-snarf.awk.in: Quote any `@'s that occur in Scheme names,
13683 by doubling them to `@@'.
13684
73c0fdce
MG
136852001-02-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13686
13687 * numbers.c (scm_lognot), random.c (scm_random,
13688 scm_random_normal, scm_random_solid_sphere_x,
13689 scm_random_hollow_sphere_x, scm_random_normal_vector_x,
13690 scm_random_exp), dynwind.c
13691 (scm_dynamic_wind): Removed unnecessary "" from docstrings.
1c938eb8 13692
73c0fdce
MG
13693 * goops.c (scm_sys_initialize_object, scm_instance_p,
13694 scm_class_name, scm_class_precedence_list, scm_class_slots,
13695 scm_class_environment, scm_generic_function_name,
13696 scm_generic_function_methods, scm_method_generic_function,
13697 scm_method_specializers, scm_method_procedure, scm_make_unbound,
13698 scm_unbound_p, scm_assert_bound, scm_at_assert_bound_ref,
13699 scm_sys_fast_slot_ref, scm_sys_fast_slot_set_x, scm_slot_ref,
13700 scm_slot_set_x, _scm_slot_bound_p, scm_slots_exists_p,
13701 scm_sys_allocate_instance, scm_make, scm_pure_generic_p,
13702 scm_class_direct_supers, scm_class_direct_slots,
13703 scm_class_direct_subclasses, scm_class_direct_methods,
13704 scm_accessor_method_slot_definition, scm_sys_goops_loaded),
13705 debug.c (scm_with_traps, scm_memoized_p, scm_make_gloc,
13706 scm_gloc_p, scm_make_iloc, scm_iloc_p, scm_memcons,
13707 scm_mem_to_proc, scm_proc_to_mem, scm_unmemoize,
13708 scm_memoized_environment, scm_procedure_name,
13709 scm_procedure_source, scm_procedure_environment, scm_debug_hang),
13710 objects.c
13711 (scm_class_of, scm_entity_p, scm_operator_p,
13712 scm_set_object_procedure_x, scm_object_procedure,
13713 scm_make_class_object), hooks.c (scm_make_hook_with_name,
13714 scm_make_hook, scm_hook_p, scm_hook_empty_p, scm_add_hook_x,
13715 scm_remove_hook_x, scm_reset_hook_x, scm_run_hook,
13716 scm_hook_to_list), lang.c
13717 (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null, scm_nil_eq),
13718 numbers.c (scm_sys_expt, scm_sys_atan2), print.c
13719 (scm_print_options, scm_port_with_print_state,
13720 scm_get_print_state), procs.c (scm_make_cclo, scm_procedure_p,
13721 scm_closure_p, scm_thunk_p, scm_procedure_with_setter_p,
13722 scm_make_procedure_with_setter, scm_procedure), throw.c
13723 (scm_lazy_catch), modules.c (scm_standard_eval_closure), load.c
13724 (scm_parse_path, scm_search_path), stacks.c (scm_make_stack,
13725 scm_stack_ref, scm_stack_length, scm_frame_p,
13726 scm_last_stack_frame, scm_frame_number, scm_frame_source,
13727 scm_frame_procedure, scm_frame_arguments, scm_frame_previous,
13728 scm_frame_next, scm_frame_real_p, scm_frame_procedure_p,
13729 scm_frame_evaluating_args_p, scm_frame_overflow_p), filesys.c
13730 (scm_dirname, scm_basename), dynwind.c
13731 (scm_wind_chain), read.c (scm_read_options, scm_read,
13732 scm_read_hash_extend), gc.c
13733 (scm_unhash_name), eval.c (scm_eval_options_interface,
13734 scm_evaluator_traps, s_scm_nconc2last), backtrace.c
13735 (scm_display_error, scm_set_print_params_x,
13736 scm_display_application, scm_display_backtrace, scm_backtrace),
13737 async.c (scm_async, scm_system_async, scm_async_mark,
13738 scm_system_async_mark, scm_run_asyncs, scm_noop,
13739 scm_set_tick_rate, scm_set_switch_rate, scm_unmask_signals,
13740 scm_mask_signals): Added docstrings.
13741
e228a203
KN
137422001-02-15 Keisuke Nishida <kxn30@po.cwru.edu>
13743
13744 * dump.c (scm_undump): Use SCM_CARLOC/SCM_CDRLOC to obtain the
13745 address of car/cdr. (Thanks to Dirk Herrmann)
13746 Use scm_sizet to obtain the length of strings.
13747 (Thanks to Matthias Koeppe)
13748
1552a59d
MV
137492001-02-15 Marius Vollmer <mvo@zagadka.ping.de>
13750
13751 * symbols.c (scm_mem2symbol): Put a empty statement after the
13752 next_symbol label. This is mandated by ANSI, appearantly.
13753
3178f751
MV
137542001-02-13 Marius Vollmer <marius.vollmer@uni-dortmund.de>
13755
13756 * gc_os_dep.c: Do not include <linux/version.h>. It makes no
13757 sense to compile for a specific kernel version. Do not include
13758 <asm/signal.h> while defining __KERNEL__. This hack should no
13759 longer be needed and caused problems.
13760
7af4defe
MV
137612001-02-13 Marius Vollmer <mvo@zagadka.ping.de>
13762
13763 * eval.c (scm_ceval, scm_deval): use `SIDEVAL' instead of
13764 SCM_CEVAL when evaluating subforms of `begin' forms. SCM_CEVAL
13765 can not deal with immediates.
13766
5d6bb349
KN
137672001-02-12 Keisuke Nishida <kxn30@po.cwru.edu>
13768
13769 * list.c (scm_list_copy): Validate the first argument.
13770
ec9709f0
MV
137712001-02-11 Marius Vollmer <mvo@zagadka.ping.de>
13772
13773 Fix evaluator so that top-level expressions are correctly
13774 evaluated with respect to the module system.
1c938eb8 13775
ec9709f0
MV
13776 * modules.h. modules.c (scm_current_module_lookup_closure): New
13777 function.
13778
13779 * eval.h (scm_primitive_eval, scm_primitive_eval_x): New
13780 prototypes.
13781 (scm_i_eval, scm_i_eval_x, scm_eval, scm_eval_x): Changed argument
13782 names to better reflect their meaning.
13783
13784 * eval.c (scm_ceval, scm_deval): Recognize when `begin' is being
13785 evaluated at top-level and synronize lookup closure before
13786 executing every subform.
13787 (scm_primitve_eval_x, scm_primitive_eval): New functions.
13788 (scm_eval_x, scm_eval): Reimplement in terms of
13789 scm_primitive_eval_x and scm_primitive_eval, respectively.
1c938eb8 13790
ec9709f0
MV
137912001-02-09 Marius Vollmer <mvo@zagadka.ping.de>
13792
13793 * macros.c (scm_macro_name, scm_macro_transformer): Use
13794 SCM_SMOB_DATA instead of SCM_CDR. Provided by Martin Grabmueller.
13795 Thanks!
13796
42417394
KN
137972001-02-10 Keisuke Nishida <kxn30@po.cwru.edu>
13798
13799 * dump.c (scm_store_bytes): Store data size before data.
13800 (scm_restore_bytes): Restore data size. Takes a pointer to size.
13801 * dump.h (scm_restore_bytes): Updated.
13802
bf942687
KN
138032001-02-09 Keisuke Nishida <kxn30@po.cwru.edu>
13804
13805 * dump.c: Use double cells for update schedule.
13806
1be4270a
KN
138072001-02-08 Keisuke Nishida <kxn30@po.cwru.edu>
13808
13809 * ports.c (scm_unread_char): Take an optional argument.
13810
548728ea
MV
138112001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
13812
13813 * modules.h (scm_selected_module, scm_current_module): Renamed
13814 scm_selected_module to scm_current_module to synchronize Scheme
13815 and C names.
13816 (scm_select_module, scm_set_current_module): Likewise. Changed
13817 all uses.
1c938eb8 13818
548728ea
MV
13819 * ports.c (scm_port_for_each): Make a snapshot of the port table
13820 before iterating over it. The table might change while the user
13821 code is running. With the snapshot, the user can depend on the
c5408bc3 13822 fact that each port that existed at the start of the iteration is
548728ea
MV
13823 encountered exactly once. (ice-9 popen) depends on this.
13824
cb0d8be2
DH
138252001-02-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
13826
13827 * strings.h (SCM_STRING_MAX_LENGTH): New macro.
13828
13829 * strings.c (scm_makstr, scm_take_str, scm_make_string): Added
13830 range checking for the size parameter. Thanks to Martin
13831 Grabmueller for the hint.
13832
13833 (scm_makstr): Reordered string initialization to make interrupt
13834 deferring unnecessary.
13835
13836 * vectors.c (scm_make_vector): Fixed range checking.
13837
e382fdbe
DH
138382001-02-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
13839
13840 * vectors.h (SCM_VECTOR_MAX_LENGTH): New macro.
13841
13842 * vectors.c (scm_make_vector, scm_c_make_vector): Improved the
13843 checking of the size parameter for type correctness and valid
13844 range. Thanks to Rob Browning for reporting the problem. Instead
13845 of deferring interrupts, scm_remember_upto_here_1 is used.
13846
bf8f0922
KN
138472001-02-05 Keisuke Nishida <kxn30@po.cwru.edu>
13848
13849 * dump.c (scm_store_cell_object, scm_restore_cell_object): Removed.
13850 (scm_dump_cell_update): Removed.
13851 (scm_dump_update): Renamed from scm_dump_object_update.
13852 (scm_restore_string, scm_restore_bytes, scm_restore_word): Takes
13853 a pointer instead of returning a value.
13854 * keywords.c (keyword_undump): Updated.
13855
914cceec
KN
138562001-02-05 Keisuke Nishida <kxn30@po.cwru.edu>
13857
13858 * dump.c, dump.h: Modified a lot.
5f17c66f 13859 (SCM_DUMP_COOKIE): Version 0.1
914cceec
KN
13860 (scm_dump_mark): Removed.
13861 (scm_restore_cell_object, scm_store_cell_object): New functions.
13862
13863 * smob.h (scm_smob_descriptor): Removed slots: dump_mark,
13864 dump_dealloc, dump_store, undump_alloc, undump_restore, undump_init.
13865 New slots: dump, undump.
13866 * smob.c (scm_make_smob_type, scm_set_smob_dump, scm_set_smob_undump):
13867 Updated.
13868
13869 * keywords.c (keyword_dump): Renamed from keyword_dealloc.
13870 (keyword_undump): Renamed from keyword_alloc.
13871 (scm_init_keywords): Set keyword_dump and keyword_undump.
13872
ecf470a2
ML
138732001-02-03 Michael Livshin <mlivshin@bigfoot.com>
13874
13875 * gc.c (DOUBLECELL_ALIGNED_P): new macro, a better-named analog of
13876 the deprecated SCM_DOUBLE_CELLP.
13877
13878 * tags.h (SCM_DOUBLE_CELLP): deprecated.
13879
03416a99
KN
138802001-02-02 Keisuke Nishida <kxn30@po.cwru.edu>
13881
13882 * dump.c, dump.h: New files.
13883 * Makefile.am: Added dump.c, dump.h, dump.x, dump.doc.
13884 * init.c: #include "libguile/dump.h".
13885 (scm_init_guile_1): Call scm_init_dump.
13886 * smob.h (scm_smob_descriptor): New slots: dump_mark,
13887 dump_dealloc, dump_store, undump_alloc, undump_restore,
13888 undump_init.
13889 * smob.c (scm_make_smob_type): Init the new slots.
13890 (scm_set_smob_dump, scm_set_smob_undump): New functions.
13891 * smob.h (scm_set_smob_dump, scm_set_smob_undump): Declared.
13892
13893 * keywords.c: #include "libguile/dump.h".
13894 (keyword_dealloc, keyword_alloc): New functions.
13895 (scm_init_keywords): Set smob_dump and smob_undump.
13896
00ffa0e7
KN
138972001-02-01 Keisuke Nishida <kxn30@po.cwru.edu>
13898
13899 * vectors.c (scm_c_make_vector): New function.
13900 * vectors.h (scm_c_make_vector): Declared.
13901 * eval.c (scm_copy_tree), filesys.c (scm_stat2scm), fluids.c
13902 (scm_make_initial_fluids, grow_fluids), gc.c (scm_init_storage),
13903 gh_data.c (gh_ints2scm, gh_doubles2scm): goops.c
13904 (scm_make_method_cache, scm_i_vector2list,
13905 scm_compute_applicable_methods, scm_sys_method_more_specific_p),
13906 init.c (start_stack), net_db.c (scm_gethost, scm_getnet,
13907 scm_getproto, scm_return_entry), posix.c (scm_getgroups,
13908 scm_getpwuid, scm_getgrgid, scm_uname), print.c (make_print_state,
13909 grow_ref_stack), regex-posix.c (scm_regexp_exec), scmsigs.c
13910 (scm_init_scmsigs), socket.c (scm_addr_vector, scm_addr_vector),
13911 stime.c (scm_times, filltime), unif.c (scm_make_uve), vectors.c
13912 (scm_vector, scm_make_vector): Use scm_c_make_vector.
13913
13914 * hashtab.c (scm_c_make_hash_table): New function.
13915 * hashtab.h (scm_c_make_hash_table): Declared.
13916 * environments.c (scm_make_leaf_environment,
13917 scm_make_eval_environment), gc.c (scm_init_storage),
13918 keywords.c (scm_init_keywords), symbols.c (scm_builtin_bindings):
13919 Use scm_c_make_hash_table.
13920
b8446ce8
MD
139212001-01-31 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13922
13923 * unif.c (rapr1): Don't apply scm_uniform_vector_length on arrays.
13924
e3239868
DH
139252001-01-29 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13926
13927 * struct.c (scm_make_vtable_vtable): Removed unnecessary "" from
13928 end of docstring.
13929
13930 * struct.c (scm_struct_set_x, scm_struct_vtable_tag,
13931 scm_struct_vtable_name, scm_set_struct_vtable_name_x), weaks.c
13932 (scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table,
13933 scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
13934 srcprop.c (scm_source_properties, scm_set_source_properties_x,
13935 scm_source_property, scm_set_source_property_x), sort.c
13936 (scm_sort_list_x, scm_restricted_vector_sort_x, scm_sorted_p,
13937 scm_merge, scm_merge_x, scm_sort_x, scm_sort, scm_stable_sort_x,
13938 scm_stable_sort, scm_sort_list_x, scm_sort_list): Added
13939 docstrings.
13940
41ee56dd
MD
139412001-01-29 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13942
13943 * eval.c (SCM_APPLY): Check that primitives which take 1 arg
13944 really get that arg.
13945
b6311c08
KN
139462001-01-26 Keisuke Nishida <kxn30@po.cwru.edu>
13947
13948 * goops.c (s_scm_get_keyword): Bug fix.
13949
a49af0c0
DH
139502001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
13951
13952 The following patch was sent by Martin Grabmueller. It makes sure
13953 that in case of parameter errors the correct function name is
13954 shown, and that parameter types are only checked once.
13955
13956 * strop.c (string_copy, string_upcase_x, string_downcase_x,
13957 string_capitalize_x): New functions. Each one performs the core
13958 functionality of the corresponding scm_* function.
13959
13960 (scm_string_copy, scm_string_upcase_x, scm_string_upcase,
13961 scm_string_downcase_x, scm_string_downcase,
13962 scm_string_capitalize_x, scm_string_capitalize): Reduced to
13963 parameter checking wrappers of the above functions.
13964
13070bd3
DH
139652001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
13966
13967 * continuations.c, dynl.c, keywords.c, load.c: Include
13968 strings.h. Thanks to Bill Schottstaedt for the bug report.
13969
2f2b390c
DH
139702001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
13971
13972 * backtrace.c (display_header): Make sure that line and column
13973 information is shown independent of whether the port the code was
13974 read from had an associated filename. Thanks to Martin
13975 Grabmueller for providing this patch.
13976
efa40607
DH
139772001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
13978
13979 * fports.[ch] (scm_file_port_p): New primitive.
13980
a98bddfd
DH
139812001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
13982
13983 * tags.h (scm_tc16_fport, scm_tc16_strport, scm_tc16_sfport):
13984 These are now defined in fports.c, strports.c and vports.c.
13985
13986 * fports.[ch] (scm_tc16_fport), strports.c (scm_tc16_strport),
13987 vports.c (scm_tc16_sfport): Made variables (were macros defined in
13988 tags.h).
13989
13990 fports.c (scm_make_fptob), strports.c (scm_make_stptob), vports.c
13991 (scm_make_sfptob): Made static. These return a type code now.
13992
13993 fports.c (scm_init_fports), strports.c (scm_init_strports),
13994 vports.c (scm_init_vports): Create the corresponding port types.
13995
13996 * fports.h (SCM_FPORTP, SCM_OPFPORTP, SCM_OPINFPORTP,
13997 SCM_OPOUTFPORTP): Redefined in terms of scm_tc16_fport.
13998
13999 * init.c (scm_init_guile_1): Make sure strports are initialized
14000 before gdbint.
14001
14002 * ports.[ch] (scm_make_port_type): Changed the return type to
14003 scm_bits_t.
14004
14005 * ports.c (scm_ports_prehistory): Don't create any port types
14006 here.
14007
14008 * posix.c (scm_ttyname): Use SCM_FPORTP instead of comparing
14009 against scm_tc16_fport directly.
14010
0419a528
DH
140112001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
14012
14013 * srcprop.c (scm_set_source_property_x): Fix to handle
14014 (set-source-property! <obj> 'copy <datum>) correctly.
14015
6d36532c
GH
140162001-01-24 Gary Houston <ghouston@arglist.com>
14017
14018 * filesys.c (scm_link): docstring fix.
14019 * fports.h (scm_setfileno): obsolete declaration removed.
14020 * posix.c: bogus popen declaration removed.
14021
14022 * rdelim.c: new file, split from ioext.c.
14023 * rdelim.h: new file, split from ioext.h
14024 * Makefile.am: add rdelim.c and related files.
14025 * init.c: call scm_init_rdelim. include rdelim.h.
14026
3ba5a6c2
DH
140272001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
14028
14029 This patch was sent by Martin Grabmueller and makes sure that
14030 parameter errors are reported correctly by the lexicographic
14031 ordering predicates.
14032
14033 * strorder.c (string_less_p, string_ci_less_p): New functions.
14034
14035 (scm_string_less_p, scm_string_ci_less_p): Extracted the core
14036 functionality into string_less_p, string_ci_less_p respectively.
14037 The remaining code is just a wrapper to do the parameter
14038 checking.
14039
14040 (scm_string_leq_p, scm_string_gr_p, scm_string_geq_p): Check the
14041 parameters and call string_less_p instead of scm_string_less_p.
14042
14043 (scm_string_ci_leq_p, scm_string_ci_gr_p, scm_string_ci_geq_p):
14044 Check the parameters and call string_less_ci_p instead of
14045 scm_string_ci_less_p.
14046
e40a4095
DH
140472001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
14048
ed6a2db9
DH
14049 This patch modifies scm_display_error to perform parameter
14050 checking. Thanks to Neil Jerram for the bug report.
14051
e40a4095
DH
14052 * backtrace.[ch] (scm_i_display_error): New function.
14053
14054 * backtrace.c (scm_display_error): Added parameter check and
14055 extracted the core functionality into function
14056 scm_i_display_error.
14057
14058 * throw.c (handler_message): Call scm_i_display_error to display
14059 the error message.
14060
f1e06a96
MD
140612001-01-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
14062
14063 * eval.c (SCM_APPLY): Added # args check for application of
14064 procedures with arity 3. (Thanks to Anders Holst.)
14065
30ea841d
DH
140662001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
14067
14068 * filesys.h (SCM_DIR_FLAG_OPEN, SCM_DIR_OPEN_P): Added.
14069
14070 (SCM_OPDIRP): Deprecated.
14071
14072 * filesys.c (scm_opendir): Use SCM_DIR_FLAG_OPEN instead of
14073 SCM_OPN.
14074
14075 (scm_readdir, scm_rewinddir): Don't use SCM_VALIDATE_OPDIR.
14076 Instead, give an explicit error message in case the directory is
14077 closed.
14078
14079 (scm_closedir, scm_dir_print): Rewritten to use SCM_DIR_OPEN_P
14080 instead of SCM_OPENP and SCM_CLOSEDP.
14081
14082 * validate.h (SCM_VALIDATE_OPDIR): Deprecated.
14083
312ae976
DH
140842001-01-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
14085
14086 * eval.c (inner_eval, scm_eval): Move all real functionality into
14087 inner_eval. Avoid to copy the expression twice by inlining some
14088 code from scm_i_eval.
14089
4567ed78
DH
140902001-01-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
14091
14092 * eval.c (scm_m_case): The 'else' clause of a 'case' statement
14093 now has to be the last clause, as required by R5RS. Thanks to
14094 Martin Grabmueller for the patch.
14095
10288a09
GH
140962001-01-18 Gary Houston <ghouston@arglist.com>
14097
14098 * ioext.c: further simplify scm_read_string_x_partial by defining
14099 a macro SCM_EBLOCK.
14100
8f379a8f
DH
141012001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
14102
14103 * gh_data.c (gh_ints2scm): Simplified using SCM_FIXABLE.
14104
5c75b29f
DH
141052001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
14106
14107 * __scm.h: Added comment about architecture and compiler
14108 properties that are required by guile.
14109
14110 (SCM_FIXNUM_BIT, SCM_MOST_POSITIVE_FIXNUM,
14111 SCM_MOST_NEGATIVE_FIXNUM): Moved to numbers.h.
14112
14113 (SCM_CHAR_BIT, SCM_LONG_BIT): Moved here from numbers.h.
14114
14115 * numbers.h (SCM_CHAR_BIT, SCM_LONG_BIT): Moved to __scm.h.
14116
14117 (SCM_FIXNUM_BIT, SCM_MOST_POSITIVE_FIXNUM,
14118 SCM_MOST_NEGATIVE_FIXNUM): Moved here from __scm.h.
14119
ac0c002c
DH
141202001-01-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
14121
14122 * __scm.h (SCM_FIXNUM_BIT): Added. The name is chosen in analogy
14123 to the names in limits.h.
14124
14125 * numbers.c (abs_most_negative_fixnum): Added.
14126
14127 (scm_quotient, scm_remainder): Fixed the fixnum-min / (abs
14128 fixnum-min) special case.
14129
14130 (scm_big_and): Fix for negative first parameter.
14131
14132 (scm_bit_extract): Fix for fixnum paramters.
14133 Thanks to Rob Browning for the bug report.
14134
14135 (scm_init_numbers): Initialize abs_most_negative_fixnum.
14136
debe0dc2
DH
141372001-01-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
14138
14139 * symbols.c (scm_symbol_bound_p): Fixed comment.
14140 Thanks to Chris Cramer.
14141
8a39e3fc
DH
141422001-01-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
14143
14144 * smob.[ch] (scm_make_smob_type): Return type is scm_bits_t now.
14145 Thanks to Bill Schottstaedt.
14146
322ec19d
ML
141472001-01-11 Michael Livshin <mlivshin@bigfoot.com>
14148
9a5fa6e9 14149 from Matthias Köppe:
1c938eb8 14150
322ec19d
ML
14151 * objects.h (SCM_SET_ENTITY_SETTER): new macro. SCM_ENTITY_SETTER
14152 casts its result, so doesn't yield an lvalue per ANSI C.
14153
14154 * goops.c (s_scm_sys_set_object_setter_x): use
14155 SCM_SET_ENTITY_SETTER.
14156 (clear_method_cache): use SCM_SET_ENTITY_PROCEDURE.
14157
14158 * gc.h (SCM_GC_SET_CARD_BVEC): new macro. SCM_GC_CARD_BVEC casts
14159 its result, so doesn't yield an lvalue per ANSI C.
14160 (SCM_GC_SET_CARD_FLAGS): ditto for SCM_GC_GET_CARD_FLAGS.
14161 (SCM_GC_CLR_CARD_FLAGS): redefined in terms of
14162 SCM_GC_SET_CARD_FLAGS.
14163 (SCM_GC_SET_CARD_FLAG, SCM_GC_CLR_CARD_FLAGS): ditto.
14164
14165 * gc.c (INIT_CARD): use the explicit setter macro to set the bvec.
14166
60d02d09
GH
141672001-01-08 Gary Houston <ghouston@arglist.com>
14168
14169 * validate.h (SCM_VALIDATE_SUBSTRING_SPEC_COPY): new macro.
14170 * ioext.c (scm_read_string_x_partial, scm_read_delimited_x),
14171 socket.c (scm_recvfrom): use the new macro, plus minor docstring
14172 changes.
14173 * ioext.c (scm_read_string_x_partial): don't crash if -1 is supplied
14174 for fdes. if current input port is used, check that it's a file
14175 port.
14176
c2da2648
GH
141772001-01-06 Gary Houston <ghouston@arglist.com>
14178
14179 * ioext.c (scm_read_string_x_partial): new procedure, implements
14180 read-string!/partial.
14181 * ports.c (scm_take_from_input_buffers): new procedure used by
14182 scm_read_string_x_partial.
14183 (scm_drain_input): use scm_take_from_input_buffers.
14184
4651d663
MV
141852001-01-06 Marius Vollmer <mvo@zagadka.ping.de>
14186
14187 * validate.h (SCM_VALIDATE_NUMBER): New.
14188
c0a5d888
ML
141892001-01-03 Michael Livshin <mlivshin@bigfoot.com>
14190
14191 * guardians.c (F_GREEDY, F_LISTED, F_DESTROYED, GREEDY_P,
14192 SET_GREEDY, LISTED_P, SET_LISTED, CLR_LISTED, DESTROYED_P,
14193 SET_DESTROYED): new defines/macros.
14194 (GUARDIAN_LIVE, GUARDIAN_ZOMBIES, GUARDIAN_NEXT): deleted.
14195 (add_to_live_list): takes a `guardian_t *' now, not SCM.
14196 (guardian_print): print more info.
14197 (guardian_apply): check if the guardian is destroyed, and throw an
14198 error if so. take one more optional argument `throw_p'.
14199 (scm_guard): depending on the value of `throw_p', return a boolean
14200 result.
14201 (scm_get_one_zombie): remove redundant property test.
14202 (guardian_t): represent the various (currently 3, I hope nothing
14203 more gets added) boolean fields as bit flags.
14204 (scm_guardian_destroyed_p, scm_guardian_greedy_p): new predicates.
14205 (scm_destroy_guardian_x): new procedure.
14206
14207 * guardians.h: added prototypes for `scm_guardian_greedy_p' and
14208 `scm_guardian_destroyed_p'. changed prototype for `scm_guard'.
14209
0c6d2191
GH
142102001-01-01 Gary Houston <ghouston@arglist.com>
14211
14212 * fports.c (fport_write): bugfix: handle short writes for
14213 unbuffered ports too. optimize the buffered case by minimizing
14214 the number of write/flush calls.
14215 (write_all): new helper procedure.
14216
a51fe247 14217The ChangeLog continues in the file: "ChangeLog-2000"
d9f71a07
LC
14218
14219;; Local Variables:
14220;; coding: utf-8
14221;; End: