Fix misleading output from `(help rationalize)'
[bpt/guile.git] / libguile / ChangeLog
CommitLineData
76dae881
NJ
12008-08-02 Neil Jerram <neil@ossau.uklinux.net>
2
3 * numbers.c (scm_rationalize): Update docstring to match the
4 manual (which is more correct). Change argument "err" to "eps",
5 also to match the manual.
6
2b3df509
NJ
72008-07-17 Neil Jerram <neil@ossau.uklinux.net>
8
9 From Thiemo Seufer <ths@networkno.de>:
10
11 * gc_os_dep.c (CPP_WORDSZ, ALIGN_DOUBLE, DATAEND,
12 DYNAMIC_LOADING): Added #defines.
13 (_fdata, _end): Added declarations.
14 (DATASTART): Use _fdata instead of __data_start.
15 (STACKBOTTOM): Changed from 0x80000000 to 0x7fff8000.
16
450be18d
LC
172008-07-16 Ludovic Courtès <ludo@gnu.org>
18
19 * gen-scmconfig.h.in (SCM_I_GSC_HAVE_STRUCT_DIRENT64): New.
20 * gen-scmconfig.c (main): Produce definitions of
21 `SCM_HAVE_STRUCT_DIRENT64' and `SCM_HAVE_READDIR64_R'.
22 * _scm.h (dirent_or_dirent64): Depend on
23 `SCM_HAVE_STRUCT_DIRENT64', for the sake of HP-UX 11.11.
24 (readdir_r_or_readdir64_r): Depend on `SCM_HAVE_READDIR64_R',
25 for HP-UX 11.11.
26
071bb6a8
LC
272008-07-05 Ludovic Courtès <ludo@gnu.org>
28
29 * strings.c (scm_c_symbol_length): New function.
30 * strings.h (scm_c_symbol_length): New declaration.
31
3e28462f
LC
322008-07-04 Ludovic Courtès <ludo@gnu.org>
33
b6137ed7
LC
34 * posix.h (scm_i_locale_mutex): Don't declare as `SCM_INTERNAL'
35 since it's needed by `libguile-i18n'. Reported by Patrick
36 Horgan <phorgan1@gmail.com>.
37
3e28462f
LC
38 * __scm.h (SCM_INTERNAL): Add `extern' so that these symbols are
39 not considered as "common" by GCC 4.3. Reported by Patrick
40 Horgan <phorgan1@gmail.com>.
41
95c6523b
LC
422008-06-28 Ludovic Courtès <ludo@gnu.org>
43
47871d5a
LC
44 * Makefile.am (INCLUDES): Renamed to...
45 (AM_CPPFLAGS): this, to match current Automake conventions.
46 Users updated.
47
95c6523b
LC
48 * tags.h (SCM_UNPACK): Disable type-checking for `__DECC' and
49 `__HP_cc'. Reported by Peter O'Gorman <pogma@thewrittenword.com>.
50
6eadcdab
LC
512008-06-02 Ludovic Courtès <ludo@gnu.org>
52
53 * deprecated.c (maybe_close_port): Rename EXCEPT to EXCEPT_SET
54 to workaround `#define except' on Tru64. Reported by Peter
55 O'Gorman <pogma@thewrittenword.com>.
56
102dbb6f
LC
572008-05-31 Ludovic Courtès <ludo@gnu.org>
58
59 * __scm.h (SCM_INTERNAL): New macro.
60 * *.h: Use it to mark as internal `scm_i_' and `scm_init_'
61 functions that are not used by public macros or inline
62 functions.
63
184af225
JG
642008-05-14 Julian Graham <joolean@gmail.com>
65
66 * threads.c (fat_mutex)[recursive]: New field.
67 (make_fat_mutex): Adjust initialization to reflect changes to
68 mutex lock level semantics.
69 (fat_mutex_lock, fat_mutex_unlock): Add support for unowned
70 mutexes and locking mutexes on behalf of other threads.
71 (scm_lock_mutex, scm_lock_mutex_timed): Update to reflect
72 signature change to fat_mutex_lock.
73 (scm_mutex_owner, scm_mutex_level, scm_mutex_locked_p): New /
74 re-enabled functions.
75 * threads.h (scm_mutex_owner, scm_mutex_level,
76 scm_mutex_locked_p): Prototypes for new functions.
77
e4c1d4cf
NJ
782008-05-12 Neil Jerram <neil@ossau.uklinux.net>
79
80 * discouraged.c: Expand DEFFROM and DEFTO macros, to avoid
81 compiler warnings about excess semicolons. (Reported by Didier
82 Godefroy.)
83
346e4402
NJ
842008-05-08 Neil Jerram <neil@ossau.uklinux.net>
85
86 * throw.c (scm_ithrow): For IA64 add a return statement, to
87 appease GCC.
88
89 * threads.h (scm_i_thread): New IA64 fields:
90 register_backing_store_base and pending_rbs_continuation.
91
92 * threads.c (guilify_self_1): For IA64: cap RBS base address at
93 the current value of scm_ia64_ar_bsp, and store the capped value
94 in thread state.
95 (SCM_MARK_BACKING_STORE): Use thread->register_backing_store_base
96 instead of scm_ia64_register_backing_store_base().
97 (scm_threads_mark_stacks): Add "&" in "&t->regs", so that the code
98 works both for jmp_buf defined as an array, and jmp_buf defined as
99 a struct.
100
101 * continuations.h (scm_t_contregs): Remove `fresh' and `ctx'
102 fields; these are now inside the IA64 definition of `jmp_buf'.
103
104 * continuations.c (scm_make_continuation): Simplify, by moving
105 some of the IA64 code inside the definition of "setjmp", and by
106 some obvious commonizations. For IA64 register backing store
107 (RBS) stack base, use thread->register_backing_store_base instead
108 of scm_ia64_register_backing_store_base().
109 (copy_stack): For IA64, store pointer to continuation being
110 invoked in thread state, so we can restore the continuation's RBS
111 stack just before the next setcontext call.
112 (copy_stack_and_call): Don't restore RBS stack explicitly here.
113 It will be restored, if appropriate, inside the longjmp call.
114 (scm_ia64_longjmp): New function.
115
116 * __scm.h (setjmp, longjmp, jmp_buf): For IA64, implement using
117 getcontext and setcontext.
118
7a35784c
LC
1192008-05-07 Ludovic Courtès <ludo@gnu.org>
120
121 * numbers.c (scm_from_complex_double): Mark as `SCM_UNUSED'.
122 This fixes compilation with `-Werror' on FreeBSD 6.2 (i386).
123
6d4e1f62
NJ
1242008-05-05 Neil Jerram <neil@ossau.uklinux.net>
125
126 * c-tokenize.lex: #define YY_NO_INPUT.
127
bd22f1c7
LC
1282008-04-26 Ludovic Courtès <ludo@gnu.org>
129
130 * read.c (scm_read_sexp): Remove extraneous semi-colon at
131 end-of-line, which broke compilation with GCC 2.7. Reported by
132 Alain Guibert <alguibert+bts@free.fr>.
133
535b3592
LC
1342008-04-24 Ludovic Courtès <ludo@gnu.org>
135
136 * Makefile.am (DEFAULT_INCLUDES): New. Fixes compilation on
137 Tru64 where our "random.h" would shadown libc's one.
138 (INCLUDES): Add "-I$(top_buildir)", which is normally in
139 `DEFAULT_INCLUDES'.
140 * gen-scmconfig.c: Include <libguile/gen-scmconfig.h>, not
141 "gen-scmconfig.h" since that file is under `$(builddir)'.
142
f5c2af4b
LC
1432008-04-16 Ludovic Courtès <ludo@gnu.org>
144
145 * ports.c (scm_getc, scm_putc, scm_puts): Moved...
146 * inline.h: ... here. Noticeably improves `read' performance.
147
ef4cbc08
LC
1482008-04-15 Ludovic Courtès <ludo@gnu.org>
149 Julian Graham <joolean@gmail.com>
150
151 * read.c (scm_keyword_postfix): New.
152 (scm_read_opts): Update docstring for `keywords'.
153 (scm_read_mixed_case_symbol): Add support for postfix keywords.
154
07db6fcd
LC
1552008-04-13 Ludovic Courtès <ludo@gnu.org>
156
157 * inline.h (SCM_C_USE_EXTERN_INLINE): New macro. Use it to make
158 sure "extern" declarations are produced when "extern inline" is
9dca8935 159 used. Simplify macrology around inline definitions.
07db6fcd 160
7dc9ae71
LC
1612008-04-10 Ludovic Courtès <ludo@gnu.org>
162
163 * inline.h (SCM_C_EXTERN_INLINE): Special-case Apple's GCC
164 4.0-based compiler, which doesn't support GNU inline semantics
165 at all in C99 mode but doesn't define `__GNUC_STDC_INLINE__'.
166 See http://thread.gmane.org/gmane.network.gnutls.general/1135 .
167
54ee7cdf
AW
1682008-04-10 Andy Wingo <wingo@pobox.com>
169
4650d115
AW
170 * struct.c (scm_struct_ref, scm_struct_set_x): "Light" structs
171 have no hidden words (members of the SCM_STRUCT_DATA(x) array
172 accessed with negative indices). In that case, determine the
173 number of fields from the length of the struct layout
174 descriptor. (Most GOOPS instances are light structs.)
175
4125c767
AW
176 * goops.c (wrap_init): Initialize 'u' slots to 0, not some random
177 SCM value.
178
179 * goops.c (get_slot_value, set_slot_value): In the struct
54ee7cdf
AW
180 allocation case, don't poke the slots array directly -- we should
181 go through struct-ref/struct-set! code so that we get the
182 permissions and allocation ('u' versus 'p') correct.
183
979eade6
LC
1842008-04-03 Ludovic Courtès <ludo@gnu.org>
185
186 * inline.h (SCM_C_EXTERN_INLINE): New macro, addresses the
187 "extern inline" semantic change in C99 mode with GCC 4.3 and
188 later and the warning in C99 mode with GCC 4.2. Use it in the
189 inline function definitions.
190
2a1d0688
NJ
1912008-03-24 Neil Jerram <neil@ossau.uklinux.net>
192
193 Applying patch from Julian Graham, containing minor fixes to his
194 thread enhancements:
195
196 * threads.c (to_timespec): Change 1000000 multiplier to
197 1000000000.
198 (unchecked_unlock_sym, allow_external_unlock_sym,
199 recursive_sym): Use SCM_SYMBOL.
200 (scm_make_mutex_with_flags): When raising unsupported option
201 error, report what the unsupported option was.
202 (fat_mutex_unlock): When raising errors, unlock m->lock first.
203 (fat_cond_timedwait): Removed.
204 (scm_timed_wait_condition_variable): Call fat_mutex_unlock
205 directly instead of via fat_cond_timedwait.
206
c2ad98ad
LC
2072008-03-10 Ludovic Courtès <ludo@gnu.org>
208
209 * eval.c, filesys.c: Enclose `alloca' blob in `#ifndef alloca',
210 as per Gnulib's `alloca'. This should fix compilation on
211 FreeBSD 6.
212
bca69a9f
NJ
2132008-03-09 Neil Jerram <neil@ossau.uklinux.net>
214
215 * numbers.c: Only define scm_from_complex_double if it will
216 actually be used.
217
6180e336
NJ
2182008-03-08 Julian Graham <joolean@gmail.com>
219
241d9cea
NJ
220 * threads.c (scm_join_thread_timed, scm_thread_p,
221 scm_make_mutex_with_flags, scm_lock_mutex_timed,
222 scm_unlock_mutex_timed, scm_mutex_p, scm_condition_variable_p): New
6180e336
NJ
223 functions.
224 (thread_mark): Updated to mark new struct field `mutexes'.
241d9cea 225 (do_thread_exit): Notify threads waiting on mutexes locked by exiting
6180e336 226 thread.
241d9cea
NJ
227 (scm_join_thread, scm_make_mutex, scm_make_recursive_mutex,
228 scm_mutex_lock): Reimplement in terms of their newer
6180e336
NJ
229 counterparts.
230 (scm_abandoned_mutex_error_key): New symbol.
231 (fat_mutex)[unchecked_unlock, allow_external_unlock]: New fields.
232 (fat_mutex_lock): Reimplement to support timeouts and abandonment.
233 (fat_mutex_trylock, scm_try_mutex): Remove fat_mutex_trylock and
234 reimplement scm_try_mutex as a lock attempt with a timeout of zero.
235 (fat_mutex_unlock): Allow unlocking from other threads and unchecked
236 unlocking; implement in terms of condition variable wait.
241d9cea 237 (scm_timed_wait_condition_variable): Reimplement in terms of
6180e336
NJ
238 fat_mutex_unlock.
239 * threads.h (scm_i_thread)[mutexes]: New field.
240 (scm_join_thread_timed, scm_thread_p, scm_lock_mutex_timed,
241d9cea 241 scm_unlock_mutex_timed, scm_mutex_p, scm_condition_variable_p):
6180e336
NJ
242 Prototypes for new functions.
243
61b6542a
LC
2442008-03-06 Ludovic Courtès <ludo@gnu.org>
245
246 * eval.c (scm_eval): If MODULE_OR_STATE is not a dynamic state,
247 make sure it's a module. Reported by David I. Lehn.
248
3f520967
LC
2492008-03-02 Ludovic Courtès <ludo@gnu.org>
250
251 * pairs.h (scm_is_pair): Moved declaration to `inline.h'.
252 * inline.h: Make sure `extern' declarations are not produced
253 when `inline' is supported but GCC is not used. This
254 fixes "mixed linkage" errors with compilers such as
255 DEC/Compaq/HP CC.
256
fa80e280
NJ
2572008-02-27 Neil Jerram <neil@ossau.uklinux.net>
258
259 * _scm.h (errno): Remove declarations that have been there
260 forever, and are known to conflict on some platforms with that
261 provided by <errno.h>, which we include unconditionally. If
262 <errno.h> doesn't provide a errno declaration, what is the point
263 of it?
264
a2c25234
LC
2652008-02-23 Ludovic Courtès <ludo@gnu.org>
266
267 * numbers.c (scm_make_rectangular): Rename argument to
268 `real_part' and `imaginary_part' to work around Solaris 2.10
269 headers which define `imaginary' as a macro. Patch by Tim
270 Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>.
271
bfb64eb4
LC
2722008-02-22 Ludovic Courtès <ludo@gnu.org>
273
4fcb27c4
LC
274 * read.c (strncasecmp): Add declaration when
275 `HAVE_DECL_STRNCASECMP' is undefined. Fixes compilation on
276 NetBSD 1.6.
277
bfb64eb4
LC
278 * gc.c (scm_ia64_ar_bsp)[linux]: Don't discard `const' qualifier
279 of OPAQUE.
280
5305df84
LC
2812008-02-21 Ludovic Courtès <ludo@gnu.org>
282
283 Fix bug #22369.
284
285 * goops.c (scm_add_slot): Add `SCM_UNDEFINED' as last argument
a2c25234
LC
286 to `scm_list_n ()'. Thanks to René Köcher
287 <shirk87@googlemail.com>.
5305df84 288
25a640ca
LC
2892008-02-17 Ludovic Courtès <ludo@gnu.org>
290
291 * script.c (scm_compile_shell_switches): Update copyright year.
292
9a6fac59
LC
2932008-02-16 Ludovic Courtès <ludo@gnu.org>
294
295 * gc_os_dep.c: Add NetBSD/alpha support. Patch by Greg Troxel
296 <gdt@ir.bbn.com>.
297
5b5179f8
LC
2982008-02-12 Ludovic Courtès <ludo@gnu.org>
299
300 * guile-snarf.in (tempdir): Honor `$TMPDIR'.
301
4b26c03e
NJ
3022008-02-11 Neil Jerram <neil@ossau.uklinux.net>
303
304 * numbers.c (SCM_COMPLEX_VALUE): Use GUILE_I instead of _Complex_I
305 directly, and only if GUILE_I was defined by the configure step.
306 (scm_log, scm_log10, scm_exp, scm_sqrt): Use SCM_COMPLEX_VALUE
307 code only if SCM_COMPLEX_VALUE is defined.
308
7f74cf9a
LC
3092008-02-07 Ludovic Courtès <ludo@gnu.org>
310
311 Fix bug #21378.
312 Thanks to David Diffenbaugh <davediff@nbcs.rutgers.edu>.
313
314 * read.c (scm_read_quote): Don't use `__FUNCTION__' since it is
315 not supported by Sun CC on Solaris 9.
316 (scm_read_keyword): Likewise.
317 * strings.c (scm_take_locale_stringn): Remove
318 `SCM_C_INLINE_KEYWORD' to allow compilation with Sun CC.
319
86a597f8
NJ
3202008-02-07 Julian Graham <joolean@gmail.com>
321
241d9cea
NJ
322 * threads.c (do_thread_exit, scm_cancel_thread,
323 scm_set_thread_cleanup_x, scm_thread_cleanup): Lock on thread-specific
86a597f8
NJ
324 admin mutex instead of `thread_admin_mutex'.
325 * threads.h (scm_i_thread)[admin_mutex]: New field.
326 * throw.c (make_jmpbuf): Don't enter critical section during thread
327 spawn -- there is a possibility of deadlock if other threads are
328 exiting.
241d9cea 329
4a19ed04
NJ
3302008-02-06 Neil Jerram <neil@ossau.uklinux.net>
331
332 * gc-malloc.c (scm_gc_malloc): Return NULL if requested size is 0.
333 (scm_gc_free): Don't call `free' if mem is NULL.
334
189171c5
LC
3352008-02-06 Ludovic Courtès <ludo@gnu.org>
336
337 * numbers.c (scm_i_mkbig, scm_i_long2big, scm_i_ulong2big,
338 scm_i_clonebig, scm_i_bigcmp, scm_i_dbl2big, scm_i_dbl2num,
339 scm_i_normbig): Remove `SCM_C_INLINE_KEYWORD' since these are
340 declared as `extern' in `numbers.h'. This precluded compilation
341 on Solaris 9 with Sun CC (reported by David Halik
342 <dhalik@nbcs.rutgers.edu>).
343
d05bcb2e
NJ
3442008-02-05 Neil Jerram <neil@ossau.uklinux.net>
345
346 * fports.c (fport_seek): Make dependent on GUILE_USE_64_CALLS.
347
348 * _scm.h: Make definition of CHOOSE_LARGEFILE depend on
349 GUILE_USE_64_CALLS.
350
3ac8359a
NJ
3512008-02-01 Neil Jerram <neil@ossau.uklinux.net>
352
353 * modules.c (the_root_module): Moved before scm_current_module.
354 (scm_current_module): Return the root module if `the-module' fluid
355 gives #f.
356
d3cf93bc
NJ
3572008-01-22 Neil Jerram <neil@ossau.uklinux.net>
358
7df13834
NJ
359 * COPYING: Removed.
360
d3cf93bc
NJ
361 * __scm.h, _scm.h, weaks.c: Update copyright statement to LGPL.
362
15bd90ea
NJ
3632008-01-18 Neil Jerram <neil@ossau.uklinux.net>
364
365 * hashtab.c (scm_hash_fn_create_handle_x): If supplied assoc_fn
366 returns neither a pair nor #f, signal a wrong-type-arg error.
367 (Thanks to Gregory Marton for reporting this.)
368
5c004b6d
NJ
3692007-12-29 Neil Jerram <neil@ossau.uklinux.net>
370
371 * gc.c (mark_gc_async): Change "func_data" to "fn_data", to avoid
372 clash with AIX header file.
373 * hooks.c (scm_c_hook_add, scm_c_hook_remove): Same again.
374 * hooks.h (scm_t_c_hook_function, scm_c_hook_add,
375 scm_c_hook_remove): Same again.
376
9cc37597
LC
3772007-12-08 Ludovic Courtès <ludo@gnu.org>
378
379 * __scm.h (SCM_EXPECT, SCM_LIKELY, SCM_UNLIKELY): New macros.
380 (SCM_ASSERT, SCM_ASSERT_TYPE, SCM_ASRTGO, SCM_GASSERT0,
381 SCM_GASSERT1, SCM_GASSERT2, SCM_GASSERTn): Use them.
382 * eval.c (ASSERT_SYNTAX, ASSERT_SYNTAX_2): Likewise.
383 * eval.i.c (CEVAL): Use branch prediction hints for syntax
384 errors, wrong number of arguments and similar.
385 * numbers.c (scm_sum): Use `SCM_LIKELY' for the sum of two
386 immediate numbers.
387 (scm_difference, scm_product, scm_i_divide): Likewise.
388 * validate.h (SCM_ASSERT_RANGE): Use `SCM_UNLIKELY'.
389
7d1fc872
LC
3902007-12-04 Ludovic Courtès <ludo@gnu.org>
391
693758d5
LC
392 * ports.c (scm_c_read): Validate PORT as an open input port.
393 (scm_c_write): Validate PORT as an open output port.
394
7d1fc872
LC
395 * socket.c (scm_accept): Leave guile mode using
396 `scm_std_select ()' before calling `accept(2)'. Reported by
397 dskr <dskr@mac.com>.
398
ee834df4
LC
3992007-10-27 Ludovic Courtès <ludo@gnu.org>
400
401 * fports.c (scm_i_evict_port): Expect a port, rather than a pair
402 containing the port. Fixes a bug in the new port table (2007-08-26).
403 (scm_evict_ports): Use `scm_c_port_for_each ()'.
404
acbfb594
NJ
4052007-10-21 Neil Jerram <neil@ossau.uklinux.net>
406
407 * eval.c (unmemoize_delay): Extend the environment before
408 unmemoizing the promise thunk. This fixes a segmentation fault
409 reported by Frank Schwidom.
410
2e77f720
LC
4112007-10-20 Julian Graham <joolean@gmail.com>
412
413 Add support for thread cancellation and user-defined thread
414 cleanup handlers. Small rework by Ludovic Courtès.
415
416 * null-threads.h (scm_i_pthread_cancel,
417 scm_i_pthread_cleanup_push, scm_i_pthread_cleanup_pop): New.
418 * pthread-threads.h (scm_i_pthread_cancel,
419 scm_i_pthread_cleanup_push, scm_i_pthread_cleanup_pop): New.
420 * scmsigs.c (scm_i_signal_delivery_thread,
421 signal_delivery_thread_mutex): New.
422 (signal_delivery_thread): Leave when `read_without_guile ()'
423 returns zero.
424 (start_signal_delivery_thread): Acquire SIGNAL_DELIVERY_THREAD
425 before spawning the thread. Initialize
426 SCM_I_SIGNAL_DELIVERY_THREAD.
427 (ensure_signal_delivery_thread): Renamed to...
428 (scm_i_ensure_signal_delivery_thread): this.
429 (scm_i_close_signal_pipe): New.
430 * scmsigs.h: Updated.
431 * threads.c (thread_mark): Mark `t->cleanup_handler'.
432 (guilify_self_1): Initialize `t->cleanup_handler' and
433 `t->canceled'.
434 (do_thread_exit): Invoke `t->cleanup_handler'.
435 (on_thread_exit): Call `scm_i_ensure_signal_delivery_thread ()'.
436 Call `scm_i_close_signal_pipe ()' when the next-to-last thread
437 vanishes.
438 (scm_leave_guile_cleanup): New.
241d9cea 439 (scm_i_with_guile_and_parent): Use `scm_i_pthread_cleanup_push ()'
2e77f720
LC
440 and `scm_leave_guile_cleanup ()' to leave guile mode, rather
441 than call `scm_leave_guile ()' after FUNC.
442 (scm_cancel_thread, scm_set_thread_cleanup_x,
443 scm_threads_cleanup): New.
444 (scm_all_threads): Remove SCM_I_SIGNAL_DELIVERY_THREAD from the
445 returned list.
446 * threads.h (scm_i_thread)[cleanup_handler, canceled]: New
447 fields.
448 Add declarations of new functions.
241d9cea 449
d41668fa
LC
4502007-10-17 Ludovic Courtès <ludo@gnu.org>
451
452 * read.c (CHAR_IS_BLANK_): Add `\r' (ASCII 0x0d). This fixes a
453 regression compared to 1.8.2. Reported by Puneet
454 <schemer@gmail.com>.
455
66302618
LC
4562007-10-10 Ludovic Courtès <ludo@gnu.org>
457
458 * pthread-threads.h (SCM_I_PTHREAD_MUTEX_INITIALIZER): Check
459 `SCM_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER'.
460 * gen-scmconfig.h.in
461 (SCM_I_GSC_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER): New.
462 * gen-scmconfig.c (main): Define
463 `SCM_NEED_BRACES_ON_PTHREAD_MUTEX_INITIALIZER'.
464
1445e449
LC
4652007-10-04 Ludovic Courtès <ludo@gnu.org>
466
467 * i18n.c (scm_make_locale)[!USE_GNU_LOCALE_API]: Don't call
468 `leave_locale_section ()' on failure of
469 `enter_locale_section ()' since the mutex is not held and locale
470 settings are unchanged.
471 (scm_nl_langinfo)[!USE_GNU_LOCALE_API]: Use
241d9cea 472 `restore_locale_settings ()' instead of `leave_locale_section ()'
1445e449 473 since the mutex is not held.
241d9cea 474
29776e85
LC
4752007-10-02 Ludovic Courtès <ludo@gnu.org>
476
477 * threads.c (on_thread_exit): Don't call `scm_leave_guile ()'
478 since we're already in non-guile mode. Reported by Greg Toxel
479 for NetBSD.
480
61d3568b
LC
4812007-10-01 Ludovic Courtès <ludo@gnu.org>
482
483 * ports.c (flush_output_port): Expect directly a port instead of
484 a pair. Fixes a bug in the new port table (2007-08-26).
485
68eccd8b
KR
4862007-09-11 Kevin Ryde <user42@zip.com.au>
487
488 * posix.c (scm_putenv): Confine the putenv("NAME=") bit to mingw, use
489 putenv("NAME") as the fallback everywhere else. In particular this is
490 needed for solaris 9. Reported by Frank Storbeck.
241d9cea 491
454866e0
LC
4922007-09-03 Ludovic Courtès <ludo@gnu.org>
493
494 * read.c (flush_ws): Handle SCSH block comments.
495
f43f3620
LC
4962007-09-03 Ludovic Courtès <ludo@gnu.org>
497
498 Fix alignment issues which showed up at least on SPARC.
499
500 * socket.c (scm_t_max_sockaddr, scm_t_getsockopt_result): New.
501 (scm_inet_pton): Change DST to `scm_t_uint32' for correct
502 alignment.
503 (scm_getsockopt): Change OPTVAL to `scm_t_getsockopt_result' for
504 correct alignment.
505 (_scm_from_sockaddr): Change ADDRESS to `scm_t_max_sockaddr *'.
506 (scm_from_sockaddr): Cast ADDRESS to `scm_t_max_sockaddr *'.
507 (MAX_SIZE_UN, MAX_SIZE_IN6): Removed.
508 (scm_accept, scm_getsockname, scm_getpeername, scm_recvfrom):
509 Use `scm_t_max_sockaddr' instead of "char max_addr[MAX_ADDR_SIZE]".
510
8d4d5dfc
KR
5112007-09-03 Kevin Ryde <user42@zip.com.au>
512
513 * numbers.c (scm_log): Test HAVE_CLOG as well as HAVE_COMPLEX_DOUBLE
514 before using clog(). It's possible for gcc to provide the "complex
515 double" type, but for the system not to have the complex funcs.
516 (scm_exp): Ditto HAVE_CEXP for cexp().
517 (clog, cexp, carg): Remove fallback definitions. These only
518 duplicated the code within scm_log and scm_exp, and the latter have to
519 exist for the case when there's no "complex double". So better just
520 fix up the conditionals selecting between the complex funcs and plain
521 doubles than worry about fallbacks.
522
1ac5fb45
LC
5232007-09-02 Ludovic Courtès <ludo@gnu.org>
524
525 * socket.c (scm_make_socket_address): Free C_ADDRESS after use.
526 This fixes a memory leak.
527
b87e6d04
HWN
5282007-08-26 Han-Wen Nienhuys <hanwen@lilypond.org>
529
5dbc6c06
HWN
530 * fports.c gc-card.c gc.c gc.h ioext.c ports.c ports.h weaks.h
531 gc.c: replace port table with weak hash table. This simplifies
532 memory management, and fixes freed cells appearing in
533 port-for-each output.
534
b87e6d04
HWN
535 * init.c (cleanup_for_exit): abort cleanup if init_mutex is still
536 held.
537
2baec6a9
LC
5382007-08-23 Ludovic Courtès <ludo@gnu.org>
539
492faee1 540 * read.c (scm_read_quote): Record position and copy source
8d4d5dfc 541 expression when asked to. Reported by Kevin.
492faee1 542
2baec6a9
LC
543 * stime.c: Define `_REENTRANT' only if not already defined.
544
1f11c61a
KR
5452007-08-21 Kevin Ryde <user42@zip.com.au>
546
547 * gc-card.c (scm_i_card_statistics): Record scm_tc7_number types as
548 tc16 values so big, real, complex and fraction can be distinguished.
549
550 (scm_i_tag_name): Return "number" for scm_tc7_number, not NULL. NULL
551 was making numbers come out as "type 23" in gc-live-object-stats.
552 Fix tests of the tc16 number types, they were checked under
553 scm_tc7_number, but the values went down the tag>=255 smob case.
554 Put smob case under scm_tc7_smob instead of using tag>=255, per
241d9cea 555 recommendation in comments with scm_tc7_smob to use symbolic values.
1f11c61a
KR
556 Use SCM_TC2SMOBNUM to extract scm_smobs index, instead of explicit
557 code. Lose some unnecessary "break" statements.
558
559 (scm_i_card_statistics): Use scm_hashq_create_handle_x and modify the
560 element returned, rather than two lookups scm_hashq_ref and
561 scm_hashq_set_x.
562
949ec9f9
KR
5632007-08-17 Kevin Ryde <user42@zip.com.au>
564
565 * stime.c: Add #define _REENTRANT, to get gmtime_r() prototype on
566 solaris 2.6. Reported by anirkko.
567
6caac03c
LC
5682007-07-29 Ludovic Courtès <ludo@gnu.org>
569
570 * Makefile.am (INCLUDES): Added Gnulib includes.
571 (gnulib_library): New.
572 (libguile_i18n_v_@LIBGUILE_I18N_MAJOR@_la_LIBADD): Added
573 `$(gnulib_library)'.
574 (libguile_la_LIBADD): Likewise.
575
576 * posix.c: Don't define `_GNU_SOURCE' since `gl_EARLY' arranges
577 to define it when available.
578 * srfi-14.c: Likewise.
f7439099
LC
579 * i18n.c: Likewise. Include Gnulib's <alloca.h>
580 * eval.c: Include Gnulib's <alloca.h>.
581 * filesys.c: Likewise.
582 * read.c: Don't include <strings.h> and don't provide an
583 `strncasecmp ()' replacement; use Gnulib's <string.h> and
584 `strncasecmp ()' instead.
6caac03c 585
e08f3f7a
LC
5862007-07-25 Ludovic Courtès <ludo@gnu.org>
587
588 * eval.c (macroexp): When `scm_ilength (res) <= 0', return
589 immediately. This used to produce a circular memoized
590 expression, e.g., for `(set (quote x) #t)'.
591
7337d56d
LC
5922007-07-22 Ludovic Courtès <ludo@gnu.org>
593
594 Overhauled the reader, making it faster.
595
596 * gdbint.c (tok_buf, tok_buf_mark_p): Removed.
597 (gdb_read): Don't use a token buffer. Use `scm_read ()' instead
598 of `scm_lreadr ()'.
599
600 * read.c: Overhauled. No longer use a token buffer. Use a
601 on-stack C buffer in the common case and use Scheme strings when
602 larger buffers are needed.
603 * read.h (scm_grow_tok_buf, scm_flush_ws, scm_casei_streq,
604 scm_lreadr, scm_lreadrecparen): Removed.
605 (scm_i_input_error): Marked as `SCM_NORETURN'.
606
df449722
LC
6072007-07-15 Ludovic Courtès <ludo@gnu.org>
608
609 * script.c (scm_compile_shell_switches): Updated copyright year.
610
b1f57ea4
LC
6112007-07-11 Ludovic Courtès <ludo@gnu.org>
612
613 * goops.c (scm_sys_method_more_specific_p): Added docstring.
614 Make sure LEN is greater than or equal to the minimum length of
615 specializers of M1 and M2. This fixes a segfault later on in
616 `more_specificp ()' if TARGS is too small. Reported by Marco
617 Maggi <marco.maggi-ipsu@poste.it>.
618
d3075c52
LC
6192007-06-26 Ludovic Courtès <ludo@gnu.org>
620
621 * fluids.c (next_fluid_num): When growing ALLOCATED_FLUIDS, make
622 sure to free the previous array after the new one has been
623 installed. This leak is made visible by running
624 "(define l (map (lambda (i) (make-fluid)) (iota 255)))"
625 from the REPL within Valgrind.
626
7a5fb796
LC
6272007-06-12 Ludovic Courtès <ludo@chbouib.org>
628
629 * socket.c (scm_inet_ntop): In the `AF_INET' case, declare `addr4'
630 as an `scm_t_uint32' rather than re-using `addr6'. This fixes a
631 bus error on SPARC (and possibly others) due to unaligned access.
632
a1ef7406
LC
6332007-06-07 Ludovic Courtès <ludovic.courtes@laas.fr>
634
635 * posix.c (scm_ttyname): Check whether RESULT is NULL before
636 making a string from it (reported by Dan McMahill). Don't call
637 `scm_from_locale_string ()' before the mutex is released.
638
3dcf3373
LC
6392007-05-26 Ludovic Courtès <ludo@chbouib.org>
640
641 * eval.c (scm_m_define): Updated comment. Changed order for value
642 evaluation and `scm_sym2var ()' call, which is perfectly valid per
643 R5RS. This reverts the change dated 2004-04-22 by Dirk Herrmann.
644
608860a5
LC
6452007-05-05 Ludovic Courtès <ludo@chbouib.org>
646
647 Implemented lazy duplicate binding handling.
648
649 * modules.c (scm_export): Renamed to...
650 (scm_module_export): This. Now public.
651 (module_variable): Removed.
652 (default_duplicate_binding_procedures_var): New variable.
653 (default_duplicate_binding_handlers, resolve_duplicate_binding,
654 module_imported_variable, scm_module_local_variable,
655 scm_module_variable): New functions.
656 (scm_module_import_interface): Rewritten.
657 (scm_module_reverse_lookup): Exported as a Scheme function.
658 * modules.h (scm_module_index_duplicate_handlers,
659 scm_module_index_import_obarray): New macros.
660 (scm_module_variable, scm_module_local_variable,
661 scm_module_export): New declarations.
662
1911e3da
LC
6632007-04-17 Ludovic Courtès <ludovic.courtes@laas.fr>
664
665 * numbers.c: Commented out trailing `HAVE_COMPLEX_DOUBLE' after
666 `#endif'. Use `#ifndef HAVE_XXX' rather than `#if !HAVE_XXX'.
667
1d8ce4c0
HWN
6682007-04-09 Han-Wen Nienhuys <hanwen@lilypond.org>
669
670 * numbers.c (carg): provide carg, cexp, clog in case they are
671 missing.
672
afb49959
LC
6732007-03-12 Ludovic Courtès <ludovic.courtes@laas.fr>
674
675 * i18n.c (scm_nl_langinfo): `#ifdef'd uses of `GROUPING',
676 `FRAC_DIGITS', etc., which are GNU extensions. Reported by
677 Steven Wu.
678
b3aa4626
KR
6792007-03-08 Kevin Ryde <user42@zip.com.au>
680
681 * struct.c, struct.h (scm_make_vtable): New function, providing
682 `make-vtable'.
683 * stacks.c (scm_init_stacks): Use it.
684
6852007-03-06 Kevin Ryde <user42@zip.com.au>
686
687 * struct.c (scm_make_struct): Check for R,W,O at end of layout when
688 allocating a tail array. If there's no such then those tail fields
689 are uninitialized and garbage SCMs there can cause a segv if printed
690 (after fetching with struct-ref).
691
6922007-02-22 Kevin Ryde <user42@zip.com.au>
693
694 * scmsigs.c (scm_sleep): In docstring, cross refence usleep.
695 (scm_usleep): Update docstring per manual, cross reference sleep.
696
697 * struct.c (scm_make_struct): Move SCM_CRITICAL_SECTION_END up so that
698 scm_struct_init is not within that section. scm_struct_init can
699 thrown an error, which within a critical section results in an
700 abort().
701
03291373
NJ
7022007-02-19 Neil Jerram <neil@ossau.uklinux.net>
703
704 * Makefile.am (noinst_HEADERS): Add private-options.h, so that it
705 is included in the distribution.
652dbce6 706 (noinst_HEADERS): And the same for eval.i.c.
03291373 707
a2f00b9b
LC
7082007-01-31 Ludovic Courtès <ludovic.courtes@laas.fr>
709
710 * i18n.c: Include "libguile/threads.h" and "libguile/posix.h"
711 unconditionally. Include <langinfo.h> and <nl_types.h> when
712 available.
713 (SCM_I18N_STRINGIFY, SCM_LOCALE_CATEGORY_MASK,
714 SCM_LIST_OR_INTEGER_P): New macros.
715 (LC_*_MASK): When `USE_GNU_LOCALE_API' is undefined, define them
716 as powers of two instead of `(1 << LC_*)'.
717 (scm_i_locale_free): New function/macro.
718 (scm_global_locale): New global variable.
719 (smob_locale_free): Use `scm_i_locale_free ()'.
720 (smob_locale_mark): Check whether the SMOB is `%global-locale'.
721 (get_current_locale_settings): Return `EINVAL' instead of `errno'
722 when `setlocale' fails.
723 (restore_locale_settings): Likewise.
724 (install_locale_categories): Likewise.
725 (install_locale): Likewise. Stop the locale stack traversal when
726 all categories have been handled.
727 (get_current_locale, category_to_category_mask,
728 category_list_to_category_mask): New function.
729 (scm_make_locale): Use them. Accept both lists of `LC_*' values
730 and single `LC_*' values as the first argument. Handle the case
731 where BASE_LOCALE is `%global-locale'. When `USE_GNU_LOCALE_API',
732 duplicate C_BASE_LOCALE before using it.
733 (scm_nl_langinfo, define_langinfo_items): New functions.
734 (scm_init_i18n): When `HAVE_NL_LANGINFO', add feature
735 `nl-langinfo' and invoke `define_langinfo_items ()'.
736 * i18n.h (scm_global_locale, scm_nl_langinfo): New declarations.
737 * posix.c: Include <xlocale.h> when available.
738 (scm_i_locale_mutex): Always define it. Statically initialized.
739 (scm_set_locale): Invoke `scm_i_to_lc_category ()' before
740 acquiring the locale mutex.
741 (scm_init_posix): No longer initialize SCM_I_LOCALE_MUTEX here.
742
b3aa4626
KR
7432007-01-27 Kevin Ryde <user42@zip.com.au>
744
745 * ports.c (scm_port_line, scm_set_port_line_x), read.c
746 (scm_i_input_error, scm_lreadr, scm_lreadrecparen): Corrections to
747 port line number type, should be "long" not "int", as per line_number
748 field of scm_t_port. (Makes a difference only on 64-bit systems, and
749 only then for a linenum above 2Gig.)
750
2a8d66b0
HWN
7512007-01-25 Han-Wen Nienhuys <hanwen@lilypond.org>
752
753 * vector.c: remove comment as per kryde's request.
754
b3aa4626
KR
7552007-01-25 Kevin Ryde <user42@zip.com.au>
756
757 * sort.c (scm_stable_sort): Return empty list for input empty list, as
758 done in guile 1.6 and as always done by plain `sort'. Was falling
759 through to SCM_WRONG_TYPE_ARG. Reported by Ales Hvezda.
760
cb90e2cb
HWN
7612007-01-22 Han-Wen Nienhuys <hanwen@lilypond.org>
762
8cb7939c
HWN
763 * vectors.c (s_scm_vector_move_right_x): complain about naming.
764
d00a0704
HWN
765 * srcprop.c: regularize comments.
766
3d178652
HWN
767 * eval.c: remove superfluous ifndef DEVAL.
768
243ebb61
HWN
769 * private-options.h: idem.
770
771 * eval.i.c: copyright nitpicking.
772
0ee05b85
HWN
773 * eval.c: distangle. move duplicate code to eval.i.c and include
774 twice.
775
776 * eval.i.c: new file.
777
22fc179a
HWN
778 * backtrace.c, debug.c, debug.h, deprecation.c, eq.c, eval.c
779 eval.h, gsubr.c, init.c, macros.c, print.c, print.h, read.c,
780 read.h, stacks.c, symbols.c, throw.c: use private-options.h
781
782 * private-options.h: new file: contain hardcoded option
783 definitions.
784
cb90e2cb
HWN
785 * private-gc.h: add FSF header.
786
62560650
HWN
7872007-01-19 Han-Wen Nienhuys <hanwen@lilypond.org>
788
72f19c26
HWN
789 * debug.h (SCM_RESET_DEBUG_MODE): switch to debugging if
790 memoize-symbol is set.
791
792 * eval.h (SCM_MEMOIZE_HDLR): add macros for memoize symbol trap.
793
794 * eval.c (CEVAL): add memoize_symbol trap.
795
03347a97
HWN
796 * options.c (scm_options_try): new function. This allows error
797 reporting before changing options in a critical section.
798
b0763985
HWN
799 * srcprop.c: use double cell for storing source-properties. Put
800 filename in the plist, and share between srcprops if possible.
801 Remove specialized storage.
802
803 * srcprop.h: remove macros without SCM_ prefix from
804 interface. Remove specialized storage/type definitions.
805
62560650
HWN
806 * read.c: idem.
807
808 * print.c: idem.
809
810 * eval.c: terminate option lists with 0.
811
812 * options.c: remove n (for length) from scm_option_X
813 functions. Detect option list length by looking for NULL name.
814
42ddb3cb
LC
8152007-01-19 Ludovic Courtès <ludovic.courtes@laas.fr>
816
817 * struct.c (scm_i_struct_equalp): Skip comparison if both FIELD1
818 is equal to S1 and FIELD2 is equal to S2. This avoids infinite
819 recursion when comparing `s' fields, as the REQUIRED_VTABLE_FIELDS
820 added by `make-vtable-vtable'. Reported by Marco Maggi.
241d9cea 821
937038e8
HWN
8222007-01-18 Han-Wen Nienhuys <hanwen@lilypond.org>
823
824 * throw.c (scm_ithrow): more refined error message: print symbols
825 too.
826
23d72566
KR
8272007-01-16 Kevin Ryde <user42@zip.com.au>
828
829 * feature.c, feature.h (scm_set_program_arguments_scm): New function,
830 implementing `set-program-arguments'.
831
832 * filesys.c (scm_init_filesys): Use scm_from_int rather than
833 scm_from_long for O_RDONLY, O_WRONLY, O_RDWR, O_CREAT, O_EXCL,
834 O_NOCTTY, O_TRUNC, O_APPEND, O_NONBLOCK, O_NDELAY, O_SYNC and
835 O_LARGEFILE. These are all int not long, per arg to open().
836 (scm_init_filesys): Use scm_from_int rather than scm_from_long for
837 F_DUPFD, F_GETFD, F_SETFD, F_GETFL, F_SETFL, F_GETOWN, F_SETOWN, these
838 are all ints (per command arg to fcntl). Likewise FD_CLOEXEC which is
839 an int arg to fcntl.
840
841 * posix.c (scm_putenv): Correction to "len" variable, was defined only
842 for __MINGW32__ but used under any !HAVE_UNSETENV (such as solaris).
843 Move it to where it's used. Reported by Hugh Sasse.
844
845 * regex-posix.c (scm_regexp_exec): Remove SCM_CRITICAL_SECTION_START
846 and SCM_CRITICAL_SECTION_END, believe not needed. Their placement
847 meant #\nul in the input (detected by scm_to_locale_string) and a bad
848 flags arg (detected by scm_to_int) would throw from a critical
849 section, causing an abort().
850
851 * regex-posix.c (scm_init_regex_posix): Use scm_from_int for
852 REG_BASIC, REG_EXTENDED, REG_ICASE, REG_NEWLINE, REG_NOTBOL,
853 REG_NOTEOL; they're all ints not longs (per args to regcomp and
854 regexec).
855
a2c40dc7
HWN
8562007-01-10 Han-Wen Nienhuys <hanwen@lilypond.org>
857
858 * throw.c (scm_ithrow): print out key symbol and string arguments
859 when error happens inside a critical section, and document why.
860
391f57e6
HWN
8612007-01-06 Han-Wen Nienhuys <hanwen@lilypond.org>
862
863 * read.c (s_scm_read_hash_extend): document #f argument to
864 read-hash-extend.
865
23d72566
KR
8662007-01-04 Kevin Ryde <user42@zip.com.au>
867
868 * deprecated.h (scm_create_hook), version.h.in (scm_major_version,
869 scm_minor_version, scm_micro_version, scm_effective_version,
870 scm_version, scm_init_version): Use SCM_API instead of just extern,
871 for the benefit of mingw. Reported by Cesar Strauss.
872
93632e3c
HWN
8732007-01-03 Han-Wen Nienhuys <hanwen@lilypond.org>
874
875 * gc.c (s_scm_gc_stats): return an entry for total-cells-allocated
876 too.
877 (gc_update_stats): update scm_gc_cells_allocated_acc too.
878
23d72566
KR
8792006-12-27 Kevin Ryde <user42@zip.com.au>
880
881 * threads.c (get_thread_stack_base): In mingw with pthreads we can use
882 the basic scm_get_stack_base. As advised by Nils Durner.
883
884 * threads.c (get_thread_stack_base): Add a version using
885 pthread_get_stackaddr_np (when available), for the benefit of MacOS.
886 As advised by Heikki Lindholm.
887
888 * scmsigs.c (signal_delivery_thread): Restrict scm_i_pthread_sigmask
889 to HAVE_PTHREAD_SIGMASK, it doesn't exist on mingw. Reported by Nils
890 Durner.
891
8922006-12-24 Kevin Ryde <user42@zip.com.au>
893
894 * posix.c (scm_kill): When only raise() is available, throw an ENOSYS
895 error if pid is not our own process, instead of silently doing nothing.
896
897 * print.c (scm_write, scm_display, scm_write_char): Disable port close
898 on EPIPE. This was previously disabled but introduction of HAVE_PIPE
899 check in configure.in unintentionally enabled it. Believe that
900 testing errno after scm_prin1 or scm_putc is bogus, a long ago error
901 can leave errno in that state. popen.test "no duplicates" output test
902 provoked that.
903
e2bf3b19
HWN
9042006-12-23 Han-Wen Nienhuys <hanwen@lilypond.org>
905
906 * numbers.c (scm_i_fraction_reduce): move logic into
907 scm_i_make_ratio(), so fractions are only read.
908 scm_i_fraction_reduce() modifies a fraction when reading it. A
909 race condition might lead to fractions being corrupted by reading
910 them concurrently.
911
912 Also, the REDUCED bit alters the SCM_CELL_TYPE(), making
913 comparisons between reduced and unreduced fractions go wrong.
241d9cea 914
e2bf3b19
HWN
915 * numbers.h: remove SCM_FRACTION_SET_NUMERATOR,
916 SCM_FRACTION_SET_DENOMINATOR, SCM_FRACTION_REDUCED_BIT,
917 SCM_FRACTION_REDUCED_SET, SCM_FRACTION_REDUCED_CLEAR,
918 SCM_FRACTION_REDUCED.
919
23d72566
KR
9202006-12-16 Kevin Ryde <user42@zip.com.au>
921
922 * scmsigs.c (scm_raise): Use raise() rather than kill(), as this is
923 more direct for a procedure called raise.
924 (kill): Remove mingw fake fallback.
925
9262006-12-15 Kevin Ryde <user42@zip.com.au>
927
928 * scmsigs.c: Conditionalize process.h, add io.h believe needed for
929 _pipe on mingw.
930
9312006-12-14 Kevin Ryde <user42@zip.com.au>
932
933 * threads.c (thread_print): Cope with the case where pthread_t is a
934 struct, as found on mingw. Can't just cast to size_t for printing.
935 Reported by Nils Durner.
936
937 * scmsigs.c: Add <fcntl.h> and <process.h> needed by mingw. Copy the
938 fallback pipe() using _pipe() from posix.c. Reported by Nils Durner.
939
9402006-12-13 Kevin Ryde <user42@zip.com.au>
941
942 * eval.c (scm_m_define): Set 'name procedure property on any
943 scm_procedure_p, not just SCM_CLOSUREP. In particular this picks up
944 procedures with setters as used in srfi-17.
945
946 * posix.c (scm_crypt): Check for NULL return from crypt(), which the
947 linux man page says is a possibility.
948
f30e1bdf
LC
9492006-12-12 Ludovic Courtès <ludovic.courtes@laas.fr>
950
951 * libguile/unif.c (read_decimal_integer): Let RESP be SIGN * RES
42ddb3cb 952 instead of RES (reported by Szavai Gyula). This allows the use of
f30e1bdf
LC
953 negative lower bounds.
954 (scm_i_read_array): Make sure LEN is non-negative (reported by
42ddb3cb 955 Szavai Gyula).
f30e1bdf
LC
956
957 (scm_array_in_bounds_p): Iterate over S instead of always
958 comparing indices with the bounds of S[0]. This fixes
959 `array-in-bounds?' for arrays with a rank greater than one and
960 with different lower bounds for each dimension.
961
23d72566
KR
9622006-12-05 Kevin Ryde <user42@zip.com.au>
963
964 * numbers.c (scm_product): For flonum*inum and complex*inum, return
965 exact 0 if inum==0. Already done for inum*flonum and inum*complex,
966 and as per R5RS section "Exactness".
967
9682006-12-03 Kevin Ryde <user42@zip.com.au>
969
970 * Makefile.am (.c.doc): Remove the "test -n" apparently attempting to
971 allow $AWK from the environment to override. It had syntax gremlins,
972 and the presence of a $(AWK) variable set by AC_PROG_AWK in the
973 Makefile stopped it having any effect. Use just $(AWK), which can be
974 overridden with "make AWK=xxx" in the usual way if desired.
975
22be72d3
LC
9762006-11-29 Ludovic Courtès <ludovic.courtes@laas.fr>
977
978 * libguile/vectors.c (scm_vector_to_list): Fixed list
979 construction: elements were not copied when INC is zero (see
980 "shared array" example in `vectors.test'). Reported by
981 Szavai Gyula.
982
b89c4943
LC
9832006-11-18 Ludovic Courtès <ludovic.courtes@laas.fr>
984
985 * Makefile.am (lib_LTLIBRARIES): Added `libguile-i18n-v-XX.la'.
986 (libguile_la_SOURCES): Added `gettext.c', removed `i18n.c'.
987 (libguile_i18n_v_XX_la_SOURCES, libguile_i18n_v_XX_la_CFLAGS,
988 libguile_i18n_v_XX_la_LIBADD, libguile_i18n_v_XX_la_LDFLAGS): New.
989 (DOT_X_FILES): Added `gettext.x'.
990 (DOT_DOC_FILES): Likewise.
991 (EXTRA_libguile_la_SOURCES): Added `locale-categories.h'.
992 (modinclude_HEADERS): Added `gettext.h'.
993 (EXTRA_DIST): Added `libgettext.h'.
994
995 * gettext.h: Renamed to...
996 * libgettext.h: New file.
997
998 * i18n.c: Renamed to...
999 * gettext.c: New file.
1000
1001 * i18n.h: Renamed to...
1002 * gettext.h: New file.
1003
1004 * i18n.c, i18n.h, locale-categories.h: New files.
1005
1006 * init.c: Include "libguile/gettext.h" instead of
1007 "libguile/i18n.h".
1008 (scm_i_init_guile): Invoke `scm_init_gettext ()' instead of
1009 `scm_init_i18n ()'.
1010
1011 * posix.c: Include "libguile/gettext.h" instead of
1012 "libguile/i18n.h" Test `HAVE_NEWLOCALE' and `HAVE_STRCOLL_L'.
1013 (USE_GNU_LOCALE_API): New macro.
1014 (scm_i_locale_mutex): New variable.
1015 (scm_setlocale): Lock and unlock it around `setlocale ()' calls.
1016
1017 * posix.h: Include "libguile/threads.h".
1018 (scm_i_locale_mutex): New declaration.
1019
f3e3f530
NJ
10202006-11-17 Neil Jerram <neil@ossau.uklinux.net>
1021
1022 * script.c (scm_shell_usage): Note need for subscription to bug-guile@gnu.org.
1023
d9f71a07 10242006-11-08 Ludovic Courtès <ludovic.courtes@laas.fr>
241d9cea 1025
d9f71a07
LC
1026 * libguile/gc-freelist.c (scm_i_adjust_min_yield): Take two
1027 "sweep_stats" arguments; use them instead of accessing the global
1028 variables `scm_gc_cells_collected' and `scm_gc_cells_collected_1'.
1029
1030 * libguile/gc-segment.c (scm_i_sweep_some_cards): Reset SWEEP
1031 before each iteration of the loop.
1032 (scm_i_sweep_some_segments): Reset SWEEP at each iteration.
1033 (scm_i_get_new_heap_segment): Take an additional argument
1034 SWEEP_STATS. Compute MIN_CELLS as a function of it.
1035
1036 * libguile/gc.c (scm_gc_cells_collected,
1037 scm_gc_cells_collected_1): Removed.
1038 (scm_i_gc_sweep_stats, scm_i_gc_sweep_stats_1): New.
1039 (scm_gc_cells_marked_acc, scm_gc_cells_swept_acc,
1040 scm_gc_time_taken, scm_gc_mark_time_taken, scm_gc_times,
1041 scm_gc_cell_yield_percentage, protected_obj_count): Made `static'.
1042 (scm_gc_stats): Use `scm_i_gc_sweep_stats' instead of
1043 `scm_gc_cells_(collected|swept)'.
1044 (gc_update_stats): New.
1045 (gc_end_stats): Use `scm_i_gc_sweep_stats' and
1046 `scm_i_gc_sweep_stats_1' instead of the former globals.
1047 (scm_gc_for_newcell): Invoke `gc_update_stats ()' after each
1048 `scm_i_sweep_some_segments' call. This fixes a bug where the GC
1049 would keep allocating new segments instead of re-using collected
1050 cells (because `scm_gc_cells_collected' would remain zero).
1051
1052 * libguile/gc.h (scm_gc_cells_swept, scm_gc_cells_collected,
1053 scm_gc_cell_yield_percentage): Removed.
1054
1055 * libguile/private-gc.h (scm_gc_cells_collected_1): Removed.
1056 (scm_i_adjust_min_yield): Updated.
1057 (scm_i_get_new_heap_segment): Updated.
1058
dd18d312
NJ
10592006-11-02 Neil Jerram <neil@ossau.uklinux.net>
1060
1061 * modules.c: Correct comment saying that low-level environments
1062 will be used "in the next release".
1063
1064 * init.c: Comment out #include of environments.h.
1065 (scm_i_init_guile): Comment out scm_environments_prehistory() and
1066 scm_init_environments() calls.
1067
1068 * Makefile.am (libguile_la_SOURCES): Remove environments.c.
1069 (DOT_X_FILES): Remove environments.x.
1070 (DOT_DOC_FILES): Remove environments.doc.
1071 (modinclude_HEADERS): Remove environments.h.
1072
9a5fa6e9
NJ
10732006-10-25 Neil Jerram <neil@ossau.uklinux.net>
1074
1075 IA64 HP-UX GC patch from Hrvoje Nikšić. (Thanks!)
241d9cea 1076
9a5fa6e9
NJ
1077 * threads.c (SCM_MARK_BACKING_STORE): Use scm_ia64_ar_bsp() and
1078 scm_ia64_register_backing_store_base() instead of Linux-specific
1079 implementations.
1080
1081 * gc.h (scm_ia64_register_backing_store_base, scm_ia64_ar_bsp):
1082 New declarations.
1083
1084 * gc.c (__libc_ia64_register_backing_store_base): Declaration
1085 removed.
1086 (scm_ia64_register_backing_store_base, scm_ia64_ar_bsp): New, with
1087 implementations for Linux and HP-UX.
1088
1089 * coop-pthreads.c (SCM_MARK_BACKING_STORE): Use scm_ia64_ar_bsp()
1090 and scm_ia64_register_backing_store_base() instead of
1091 Linux-specific implementations.
1092
1093 * continuations.h (__libc_ia64_register_backing_store_base):
1094 Declaration removed.
1095 (scm_t_contregs): New "fresh" field.
1096
1097 * continuations.c (ia64_getcontext): Removed.
1098 (scm_make_continuation): Use continuation fresh field instead of
1099 interpreting getcontext return values (which isn't portable). Use
1100 scm_ia64_ar_bsp() and scm_ia64_register_backing_store_base()
1101 instead of Linux-specific implementations.
1102 (copy_stack_and_call): Use scm_ia64_register_backing_store_base()
1103 instead of Linux-specific implementation.
1104
1105 * _scm.h (__ia64__): Also detect __ia64.
1106
8ab3d8a0
KR
11072006-10-03 Kevin Ryde <user42@zip.com.au>
1108
1109 * eval.c (SCM_APPLY): For scm_tc7_subr_2o, throw wrong-num-args on 0
1110 arguments or 3 or more arguments. Previously 0 called proc with
1111 SCM_UNDEFINED, and 3 or more silently used just the first 2.
1112
11132006-09-28 Kevin Ryde <user42@zip.com.au>
1114
1115 * fports.c, ports.c (ftruncate): Use "HAVE_CHSIZE && ! HAVE_FTRUNCATE"
1116 for chsize fallback, instead of hard-coding mingw. Mingw in fact
1117 supplies ftruncate itself these days.
1118
1119 * ports.c (fcntl.h): Can include this unconditionally, no need for
1120 __MINGW32__.
1121
1122 * ports.c (truncate): Conditionalize on "HAVE_FTRUNCATE && !
1123 HAVE_TRUNCATE" so as not to hard-code mingw. Use "const char *" and
1124 "off_t" for parameters, per usual definition of this function, rather
1125 than "char *" and "int". Use ftruncate instead of chsize. Check for
1126 error on final close.
1127
11282006-09-27 Kevin Ryde <user42@zip.com.au>
1129
1130 * numbers.c (scm_log10): Check HAVE_CLOG10, clog10() is not available
1131 in mingw.
1132
1133 * posix.c (scm_execl, scm_execlp, scm_execle): Cast "const char *
1134 const *" for mingw to suppress warnings from gcc (which are errors
1135 under the configure default -Werror). Reported by Nils Durner.
1136
11372006-09-26 Kevin Ryde <user42@zip.com.au>
1138
1139 * _scm.h (scm_to_off64_t, scm_from_off64_t): New macros.
1140 * fports.c (scm_open_file): Use open_or_open64.
1141 (fport_seek_or_seek64): New function, adapting fport_seek.
1142 * fports.c, fports.h (scm_i_fport_seek, scm_i_fport_truncate): New
1143 functions.
1144 * ports.c (scm_seek, scm_truncate_file): Use scm_i_fport_seek and
1145 scm_i_fport_truncate to allow 64-bit seeks and truncates on fports.
1146
1147 * ports.c (scm_truncate_file): Update docstring per manual.
1148
11492006-09-23 Kevin Ryde <user42@zip.com.au>
1150
1151 * numbers.c, numbers.h (scm_log, scm_log10, scm_exp, scm_sqrt): New
1152 functions.
1153
9a5fa6e9 11542006-09-20 Ludovic Courtès <ludovic.courtes@laas.fr>
a17d2654
LC
1155
1156 * srfi-14.c: Include <config.h>. Define `_GNU_SOURCE'.
1157 (make_predset, define_predset, make_strset, define_strset, false,
1158 true): Removed.
1159 (SCM_CHARSET_UNSET, CSET_BLANK_PRED, CSET_SYMBOL_PRED,
1160 CSET_PUNCT_PRED, CSET_LOWER_PRED, CSET_UPPER_PRED,
1161 CSET_LETTER_PRED, CSET_DIGIT_PRED, CSET_WHITESPACE_PRED,
1162 CSET_CONTROL_PRED, CSET_HEX_DIGIT_PRED, CSET_ASCII_PRED,
1163 CSET_LETTER_AND_DIGIT_PRED, CSET_GRAPHIC_PRED, CSET_PRINTING_PRED,
1164 CSET_TRUE_PRED, CSET_FALSE_PRED, UPDATE_CSET): New macros.
1165 (define_charset, scm_srfi_14_compute_char_sets): New functions.
1166 (scm_init_srfi_14): Use `define_charset ()' instead of
1167 `define_predset ()' and `define_strset ()'.
1168
1169 * srfi-14.h (scm_c_init_srfi_14): Removed.
1170 (scm_srfi_14_compute_char_sets): New declaration.
1171
1172 * posix.h: Include "srfi-14.h".
1173 (scm_setlocale): Invoke `scm_srfi_14_compute_char_sets ()' after a
1174 successful `setlocale ()' call.
1175
8ab3d8a0
KR
11762006-09-08 Kevin Ryde <user42@zip.com.au>
1177
1178 * socket.c (scm_init_socket): Add MSG_DONTWAIT.
1179 (scm_recvfrom): Update docstring from manual.
1180
418122ce
RB
11812006-08-31 Rob Browning <rlb@defaultvalue.org>
1182
1183 * ports.c (scm_c_port_for_each): Add a
1184 scm_remember_upto_here_1(ports) at the end of the function to fix
1185 a GC bug.
1186
b5944f66
NJ
11872006-08-28 Neil Jerram <neil@ossau.uklinux.net>
1188
1189 * backtrace.c (scm_display_backtrace_with_highlights): Minor
1190 improvements to docstring.
1191 (scm_backtrace_with_highlights): Analogous improvements.
1192
8ab3d8a0
KR
11932006-08-12 Kevin Ryde <user42@zip.com.au>
1194
1195 * gen-scmconfig.h.in (SCM_I_GSC_NEED_BRACES_ON_PTHREAD_ONCE_INIT):
1196 New, set from configure.
1197 * gen-scmconfig.c (SCM_NEED_BRACES_ON_PTHREAD_ONCE_INIT): New output
1198 to scmconfig.h.
1199 * pthread-threads.h (SCM_I_PTHREAD_ONCE_INIT): Use
1200 SCM_NEED_BRACES_ON_PTHREAD_ONCE_INIT to cope with Solaris.
1201 Reported by Claes Wallin.
1202
b0b0deff
NJ
12032006-08-11 Neil Jerram <neil@ossau.uklinux.net>
1204
1205 * stacks.c (scm_last_stack_frame): Correct docstring (returns a
1206 frame, not a stack).
1207
8ab3d8a0
KR
12082006-07-25 Kevin Ryde <user42@zip.com.au>
1209
1210 * threads.c (get_thread_stack_base): Restrict HAVE_PTHREAD_GETATTR_NP
1211 on pthreads version, since pthread_getattr_np not available on solaris
1212 and macos. Reported by Claes Wallin.
1213
12142006-07-24 Kevin Ryde <user42@zip.com.au>
1215
1216 * filesys.c (dirfd): Test with #ifndef rather than HAVE_DIRFD, since
1217 it's a macro on MacOS X. Reported by Claes Wallin.
1218
1219 * posix.c (sethostname): Give prototype if not HAVE_DECL_SETHOSTNAME,
1220 for the benefit of Solaris 10. Reported by Claes Wallin.
1221
1222 * socket.c (scm_htonl, scm_ntohl): Use scm_to_uint32 rather than
1223 NUM2ULONG, to enforce 32-bit range check on systems with 64-bit long.
1224
12252006-07-21 Kevin Ryde <user42@zip.com.au>
1226
1227 * eval.c, filesys.c (alloca): Update <alloca.h> etc blob, per current
1228 autoconf recommendation. Should fix Solaris 10 reported by Claes
1229 Wallin.
1230
1231 * threads.c: Include <string.h>, needed for memset() which is used by
1232 FD_ZERO() on Solaris 10. Reported by Claes Wallin.
1233
b4912378
RB
12342006-07-18 Rob Browning <rlb@defaultvalue.org>
1235
1236 * continuations.c: Add __attribute__ ((returns_twice)) to the
1237 ia64_getcontext prototype so that gcc will make the right
1238 arrangements and avoid an illegal instruction during
1239 call-with-current-continuation.
1240
9a5fa6e9 12412006-07-12 Ludovic Courtès <ludovic.courtes@laas.fr>
eaa94eaa
LC
1242
1243 * numbers.c (guile_ieee_init): Use regular ANSI C casts rather
1244 than C++-style `X_CAST ()'. Patch posted by by Mike Gran.
1245
8ab3d8a0
KR
12462006-07-08 Kevin Ryde <user42@zip.com.au>
1247
1248 * environments.c (core_environments_unobserve): Use if/else rather
1249 than ?: for "SET" bits, avoiding complaints from AIX xlc compiler
1250 about them not being rvalues. Reported by Mike Gran.
1251
1252 * Makefile.am (version.h): Don't use $< in an explicit rule, it's not
1253 portable and in particular fails on OpenBSD and AIX (see autoconf
1254 manual too). Reported by Mike Gran.
1255
12562006-06-25 Kevin Ryde <user42@zip.com.au>
1257
1258 * stime.c (bdtime2c): tm_gmtoff is seconds East, so take negative of
1259 tm:gmtoff which is seconds West. Reported by Aaron VanDevender.
1260 (bdtime2c): Test HAVE_STRUCT_TM_TM_GMTOFF for tm_gmtoff, rather than
1261 HAVE_TM_ZONE.
1262 (scm_strptime): Use tm_gmtoff from the strptime result when that field
1263 exists, it's set by glibc strptime "%s".
241d9cea 1264
9a5fa6e9 12652006-06-13 Ludovic Courtès <ludovic.courtes@laas.fr>
d15ad007
LC
1266
1267 * eq.c: Include "struct.h", "goops.h" and "objects.h".
1268 (scm_equal_p): Invoke `scm_i_struct_equalp ()' on structures that
1269 are not GOOPS instances.
1270 * struct.c: Include "eq.h".
1271 (scm_free_structs): Use `SCM_STRUCT_VTABLE_DATA ()' instead of
1272 hand-written code.
1273 (scm_i_struct_equalp): New.
1274 * struct.h (scm_i_struct_equalp): New declaration.
1275
c862d0e0
KR
12762006-06-06 Kevin Ryde <user42@zip.com.au>
1277
1278 * Makefile.am (BUILT_SOURCES): Remove guile.texi, only used by
1279 maintainers (with doc/maint/docstring.el). Fixes parallel "make -j2"
1280 reported by Mattias Holm.
b4912378 1281
c862d0e0
KR
12822006-06-03 Kevin Ryde <user42@zip.com.au>
1283
1284 * read.c (s_vector): Conditionalize on SCM_ENABLE_ELISP, to avoid
1285 unused variable warning when elisp disabled. Reported by Ryan
1286 VanderBijl.
1287
1288 * throw.c (scm_handle_by_message): Add dummy return value to avoid
1289 compiler warning on cygwin. Reported by Ryan VanderBijl.
241d9cea 1290
c862d0e0
KR
1291 * Makefile.am (EXTRA_DOT_X_FILES): Typo in dependency rule, was a
1292 duplicate of EXTRA_DOT_DOC_FILES.
1293 (DOT_X_FILES, EXTRA_DOT_X_FILES, DOT_DOC_FILES, EXTRA_DOT_DOC_FILES):
1294 Add scmconfig.h to dependencies, since these all run cpp. Helps a
1295 parallel "make -j2". Reported by Mattias Holm.
1296
12972006-05-30 Kevin Ryde <user42@zip.com.au>
1298
1299 * ports.c, ports.h (scm_set_port_mark, scm_set_port_free,
1300 scm_set_port_print, scm_set_port_equalp, scm_set_port_flush,
1301 scm_set_port_end_input, scm_set_port_close, scm_set_port_seek,
1302 scm_set_port_truncate, scm_set_port_input_waiting): Use scm_t_bits for
1303 port type descriptor, same as scm_make_port_type return value.
1304
af4f8612
MV
13052006-05-30 Marius Vollmer <mvo@zagadka.de>
1306
1307 * eq.c (scm_equal_p): Use scm_array_equal_p explicitely when one
1308 of the arguments is a array. This allows vectors to be equal to
1309 one-dimensional arrays.
1310
18bffcd0
MV
13112006-05-29 Marius Vollmer <mvo@zagadka.de>
1312
1313 * throw.c (scm_ithrow): When looking for the jmpbuf, first test
1314 that we have a pair before accessing its cdr. Thanks to Bill
1315 Schottstaedt!
1316
c862d0e0
KR
13172006-05-28 Kevin Ryde <user42@zip.com.au>
1318
1319 * eval.c, filesys.c: Add malloc.h to get alloca() on mingw. Reported
1320 by "The Senator".
1321
13222006-05-27 Marius Vollmer <mvo@zagadka.de>
b0c0a310
MV
1323
1324 * srfi-4.c, strings.c: Replace SCM_C_INLINE with
1325 SCM_C_INLINE_KEYWORD. Thanks to Mark Gran!
1326
c862d0e0
KR
13272006-05-26 Kevin Ryde <user42@zip.com.au>
1328
1329 * fports.c (fport_input_waiting): For ioctl, check HAVE_IOCTL as well
1330 as defined(FIONREAD), since mingw has FIONREAD but not ioctl().
1331 Reported by "The Senator".
1332 For select and ioctl, move fdes into those conditionals, to avoid
1333 unused variable warning when neither of those used.
1334
13352006-05-23 Kevin Ryde <user42@zip.com.au>
1336
1337 * fports.c: Remove "fwrite" declaration under "! HAVE_UNISTD_H".
1338 It's unused and will be in stdio.h anyway (if it's anywhere).
1339
13402006-05-20 Kevin Ryde <user42@zip.com.au>
1341
1342 * filesys.c (scm_stat2scm): Test #ifdef S_ISLNK directly, rather than
1343 HAVE_S_ISLNK from configure (it was only a #ifdef test anyway).
1344
1345 * posix.c (scm_mknod): Test #ifdef S_IFLNK before using that (for
1346 symlink). Probably can't create symlinks with mknod anyway though.
1347
1348 * inline.h (scm_is_pair): Add a workaround for i386 gcc 2.95 bad code
1349 generation.
1350
13512006-05-15 Kevin Ryde <user42@zip.com.au>
1352
1353 * simpos.c, simpos.h (scm_primitive__exit): New function.
1354 (scm_primitive_exit): Update docstring, no longer the best exit after
1355 a fork.
1356
13572006-05-09 Kevin Ryde <user42@zip.com.au>
1358
1359 * numbers.c (scm_i_divide): For big/big wanting inexact, use mpq_get_d
1360 rather than converting to doubles, to avoid inf or nan when the inputs
1361 are too big for a double but the quotient does fit. This affects
1362 conversions exact->inexact of big fractions.
1363
1364 * filesys.c (scm_open_fdes): Use open64.
1365 (scm_init_filesys): Add O_LARGEFILE.
1366
1367 * ports.c (scm_seek): Use lseek64.
1368 (scm_truncate_file): Use ftruncate64.
1369
4a342b19
MV
13702006-05-08 Marius Vollmer <mvo@zagadka.de>
1371
1372 * private-gc.h (CELL_P): Also check that the potential pointer is
1373 correctly aligned for a cell. Thanks to Miroslav Lichvar!
1374
c862d0e0
KR
13752006-04-18 Rob Browning <rlb@defaultvalue.org>
1376
1377 * _scm.h: Add back error if the size of off_t is unknown. The bug
1378 was actually in guile-readline's configuration.
1379
13802006-04-18 Kevin Ryde <user42@zip.com.au>
1381
1382 * posix.c (scm_mkstemp): Update docstring from the manual, in
1383 particular file mode 0600 is not guaranteed.
1384
281ab5e2
KR
13852006-04-17 Kevin Ryde <user42@zip.com.au>
1386
1387 * _scm.h (scm_to_off_t, scm_from_off_t): No error if unknown off_t
1388 size, to help the guile-readline build where off_t is unused.
1389
2b829bbb
KR
13902006-04-16 Kevin Ryde <user42@zip.com.au>
1391
1392 * filesys.c (scm_stat2scm, scm_stat, scm_lstat): Use stat or stat64.
1393 (scm_readdir): Use readdir64.
1394 (scm_copy_file): Use open64 and fstat64, to cope with >2Gb files.
1395 * ports.c (scm_truncate_file): Use truncate64. Correction truncate
1396 and ftruncate take off_t not size_t.
1397 * _scm.h (stat_or_stat64 etc): Macros for selecting LFS64 when
1398 available.
1399
14002006-04-06 Kevin Ryde <user42@zip.com.au>
1401
1402 * fports.c (scm_setvbuf): Fix for not _IOLBF, clear SCM_BUFLINE
9a5fa6e9 1403 instead of toggling it. Reported by Ludovic Courtès.
241d9cea 1404
2b829bbb
KR
14052006-03-26 Marius Vollmer <mvo@zagadka.de>
1406
1407 * threads.c (get_thread_stack_base): Use scm_get_stack_base
1408 instead of accessing __libc_stack_end directly, and only do this
1409 when pthread_attr_getstack is known not to work for the main
1410 thread or when not using pthreads at all.
1411
1412 * gc_os_dep.c (scm_get_stack_base): Abort when the machine type is
1413 unknown instead of returning NULL.
1414
9a5fa6e9 14152006-03-21 Ludovic Courtès <ludovic.courtes@laas.fr>
2b829bbb
KR
1416
1417 * numbers.c (scm_i_mem2number): Renamed to
1418 scm_c_locale_stringn_to_number.
1419 * numbers.c, print.c, read.c: Updated callers.
1420 * numbers.h: Update function declaration.
1421
14222006-03-11 Neil Jerram <neil@ossau.uklinux.net>
1423
1424 * unif.c (string_set): Don't return in a void function. (Reported
1425 by Mike Gran.)
1426
1427 * srfi-4.c (scm_uniform_vector_read_x): Declare base as char*
1428 rather than void*, so we can do pointer arithmetic on it.
1429 (Reported by Mike Gran.)
1430 (s_scm_uniform_vector_write): Ditto.
1431
14322006-03-10 Neil Jerram <neil@ossau.uklinux.net>
1433
1434 * unif.c (scm_make_shared_array): Don't use SCM_I_ARRAY_BASE when
1435 oldra is not an array. (Reported by Steve Juranich.)
1436
1437 * threads.c (do_unlock): Renamed from "unlock", which is defined
1438 in unistd.h on QNX. (Reported by Matt Kraai.)
1439
14402006-03-04 Kevin Ryde <user42@zip.com.au>
1441
1442 * deprecated.c (scm_i_defer_ints_etc): Show SCM_DEFER_INTS in message,
1443 not SCM_CRITICAL_SECTION_START.
1444
1445 * eval.c, posix.c: Change comments from C++ to C style. Reported by
1446 Mike Gran.
1447
14482006-02-28 Kevin Ryde <user42@zip.com.au>
1449
1450 * unif.c (bitvector_set): Use h->writable_elements not h->elements.
1451
14522006-02-26 Kevin Ryde <user42@zip.com.au>
1453
1454 * filesys.c (scm_readdir): Use fpathconf for the dirent size when
1455 NAME_MAX is not available, which is so on Solaris 10. Report and help
1456 by Bill Schottstaedt.
1457
1458 * srfi-13.c (MY_VALIDATE_SUBSTRING_SPEC_UCOPY): New macro.
1459 (scm_string_compare, scm_string_compare_ci, scm_string_lt,
1460 scm_string_gt, scm_string_le, scm_string_ge, scm_string_ci_lt,
1461 scm_string_ci_gt, scm_string_ci_le, scm_string_ci_ge): In comparisons
1462 use "unsigned char", not signed char. This ensures comparisons are
1463 the same as `char<?' etc, and is also the same as guile 1.6 did.
1464 Reported by Sven Hartrumpf.
1465
4a9f83ff
MD
14662006-02-19 Mikael Djurfeldt <mdj@neurologic.cc>
1467
1468 * random.c: Test for SCM_HAVE_T_UINT64 instead of
1469 SCM_HAVE_T_INT64.
1470 (scm_i_uniform32, scm_i_uniform32, scm_i_init_rstate): Use
1471 scm_t_uint64 and scm_t_uint32 instead of scm_t_int64 and
1472 scm_t_int32.
1473
29d8c124 14742006-01-04 Ludovic Courtès <ludovic.courtes@laas.fr>
4c7016dc
HWN
1475
1476 * gc-segment.c (scm_i_sweep_some_cards): Take a SWEEP_STATS
1477 argument. Don't refer to SCM_GC_CELLS_COLLECTED and
1478 SCM_CELLS_ALLOCATED. If SEG->FIRST_TIME, let CELLS_COLLECTED as zero.
1479 Take into account SEG->SPAN when computing CELLS_SWEPT.
1480 (scm_i_sweep_segment): Take one more argument, similarly.
1481 (scm_i_sweep_all_segments): Likewise.
1482 (scm_i_sweep_some_segments): Likewise.
1483 (scm_i_adjust_min_yield): Change the way MIN_CELLS is computed: do not
1484 refer to SCM_GC_CELLS_COLLECTED.
1485
1486 * gc-freelist.c (scm_i_adjust_min_yield): Take one more
1487 argument, an `scm_i_sweep_statistics' object.
1488 Change the way DELTA is collected: don't take into account
1489 SCM_GC_CELLS_COLLECTED_1, only SWEEP_STATS.COLLECTED.
1490
1491 * gc-malloc.c (scm_realloc): Pass an extra argument
1492 to `scm_i_sweep_all_segments ()'.
1493
1494 * gc.c (gc_start_stats): Updated accordingly.
1495 (gc_end_stats): Take an additional SWEEP_STATS argument.
1496 Decrement SCM_CELLS_ALLOCATED after calls to `scm_i_sweep_* ()'.
1497 (scm_gc_for_newcell): Updated callers of `scm_i_sweep_*'.
1498 Decrement SCM_CELLS_ALLOCATED.
1499 (scm_i_gc): Likewise.
1500
1501 * private-gc.h (scm_i_sweep_*): Updated function
1502 prototypes accordingly.
1503 (scm_t_sweep_statistics): New type.
1504 (scm_i_sweep_statistics_init): New macro.
1505 (scm_i_sweep_statistics_sum): New macro
1506
9a5fa6e9 15072006-02-14 Ludovic Courtès <ludovic.courtes@laas.fr>
2b829bbb
KR
1508
1509 * strings.c (scm_i_take_stringbufn): Register LEN+1 bytes instead of
1510 LEN. Without this, too much collectable memory gets unregistered,
1511 which results in an underflow of SCM_MALLOCATED in
1512 `decrease_mtrigger()'.
1513
1514 * gc-malloc.c (decrease_mtrigger): Make sure SIZE is lower than or
1515 equal to SCM_MALLOCATED.
1516
15172006-02-13 Marius Vollmer <mvo@zagadka.de>
1518
1519 * eval.c (scm_eval_body): Use scm_i_dynwind_pthread_mutex_lock
1520 oinstead of scm_dynwind_pthread_mutex_lock so that it works when
1521 configured --without-threads.
1522 (SCM_APPLY, CEVAL): Likewise. Thanks to Han-Wen Nienhuys!
1523
1aaa1c17
MV
15242006-02-12 Marius Vollmer <mvo@zagadka.de>
1525
1526 * unif.c (scm_dimensions_to_uniform_array): Use the prototype for
1527 filling when the fill parameter is omitted, as documented, but
1528 turn #\nul into 0 since s8 arrays (signified by a #\nul prototype)
1529 can not store characters.
1530
d7c6575f
NJ
15312006-02-09 Neil Jerram <neil@ossau.uklinux.net>
1532
1533 * socket.c (scm_c_make_socket_address): Pass address_size pointer
1534 on to scm_fill_sockaddr call.
1535
43e01b1e
NJ
15362006-02-04 Neil Jerram <neil@ossau.uklinux.net>
1537
1538 * throw.h (scm_c_catch, scm_c_with_throw_handler,
1539 scm_catch_with_pre_unwind_handler, scm_with_throw_handler): New.
1540
1541 * throw.c (SCM_JBPREUNWIND, SCM_SETJBPREUNWIND): New.
1542 (struct pre_unwind_data): New, replaces struct lazy_catch.
1543 (scm_c_catch): New, replaces scm_internal_catch as the primary
1544 catch API for C code; adds pre-unwind handler support.
1545 (scm_internal_catch): Now just a wrapper for scm_c_catch, for back
1546 compatibility.
1547 (tc16_pre_unwind_data, pre_unwind_data_print,
1548 make_pre_unwind_data, SCM_PRE_UNWIND_DATA_P): Renamed from
1549 "lazy_catch" equivalents.
1550 (scm_c_with_throw_handler): New, replaces scm_internal_lazy_catch
1551 as the primary C API for a "lazy" catch.
1552 (scm_internal_lazy_catch): Now just a wrapper for
1553 scm_c_with_throw_handler, for back compatibility.
1554 (scm_catch_with_pre_unwind_handler): Renamed from scm_catch; adds
1555 pre-unwind handler support.
1556 (scm_catch): Now just a wrapper for
1557 scm_catch_with_pre_unwind_handler, for back compatibility.
1558 (scm_with_throw_handler): New.
1559 (scm_lazy_catch): Update comment to say that the handler can
1560 return, and what happens if it does.
1561 (toggle_pre_unwind_running): New.
1562 (scm_ithrow): When identifying the throw target, take running
1563 flags into account. In general, change naming of things from
1564 "lazy_catch" to "pre_unwind". When throwing to a throw handler,
1565 don't unwind the dynamic context first. Add dynwind framing to
1566 manage the running flag of a throw handler. If a lazy catch or
1567 throw handler returns, rethrow the same exception again. Add
1568 pre-unwind support to the normal catch case (SCM_JMPBUFP).
1569
1570 * root.c (scm_internal_cwdr): Add NULL args to
1571 scm_i_with_continuation_barrier call.
1572
1573 * dynwind.c: Change comment mentioning lazy-catch to mention
1574 pre-unwind data and throw handler also.
1575
1576 * continuations.h (scm_i_with_continuation_barrier): Add
1577 pre-unwind handler args.
1578
1579 * continuations.c (scm_i_with_continuation_barrier): Add
1580 pre-unwind handler args, and pass on to scm_c_catch (changed from
1581 scm_internal_catch).
1582 (c_handler): Remove scm_handle_by_message_noexit call.
1583 (scm_c_with_continuation_barrier): Call
1584 scm_i_with_continuation_barrier with scm_handle_by_message_noexit
1585 as the pre-unwind handler.
1586 (scm_handler): Remove scm_handle_by_message_noexit call.
1587 (s_scm_with_continuation_barrier): Call
1588 scm_i_with_continuation_barrier with scm_handle_by_message_noexit
1589 as the pre-unwind handler.
1590
2b829bbb
KR
15912006-02-04 Kevin Ryde <user42@zip.com.au>
1592
1593 * gc-mark.c (scm_mark_all): Fix c99-isms "loops" and "again" variables.
1594
72098928
KR
15952006-02-03 Kevin Ryde <user42@zip.com.au>
1596
1597 * list.c, list.h (scm_list): Restore this function for use from C.
1598 It's a complete no-op but in theory might used by someone.
1599
aa092c5d
MV
16002006-01-30 Marius Vollmer <mvo@zagadka.de>
1601
1602 * eval.c (scm_eval_body): Lock source_mutex with a dynwind context
1603 so that it gets unlocked in all cases.
1604 (SCM_APPLY, CEVAL): Likewise.
1605
661ae7ab
MV
16062006-01-29 Marius Vollmer <mvo@zagadka.de>
1607
ee51ba31
MV
1608 * ramap.c: (scm_array_map_x): Don't use scm_array_p, use
1609 scm_is_typed_array instead.
1610
661ae7ab
MV
1611 Renamed the "frames" that are related to dynamic-wind to "dynamic
1612 contexts. Renamed all functions from scm_frame_ to scm_dynwind_.
1613 Updated documentation.
1614
99e370f6
MV
1615 Disabled "futures":
1616
1617 * futures.h, futures.c: Wrap whole contents in "#if 0"/"#endif".
1618 * eval.c, init.c: Comment out all 'future' related things.
1619
15ccf10b
MV
16202006-01-28 Marius Vollmer <mvo@zagadka.de>
1621
1622 * inline.h, pairs.c (scm_is_pair): Moved scm_is_pair from pairs.c
1623 to inline.h to make it inline.
1624
9a5fa6e9 16252005-12-19 Ludovic Courtès <ludovic.courtes@laas.fr>
fd0a5bbc
HWN
1626
1627 * strings.c (scm_i_take_stringbufn): New.
1628 (scm_i_c_take_symbol): New.
1629 (scm_take_locale_stringn): Use `scm_i_take_stringbufn ()'.
1630
1631 * strings.h (scm_i_c_take_symbol): New.
1632 (scm_i_take_stringbufn): New.
1633
1634 * symbols.c (lookup_interned_symbol): New function.
1635 (scm_i_c_mem2symbol): New function.
1636 (scm_i_mem2symbol): Use `lookup_symbol ()'.
1637 (scm_from_locale_symbol): Use `scm_i_c_mem2symbol ()'. This avoids
1638 creating a new Scheme string.
1639 (scm_from_locale_symboln): Likewise.
1640 (scm_take_locale_symbol): New.
1641 (scm_take_locale_symboln): New.
1642
1643 * symbols.h (scm_take_locale_symbol): New.
1644 (scm_take_locale_symboln): New.
1645
2ca2ffe6
HWN
16462006-01-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
1647
1648 * gc-card.c ("sweep_card"): don't count scm_tc_free_cell for
1649 free_count.
1650
c255614e
HWN
16512005-11-29 Han-Wen Nienhuys <hanwen@xs4all.nl>
1652
1653 * regex-posix.c (s_scm_regexp_exec): list the offending pattern
1654 upon error
1655
29295b0c
NJ
16562005-12-29 Neil Jerram <neil@ossau.uklinux.net>
1657
9a5fa6e9 1658 * fluids.c (next_fluid_num): [From Ludovic Courtès:] Don't trigger
29295b0c
NJ
1659 the GC when allocated_fluids_len is zero.
1660
2824f4dc
NJ
16612005-12-14 Neil Jerram <neil@ossau.uklinux.net>
1662
ec3a8ace
NJ
1663 * load.c (the_reader, the_reader_fluid_num): New.
1664 (scm_primitive_load): Support custom reader.
1665 (scm_init_load): Init the_reader and the_reader_fluid_num; export
1666 the_reader as `current-reader'.
1667
2824f4dc
NJ
1668 * scmsigs.c (do_read_without_guile): Use the "raw_data" passed in
1669 (rather than an uninitialized pointer on the stack).
1670
d9c36d2a
MV
16712005-12-07 Marius Vollmer <mvo@zagadka.de>
1672
6a88895b 1673 Reported by Bruce Korb:
241d9cea 1674
6a88895b
MV
1675 * init.c (invoke_main_func): Don't call exit here. Throws that
1676 are only caught by scm_with_guile will bypass us and would cause
1677 scm_boot_guile to return erroneously.
1678 (scm_boot_guile): Expect scm_with_guile to return and call exit
1679 here, passing it an appropriate exit code.
1680
1681 From Andy Wingo:
241d9cea 1682
d9c36d2a
MV
1683 * script.c (scm_find_executable): Compile fix -- fgetc returns an
1684 unsigned char cast to an int, or -1 for EOS.
241d9cea 1685
b54df254
MV
16862005-12-06 Marius Vollmer <mvo@zagadka.de>
1687
08f489c9
MV
1688 * srfi-4.h, srfi-4.c, srfi-4.i.c (take_uvec): Make BASE pointer
1689 non-const.
9a5fa6e9 1690 (scm_take_u8vector, etc): Likewise. Thanks to Ludovic Courtès!
241d9cea 1691
b54df254
MV
1692 * threads.h, threads.c (scm_t_guile_ticket, scm_leave_guile,
1693 scm_enter_guile): Removed from public API. See comment at
1694 scm_without_guile for the rationale.
1695
1696 * scmsigs.c (read_without_guile): New.
1697 (signal_delivery_thread): Use it instead of
1698 scm_leave_guile/read/scm_enter_guile.
1699
9d9ce2b5
MV
1700 From Stephen Compall:
1701
1702 * eval.c (scm_m_cond): Recognize SRFI 61 cond syntax.
1703 (CEVAL): Evaluate SRFI 61 cond clauses.
1704
9a5fa6e9 17052005-12-06 Ludovic Courtès <ludovic.courtes@laas.fr>
9fb5c8f9
NJ
1706
1707 * gc-card.c (scm_i_card_statistics): Return if BITVEC is NULL.
1708 This was typically hit when running `gc-live-object-stats' right
1709 after starting Guile.
1710
efeac8ae
KR
17112005-11-30 Kevin Ryde <user42@zip.com.au>
1712
1713 * srfi-13.c (scm_string_append_shared): No copying if just one
1714 non-empty string in args.
1715
606183ba
KR
17162005-11-26 Kevin Ryde <user42@zip.com.au>
1717
1718 * gc-mark.c (scm_mark_all): Change C++ comment to C comment. Reported
9a5fa6e9 1719 by Ludovic Courtès.
606183ba
KR
1720
1721 * list.c (list): Should be "primitive" in SCM_SNARF_DOCS, not
1722 "register".
1723
1724 * random.c (scm_i_copy_rstate, scm_c_make_rstate): Don't test for
1725 scm_malloc returning NULL, it never does that.
1726 * putenv.c (putenv): Likewise.
1727
1728 * socket.c (scm_fill_sockaddr): Remove SCM_C_INLINE_KEYWORD, this is
1729 much too big to want to inline.
1730
9a5fa6e9 17312005-11-17 Ludovic Courtès <ludovic.courtes@laas.fr>
dbb5de29
NJ
1732
1733 * print.c (EXIT_NESTED_DATA): Before popping from the stack, reset
1734 the value at its top. This fixes a reference leak.
1735 (PUSH_REF): Perform `pstate->top++' after calling
1736 `PSTATE_STACK_SET ()' in order to avoid undesired potential side
1737 effects.
1738
9a5fa6e9 17392005-11-12 Ludovic Courtès <ludovic.courtes@laas.fr>
3f98874a
NJ
1740
1741 * gc.c (scm_weak_vectors): Removed.
1742
f07d2b20
KR
17432005-11-12 Kevin Ryde <user42@zip.com.au>
1744
1745 * socket.c (scm_setsockopt): Missing @defvar in docstring. Reported
9a5fa6e9 1746 by Ludovic Courtès.
f07d2b20 1747
bedd3f5f
MV
17482005-11-07 Marius Vollmer <mvo@zagadka.de>
1749
1750 * stime.c (scm_mktime): Use scm_frame_critical_section instead of
1751 SCM_CRITICAL_SECTION_START/END since the code inside the critical
1752 section might exit non-locally.
1753
7c9c0169
NJ
17542005-11-04 Neil Jerram <neil@ossau.uklinux.net>
1755
1756 * eval.c (sym_instead): New symbol.
1757 (ENTER_APPLY): Remove optional use of a continuation when making
1758 trap call.
1759 (scm_debug_opts): Change doc for 'cheap option to make clear that
1760 it is now obsolete.
1761 (CEVAL, SCM_APPLY): Remove optional use of a continuation when
1762 making trap calls, and implement substitution of eval expressions
1763 and return values using the values that the trap call handlers
1764 return.
1765
1766 * debug.h (SCM_CHEAPTRAPS_P): Removed.
1767
9a5fa6e9 17682005-10-27 Ludovic Courtès <ludovic.courtes@laas.fr>
64cdbfc7
KR
1769
1770 * socket.c (scm_fill_sockaddr): No need to check NULL from scm_malloc.
1771 (scm_connect, scm_bind, scm_sendto): Accept sockaddr object.
1772 (scm_addr_vector): Renamed to _scm_from_sockaddr, update usages.
1773 (scm_from_sockaddr, scm_to_sockaddr, scm_make_socket_address,
1774 scm_c_make_socket_address): New functions.
1775 * socket.h: Add prototypes.
1776
fc9f596c
KR
17772005-10-24 Kevin Ryde <user42@zip.com.au>
1778
1779 * socket.c (scm_init_socket): Add IPPROTO_IP, IPPROTO_TCP,
1780 IPPROTO_UDP. Remove SOL_IP, SOL_TCP, SOL_UDP. The former are in
1781 POSIX spec examples, the latter are not available on for instance
1782 NetBSD.
1783
1784 * socket.c (scm_getsockopt, scm_setsockopt): Update docstrings from
1785 posix.texi.
1786
1787 * stime.c (scm_strftime): Update docstring from posix.texi.
1788
0460c6e1
MV
17892005-10-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1790
1791 PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP is not portable enough.
241d9cea 1792
0460c6e1
MV
1793 * null-threads.h, pthread-threads.h
1794 (SCM_I_PTHREAD_RECURSIVE_MUTEX_INITIALIZER): Removed.
1795 (scm_i_pthread_mutexattr_recursive): New.
1796
1797 * threads.c (scm_i_pthread_mutexattr_recursive): Declare.
1798 (scm_i_critical_section_mutex): Do not initialize statically.
1799 (scm_threads_prehistory): Initialize
1800 scm_i_pthread_mutexattr_recursive and scm_i_critical_section_mutex
1801 here.
241d9cea 1802
0460c6e1
MV
1803 * eval.c (source_mutex): Do not initialiaze statically.
1804 (scm_init_eval): Do it here, using
1805 scm_i_pthread_mutexattr_recursive.
1806
7b4a9e52
MV
18072005-09-05 Marius Vollmer <mvo@zagadka.de>
1808
1809 * print.h (SCM_PRINT_KEYWORD_STYLE_I, SCM_PRINT_KEYWORD_STYLE):
1810 New.
1811 (sym_reader): New.
1812 (scm_print_opts): Added "quote-keywordish-symbols" option.
1813 (quote_keywordish_symbol): New, for evaluating the option.
1814 (scm_print_symbol_name): Use it.
1815 (scm_init_print): Initialize new option to sym_reader.
241d9cea 1816
5defc05d
NJ
18172005-08-15 Neil Jerram <neil@ossau.uklinux.net>
1818
1819 * eval.c (eval_letrec_inits): New.
1820 (CEVAL): Eval letrec initializer forms using eval_letrec_inits.
1821
036482e9
MV
18222005-08-12 Marius Vollmer <mvo@zagadka.de>
1823
1824 * numbers.c: Use scm_from_bool instead of SCM_BOOL. Thanks to
1825 Peter Gavin!
1826
5c347f8c
KR
18272005-08-12 Kevin Ryde <user42@zip.com.au>
1828
1829 * srfi-13.c (scm_string_for_each_index): Correction to docstring.
1830
bc721aa2
KR
18312005-08-06 Kevin Ryde <user42@zip.com.au>
1832
1833 * srfi-13.c (scm_string_any, scm_string_every, scm_string_tabulate,
1834 scm_string_trim, scm_string_trim_right, scm_string_trim_both,
1835 scm_string_index, scm_string_index_right, scm_string_skip,
1836 scm_string_skip_right, scm_string_count, scm_string_map,
1837 scm_string_map_x, scm_string_for_each, scm_string_for_each_index,
1838 scm_string_filter, scm_string_delete): Use scm_t_trampoline_1 for
1839 procedures called in loops.
1840
126c81db
KR
18412005-08-02 Kevin Ryde <user42@zip.com.au>
1842
1843 * strports.c (st_flush): Increase buffer by 1.5x when growing, to
1844 avoid lots of copying where previoulsy growing by only 80 bytes at a
1845 time.
1846
7f278dc6
MV
18472005-08-01 Marius Vollmer <mvo@zagadka.de>
1848
1849 * modules.h, modules.c (scm_eval_closure_module): Removed, we
1850 already have scm_lookup_closure_module, which does the same thing.
241d9cea 1851
cb5c4b07
MV
18522005-08-01 Marius Vollmer <mvo@zagadka.de>
1853
1854 New marking algorithm for weak hashtables that fixes the problem
1855 that references from the non-weak value to the associated weak
1856 key (for example) would prevent the entry from ever being dropped.
1857
1858 Guardians have been changed back to their original semantics and
1859 are no longer greedy and no longer drop cycles.
241d9cea 1860
cb5c4b07
MV
1861 * gc-mark.c (scm_mark_all): Do not rely on hooks to run the weak
1862 hashtable and guardian machinery but call the relevant functions
1863 directly.
1864
1865 * guardians.h, guardians.c, deprecated.h,
1866 deprecated.c (scm_destroy_guardian_x, scm_guardian_greedy_p,
1867 scm_guardian_destroyed_p, scm_guard, scm_get_one_zombie):
1868 Deprecated and moved into deprecated.[ch].
1869
1870 * guardians.h, guardians.c: Mostly rewritten.
1871 (scm_i_init_guardians_for_gc,
1872 scm_i_identify_inaccessible_guardeds,
1873 scm_i_mark_inaccessible_guardeds): New.
930888e8 1874 (scm_make_guardian): Removed greedy_p argument.
241d9cea 1875
cb5c4b07
MV
1876 * weaks.h, weaks.c (SCM_I_WVECT_TYPE, SCM_I_SET_WVECT_TYPE): New.
1877 (SCM_I_WVECT_N_ITEMS, SCM_I_SET_WVECT_N_ITEMS): New.
1878 (SCM_WVECTF_NOSCAN, SCM_WVECT_NOSCAN_P): Removed.
1879 (scm_weaks_prehistory): Removed.
1880 (scm_i_init_weak_vectors_for_gc, scm_i_mark_weak_vector,
1881 scm_i_mark_weak_vectors_non_weaks,
1882 scm_i_remove_weaks_from_weak_vectors, scm_i_remove_weaks): New.
1883 (scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
1884 scm_scan_weak_vectors): Removed.
241d9cea 1885
cb5c4b07
MV
1886 * hashtab.h (scm_i_scan_weak_hashtables): New.
1887 * hashtab.c (make_hash_table, scm_i_rehash): Do not use
1888 SCM_WVECTF_NOSCAN.
1889 (hashtable_print): Use SCM_HASHTABLE_N_ITEMS instead of
1890 t->n_items.
1891 (scan_weak_hashtables, scm_i_scan_weak_hashtables): Renamed former
1892 to latter. Do not scan the alists themselves, this is done by the
1893 weak vector code now. Just update the element count.
1894
1895 * vectors.h (SCM_I_WVECT_TYPE, SCM_I_WVECT_EXTRA): Renamed former
1896 to latter. The type is now only part of the cell word.
1897 (SCM_I_SET_WVECT_TYPE, SCM_I_SET_WVECT_EXTRA): Likewise.
1898
1899 * init.c (scm_i_init_guile): Do not call scm_weaks_prehistory.
1900
3e2073bd
MD
19012005-07-18 Mikael Djurfeldt <mdj@d14n36.pdc.kth.se>
1902
1903 Some changes towards making it possible to run Guile on the EM64T
1904 platform.
1905
1906 * gc.c (scm_gc_stats): Bugfix: Measure size of the type we are
1907 mallocating for (unsigned long *bounds).
1908
1909 * hashtab.c (scm_i_rehash): Cast SCM_HASHTABLE_FLAGS (table) to
1910 scm_t_bits before storing them in the type word.
241d9cea 1911
3e2073bd
MD
1912 * gc.c (tag_table_to_type_alist): Modified type of c_tag from
1913 scm_t_bits to int.
1914
e8ac8e75
KR
19152005-07-12 Kevin Ryde <user42@zip.com.au>
1916
1917 * eval.c (scm_dbg_make_iloc): Should be SCM_IFRAMEMAX and
1918 SCM_IDISTMAX, and cast uints through scm_t_bits to make gcc happy.
1919 * pairs.c (scm_error_pair_access): Use scm_from_locale_string rather
1920 than scm_makfrom0str.
1921 Reported by Ken Raeburn.
241d9cea 1922
e8ac8e75
KR
1923 * gc-card.c (scm_dbg_gc_get_bvec): Change return from long* to
1924 scm_t_c_bvec_long*, gcc 4 doesn't like different pointer targets when
1925 returning SCM_GC_CARD_BVEC.
241d9cea 1926
e8ac8e75
KR
1927 * pairs.c (scm_error_pair_access): Plain ascii ' in error message
1928 rather than latin-1 acute accent, the latter may not print on all
1929 terminals.
1930
1931 * srfi-13.c (scm_string_filter, scm_string_delete): Strip leading and
1932 trailing deletions, so as to return a substring if those are the only
1933 changes.
1934
adc0677d
KR
19352005-07-10 Kevin Ryde <user42@zip.com.au>
1936
1937 * socket.c (scm_inet_pton, scm_inet_ntop): Pointer cast to scm_t_uint8
1938 for scm ipv6 funcs, gcc 4 is picky about char* vs uchar*.
1939 (scm_getsockopt, scm_accept, scm_getsockname, scm_getpeername,
1940 scm_recvfrom) Use socklen_t, gcc 4 is picky about int* vs socklen_t*.
1941
8fecbb19
HWN
19422005-07-01 Han-Wen Nienhuys <hanwen@xs4all.nl>
1943
1944 * gc-card.c (scm_i_card_statistics): init tag.
1945
1946 * gc.c (tag_table_to_type_alist): check type of tag. Should be integer.
1947
fc9c5d06
HWN
19482005-06-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
1949
8fecbb19
HWN
1950 * fports.c (s_scm_open_file): add the b flag for binary to the doc
1951 string.
fc9c5d06 1952
08fce816
KR
19532005-06-25 Kevin Ryde <user42@zip.com.au>
1954
1955 * srfi-13.c (scm_string_filter, scm_string_delete): Partial revert
1956 last change, use plain copy-on-write substrings, the individual
1957 descriptions in the srfi don't mention shared storage (only the
1958 introduction does).
1959
1960 * strings.c (scm_take_locale_stringn): Use realloc to make room for
1961 null-terminator, rather than mallocing a whole new block.
1962 (scm_take_locale_string): Use scm_take_locale_stringn len==-1.
1963
fc4abd0e
MV
19642005-06-12 Marius Vollmer <mvo@zagadka.de>
1965
e3da8a30
MV
1966 * ramap.c (scm_array_index_map_x): First test for real arrays,
1967 then check for generalized vectors. This ensures that the
1968 generalized vector case need only work with zero-origin ranges.
12097c77
MV
1969 (scm_ra_eqp, scm_ra_compare): Use the new array handle functions
1970 to access the target array, making these functions work with all
1971 kinds of arrays, not just bit arrays.
e3da8a30 1972
fc4abd0e
MV
1973 * gh.h, gh_data.c, gh_eval.c, gh_funcs.c, gh_init.c, gh_io.c,
1974 gh_list.c, gh_predicates.c: Deprecated everything.
1975
1976 * environments.c (environment_default_folder,
1977 environment_default_observer): Do not use gh_call3, gh_call1.
1978
e4da0740
HWN
19792005-06-10 Han-Wen Nienhuys <hanwen@xs4all.nl>
1980
1981 * modules.c (s_scm_eval_closure_module): new function. Return the
1982 module inside an eval-closure.
1983
1984 * gc.c (scm_init_storage): make scm_stand_in_procs a weak_key hash
1985 table. This means that procedure properties are GC'd if the
1986 procedure dies.
1987
27667158
KR
19882005-06-11 Kevin Ryde <user42@zip.com.au>
1989
1990 * srfi-13.c (scm_string_filter, scm_string_delete): For char and
1991 charset cases, count chars kept and build a string in a second pass,
1992 rather than using a cons cell for every char kept. Use a shared
1993 substring when nothing removed (such sharing is allowed by the srfi).
1994
8a00ba71
HWN
19952005-06-09 Han-Wen Nienhuys <hanwen@xs4all.nl>
1996
1997 * gc.c (tag_table_to_type_alist): convert tag number to "tag %d"
241d9cea 1998 string, so live object stats can be sorted with string<?.
8a00ba71 1999
a677679f
MV
20002005-06-06 Marius Vollmer <mvo@zagadka.de>
2001
2ff668b0
MV
2002 * print.c (iprin1): When writing a string, collect all characters
2003 that can be printed directly into one call to scm_lfwrite.
2004 Previously, every character was output with its own call to
2005 write(2) on unbuffered ports.
2006
589f22f6
MV
2007 * eval.c (scm_eval_options_interface): Use
2008 scm_frame_critical_section instead of SCM_CRITICAL_SECTION_START
2009 and SCM_CRITICAL_SECTION_END.
2010
a677679f
MV
2011 * unif.c (scm_array_in_bounds_p): First test for real arrays, then
2012 check for generalized vectors. This ensures that the generalized
2013 vector case need only work with zero-origin ranges.
2014
f8cda9ee
KR
20152005-06-06 Kevin Ryde <user42@zip.com.au>
2016
2017 * srfi-13.c (scm_string_split): Compare char/char in scan. Mixing an
2018 unsigned int SCM_CHAR and a char string meant an 8-bit char was never
2019 matched.
2020
cdac1be4
MV
20212005-06-05 Marius Vollmer <mvo@zagadka.de>
2022
6642f7ac
MV
2023 * eval.c: Added comment on how to make case 1.1 of
2024 r5rs_pitfall.test succeed.
2025
cdac1be4
MV
2026 From Jan Nieuwenhuizen <janneke@gnu.org>. Thanks!
2027
2028 * hashtab.h: Bugfix: use SCM_API (WAS: extern).
241d9cea 2029
cdac1be4
MV
2030 * socket.c: Remove obsolete comment about socklen_t.
2031 (s_scm_setsockopt)[!HAVE_IP_MREQ]: Do not use ip_mreq code.
241d9cea 2032
cdac1be4 2033 * numbers.h (isnan)[__MINGW32__]: Remove.
241d9cea 2034
cdac1be4
MV
2035 * Makefile.am (gen_scmconfig_SOURCES): Bugfix: Add
2036 DEFAULT_INCLUDES when cross compiling.
241d9cea 2037
cdac1be4
MV
2038 * threads.c (ETIMEDOUT, pipe)[__MINGW32__]: Add defines.
2039
a677679f 2040 * stime.c (scm_strftime)[!HAVE_TM_ZONE]: Use
cdac1be4
MV
2041 SCM_SIMPLE_VECTOR_REF instead of SCM_VELTS. (Changed slightly
2042 from Jan's patch.)
241d9cea 2043
9e664475
MV
20442005-05-22 Marius Vollmer <mvo@zagadka.de>
2045
188d0c5e
MV
2046 * unif.c (scm_make_shared_array): Add old base to new base since
2047 scm_array_handle_pos does not include the base.
2048 (scm_aind): Likewise.
2049
9e664475
MV
2050 * ports.c (scm_putc, scm_puts): Assert that the port argument is a
2051 output port.
2052
5a6d139b
NJ
20532005-05-12 Neil Jerram <neil@ossau.uklinux.net>
2054
2055 Mac OS X compile warning fixes, reported by Richard Todd.
241d9cea 2056
5a6d139b
NJ
2057 * unif.c (scm_i_read_array): Declare rank as ssize_t, to guarantee
2058 that it is signed.
2059
2060 * strports.c (st_resize_port): Add unsigned char cast.
2061 (scm_mkstrport): Make read/write_buf cast unsigned.
2062
2063 * srfi-13.c (string_titlecase_x): Add unsigned char cast.
2064
2065 * rdelim.c (scm_read_line): Initialize slen.
2066
2067 * load.c (scm_search_path): Remove weird >=1, and add
2068 parentheses to clarify conditions.
2069
2070 * hash.c (scm_hasher): Add const unsigned char cast.
2071
2072 * gh_data.c (gh_chars2byvect): Add scm_t_int8 cast.
2073
b01532af
NJ
20742005-05-11 Neil Jerram <neil@ossau.uklinux.net>
2075
9a5fa6e9 2076 Fix C99isms reported by Ludovic Courtès:
241d9cea 2077
b01532af
NJ
2078 * threads.c (s_scm_lock_mutex): Don't declare msg in middle of
2079 code.
2080
2081 * gc.c (s_scm_gc_live_object_stats): Don't declare alist in middle
2082 of code.
2083
2084 * gc-card.c (scm_i_card_statistics): Don't declare tag in middle
2085 of code.
2086 (scm_i_card_statistics): Add block for declarations of tag_as_scm
2087 and current.
2088
229a0710
NJ
20892005-05-10 Neil Jerram <neil@ossau.uklinux.net>
2090
2091 * scmsigs.c (signal_delivery_thread): Return a value, to avoid
2092 compile warning reported by Werner Scheinast.
2093
645dd3fc
HWN
20942005-04-30 Han-Wen Nienhuys <hanwen@xs4all.nl>
2095
80038021
HWN
2096 * list.h: remove scm_list()
2097
645dd3fc
HWN
2098 * fluids.c (DYNAMIC_STATE_NEXT_LOC): new macro for use with
2099 SCM_DEBUG_CELL_ACCESSES
2100 (FLUID_NEXT_LOC): idem.
2101
9a68a4a8
KR
21022005-04-30 Kevin Ryde <user42@zip.com.au>
2103
2104 * numbers.c (scm_divide): Correction to 1/complex and <any>/complex,
2105 need to test abs(re)<abs(im) for choice of cases, otherwise divide by
2106 zero when re==0 and im<0. Reported by Jean Crepeau.
2107
0640cdaa
KR
21082005-04-25 Kevin Ryde <user42@zip.com.au>
2109
2110 * ramap.c (scm_array_map_x): Allow no source args, add num args checks
4d54ee35
KR
2111 to subr_1, subr_2, subr_2o and dsubr cases. No source args only has a
2112 few sensible uses (like filling with a random number generator say),
2113 but has been allowed in the past and so should be kept.
0640cdaa 2114
c0b85e9c
KR
21152005-04-23 Kevin Ryde <user42@zip.com.au>
2116
2117 * hashtab.c (scm_hashx_remove_x): Need to pass "closure" to
2118 scm_hash_fn_remove_x.
2119
2120 * list.c (scm_cons_star): Don't modify the rest list, it belongs to
2121 the caller when cons* is reached through apply.
2122
2123 * list.c (list): Use scm_list_copy, so as to produce a fresh list when
2124 list is called using apply, under the debugging evaluator.
2125 (scm_list): Remove.
2126
c51682b4
KR
2127 * list.c, list.h (scm_make_list): New code, moving make-list from
2128 boot-9.scm.
8cb2eff8 2129
c0575bde
KR
21302005-04-14 Kevin Ryde <user42@zip.com.au>
2131
2132 * numbers.c, numbers.h (scm_oneplus, scm_oneminus): New functions,
2133 converted from scheme code in boot-9.scm.
2134
47a298d9
KR
21352005-04-11 Kevin Ryde <user42@zip.com.au>
2136
2137 * srfi-13.c (scm_string_concatenate, scm_string_concatenate_shared):
2138 Validate list argument, scm_string_append and scm_string_append_shared
2139 don't do that to their rest argument (in a normal build).
2140
8ea3dc2e
MV
21412005-04-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2142
2143 * hashtab.h, hashtab.c (scm_t_hashtable): Removed 'closure' field. The
2144 closure can not be stored since it is no longer valid at GC time.
2145 (make_hash_table): Initialize 'hash_fn' field.
2146 (scm_i_rehash): Only store hash_fn in hash table when closre is
2147 NULL.
2148 (rehash_after_gc): Only call scm_i_rehash when 'hash_fn' is
2149 non-NULL. Always use a NULL closure.
2150 (scm_hash_fn_create_handle_x): Also rehash when table contains too
2151 few entries.
241d9cea 2152
08d2020d
MV
21532005-03-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2154
2155 * hashtab.h, hashtab.c (scm_hash_fx_remove_x): Removed delete_fn
2156 argument; always use scm_delq_x. The delete_fn function works on
2157 the handle, not the key, and it therefore makes no sense to make
2158 it configurable. Changed all callers.
2159 (scm_hashx_remove_x): Likewise. Also, exported to Scheme.
2160 (scm_hash_clear): Accept plain vectors as hashtables.
2161 (scm_delx_x): Removed.
241d9cea 2162
cb975c21
HWN
21632005-03-28 Han-Wen Nienhuys <hanwen@xs4all.nl>
2164
2165 * inline.h (scm_double_cell): use __asm__ iso. asm, to maintain
2166 compatibility with gcc -std=c99.
2167
4c908f2c
MD
21682005-03-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2169
2170 * async.h (scm_mask_ints): Removed left over reference to
2171 scm_root.
2172
2173 * threads.c: Removed fprintf debug statements.
241d9cea 2174
d193b04b
NJ
21752005-03-24 Neil Jerram <neil@ossau.uklinux.net>
2176
2177 * debug.c (scm_make_memoized): Restore use of SCM_UNPACK.
2178
c29748cd
NJ
21792005-03-23 Neil Jerram <neil@ossau.uklinux.net>
2180
2181 * debug.c (scm_make_memoized): Remove unnecessary critical
2182 section, and simplify by using SCM_RETURN_NEWSMOB.
2183
e654b062
MD
21842005-03-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2185
2186 * strings.h (SCM_STRING_UCHARS): Added missing argument.
2187
4bc6f1c6
KR
21882005-03-18 Kevin Ryde <user42@zip.com.au>
2189
2190 * arbiters.c (FETCH_STORE) [generic C]: Should be
9a5fa6e9 2191 scm_i_scm_pthread_mutex_lock/unlock now. Reported by Ludovic Courtès.
4bc6f1c6 2192
f1531813
KR
21932005-03-13 Kevin Ryde <user42@zip.com.au>
2194
2195 * numbers.c, numbers.h (scm_i_clonebig): Remove static, so can use in
2196 srfi-60.
2197
2198 * numbers.c (scm_logior): Must scm_i_normbig results as per scm_logand,
2199 because OR-ing bits into a negative can reduce the value to an inum.
2200
2201 * numbers.c (scm_num_eq_p): On 64-bit systems, be careful about
2202 casting inum to double since that can lose precision.
2203
a9fae247
MV
22042005-03-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2205
2206 * threads.h, threads.c (scm_i_thread): Added gc_running_p field.
2207 (guilify_self_1): Initialize it.
2208
2209 * gc.h, gc.c (SCM_FREECELL_P): Removed for good.
2210 (scm_block_gc, scm_gc_heap_lock): Removed. Removed all uses.
2211 (scm_gc_running_p): Now a macro that refers to the scm_i_thread
2212 field.
2213 (scm_i_sweep_mutex): Now a non-recursive mutex. GC can not happen
2214 recursively.
2215 (scm_igc, scm_i_gc): Renamed former to latter. Changed all uses.
2216 Do not lock scm_i_sweep_mutex, which is now non-recursive, or set
2217 scm_gc_running_p. Do not run the scm_after_gc_c_hook.
2218 (scm_gc): Lock scm_i_sweep_mutex, set scm_gc_running_p and run the
2219 scm_after_gc_c_hook here.
2220 (scm_gc_for_new_cell): Set scm_gc_running_p here and run the
2221 scm_after_gc_c_hook when a full GC has in fact been performed.
2222 (scm_i_expensive_validation_check): Call scm_gc, not scm_i_gc.
2223
2224 * gc-segment.c (scm_i_get_new_heap_segment): Do not check
2225 scm_gc_heap_lock.
2226
2227 * gc-malloc.c (scm_realloc, increase_mtrigger): Set
2228 scm_gc_running_p while the scm_i_sweep_mutex is locked.
2229
2230 * inline.h (scm_cell, scm_double_cell): Do not check
2231 scm_gc_running_p, allocation during sweeping is OK.
2232
2233 * gdbint.c (SCM_BEGIN_FOREIGN_BLOCK, SCM_END_FOREIGN_BLOCK): Do
2234 not set scm_block_gc.
2235
2236 * init.c (scm_i_init_guile): Do not set scm_block_gc.
2237
2238 * deprecation.c (scm_c_issue_deprecation_warning): Use malloc
2239 instead of scm_malloc. The latter can not be used during GC.
2240
d1c38e11
MV
22412005-03-09 Marius Vollmer <mvo@zagadka.de>
2242
2243 * script.c (scm_compile_shell_switches): Added 2005 to Copyright
2244 years.
2245
99ec43c1
MV
22462005-03-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2247
2248 * gc-card.c (scm_i_sweep_card): Do not increase/decrease
2249 scm_gc_running_p. Sweeping can happen in parallel with
2250 allocation.
2251
2252 * inline.h: Updated comments for current threading implementation.
2253
2254 * threads.h, threads.c (scm_i_frame_single_threaded): Removed.
2255 (scm_i_thread): Removed unused signal_asyncs field.
2256 (threads_mark): Do not mark it.
2257 (guilify_self_1): Do not initialize it. Do initialize
2258 continuation_root field.
2259 (do_thread_exit): Do not remove thread from all_threads list.
2260 (on_thread_exit): Do it here, after leaving guile mode.
2261 (sleep_level): Removed.
2262 (scm_i_thread_put_to_sleep): Leave thread_admin_mutex locked when
2263 returning. Do not support recursive sleeps.
2264 (scm_i_thread_wake_up): Expect thread_admin_mutex to be locked on
2265 entry. Do not support recursive sleeps.
2266
2267 * fluids.c (ensure_state_size, ensure_all_state_sizes,
2268 resize_all_states): Collapsed ensure_state_size and
2269 ensure_all_state_sizes into one function named resize_all_states.
2270 Allocate new vectors outside of single threaded region. Do only
2271 simple things inside that region.
2272 (scm_make_fluid, scm_make_dynamic_state): Lock fluid_admin_mutex
2273 while adding to the global lists.
241d9cea 2274
99ec43c1 2275
461f34aa
MV
22762005-03-08 Marius Vollmer <mvo@zagadka.de>
2277
2278 libltdl is no longer distributed. We expect it to be installed
2279 already.
241d9cea 2280
461f34aa
MV
2281 * Makefile.am (INCLUDES): Removed @LTDLINCL@.
2282 (libguile_la_LIBADD): Removed @LIBLTDL@.
2283
4e047c3e
MV
22842005-03-07 Marius Vollmer <mvo@zagadka.de>
2285
2286 * threads.h, async.h, threads.c (SCM_CRITICAL_SECTION_START,
2287 SCM_CRITICAL_SECTION_END): Moved here from threads.h since now
2288 they also block/unblock execution of asyncs and call
2289 scm_async_click which is declared in async.h but threads.h can not
2290 include async.h since async.h already includes threads.h.
2291 (scm_i_critical_section_level): New, for checking mistakes in the
2292 use of the SCM_CRITICAL_SECTION_* macros.
2293 (scm_i_critical_section_mutex): Make it a recursive mutex so that
2294 critical sections can be nested.
2295
2296 * throw.c (scm_ithrow): Abort when scm_i_critical_section_level is
2297 not zero.
241d9cea 2298
4e047c3e
MV
2299 * threads.h, threads.c (scm_frame_lock_mutex): New.
2300 (scm_frame_critical_section): Take mutex as argument.
2301 (framed_critical_section_mutex): New, used as default for above.
2302 (scm_init_threads): Initialize it.
2303 (scm_threads_prehistory): Do not initialize thread_admin_mutex and
2304 scm_i_critical_section_mutex; both are initialized statically.
241d9cea 2305
4e047c3e
MV
2306 * continuation.c, deprecated.c, goops.c, guardians.c keywords.c,
2307 libguile_la-arrays.loT, objprop.c, ports.c, smob.c, sort.s,
b9d9ad3a
MV
2308 srcprop.c, stime.c, struct.c, throw.c, regex-posix.c: Include
2309 "libguile/async.h" for SCM_CRITICAL_SECTION_START/END.
4e047c3e
MV
2310
2311 * debug.c (scm_debug_options): Replace
2312 SCM_CRITICAL_SECTION_START/END with a frame and
2313 scm_frame_critical_section.
2314
2315 * continuations.c (scm_make_continuation): No longer a critical
2316 section.
2317 (scm_dynthrow): Abort when scm_i_critical_section_level is
2318 not zero.
241d9cea 2319
d0a45bff
MV
23202005-03-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2321
db6673e5
MV
2322 * threads.c (scm_try_mutex): Renamed argument for consistency.
2323
d0a45bff
MV
2324 * root.c (scm_call_with_dynamic_root): New docstring.
2325
2326 * eval.c: Define _GNU_SOURCE.
2327
9de87eea
MV
23282005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2329
2330 Big merge from the mvo-thread-cleanup branch. The main changes
2331 are:
241d9cea 2332
9de87eea
MV
2333 - The dynamic roots functionality has been split into dynamic
2334 states and continuations barriers. Fluids have been
2335 reimplemented and can now be garbage collected.
241d9cea 2336
9de87eea
MV
2337 - Initialization of Guile now works in a multi-thread friendly
2338 manner. Threads can freely enter and leave guile mode.
2339
2340 - Blocking on mutexes or condition variables or while selecting
2341 can now be reliably interrupted via system asyncs.
2342
2343 - The low-level threading interface has been removed.
2344
2345 - Signals are delivered via a pipe to a dedicated 'signal delivery
2346 thread'.
241d9cea 2347
9de87eea
MV
2348 - SCM_DEFER_INTS, SCM_ALLOW_INTS etc have been deprecated.
2349
2350 * throw.c (scm_handle_by_message): Exit only the current thread,
2351 not the whole process.
2352 (scm_handle_by_message_noexit): Exit when catching 'quit.
241d9cea 2353
9de87eea
MV
2354 * scmsigs.c (take_signal, signal_delivery_thread,
2355 start_signal_delivery_thread, ensure_signal_delivery_thread,
2356 install_handler): Reimplemented signal delivery as explained in
2357 the comments.
2358
2359 * pthreads-threads.h (scm_i_pthread_t, scm_i_pthread_self,
2360 scm_i_pthread_create, scm_i_pthread_detach, scm_i_pthread_exit,
2361 scm_i_sched_yield, scm_i_pthread_sigmask,
2362 SCM_I_PTHREAD_MUTEX_INITIALIZER,
2363 SCM_I_PTHREAD_RECURSIVE_MUTEX_INITIALIZER, scm_i_pthread_mutex_t ,
2364 scm_i_pthread_mutex_init, scm_i_pthread_mutex_destroy,
2365 scm_i_pthread_mutex_trylock, scm_i_pthread_mutex_lock,
2366 scm_i_pthread_mutex_unlock, SCM_I_PTHREAD_COND_INITIALIZER,
2367 scm_i_pthread_cond_t, scm_i_pthread_cond_init,
2368 scm_i_pthread_cond_destroy, scm_i_pthread_cond_signal,
2369 scm_i_pthread_cond_broadcast, scm_i_pthread_cond_wait,
2370 scm_i_pthread_cond_timedwait, scm_i_pthread_once_t,
2371 SCM_I_PTHREAD_ONCE_INIT, scm_i_pthread_once, scm_i_pthread_key_t ,
2372 scm_i_pthread_key_create, scm_i_pthread_setspecific,
2373 scm_i_pthread_getspecific, scm_i_scm_pthread_mutex_lock,
2374 scm_i_frame_pthread_mutex_lock, scm_i_scm_pthread_cond_wait,
2375 scm_i_scm_pthread_cond_timedwait): Provide the obvious mapping
2376 when using pthreads.
2377 * null-threads.c, null-threads.h: Provide dummy definitions for
2378 the above symbols when not using pthreads.
241d9cea 2379
9de87eea
MV
2380 * modules.h, modules.c (scm_frame_current_module): New.
2381
2382 * load.c (scm_primitive_load): Use scm_i_frame_current_load_port
2383 instead of scm_internal_dynamic_wind.
2384
2385 * init.h, init.c (restart_stack, start_stack): Removed.
2386 (scm_boot_guile, invoke_main_func): Simply use scm_with_guile.
2387 (scm_boot_guile_1): Removed.
2388 (scm_i_init_mutex): New.
2389 (really_cleanup_for_exit, cleanup_for_exit): New.
2390 (scm_init_guile_1, scm_i_init_guile): Renamed former to latter.
2391 Moved around some init funcs. Call
2392 scm_init_threads_default_dynamic_state. Register cleanup_for_exit
2393 with atexit.
241d9cea 2394
9de87eea
MV
2395 * hashtab.c (scm_hash_fn_create_handle_x, scm_hash_fn_remove_x):
2396 Use "!scm_is_eq" instead of "!=".
2397
2398 * ge-scmconfig.c, gen-scmconfig.h.in (SCM_I_GSC_USE_COOP_THREADS,
2399 SCM_USE_COOP_THREADS): Removed.
2400
2401 * gc.c (scm_igc): Take care that scm_gc_running_p is properly
2402 maintained. Unlock scm_i_sweep_mutex before running
2403 scm_after_gc_c_hook.
2404 (scm_permanent_object): Allocate outside of critical section.
2405 (cleanup): Removed.
241d9cea 2406
9de87eea
MV
2407 * fluids.h, fluids.c: Reimplemented completely.
2408 (SCM_FLUID_NUM, SCM_FAST_FLUID_REF,
2409 SCM_FAST_FLUID_SET): Reimplemented as functions.
2410 (scm_is_fluid): New.
2411 (scm_i_make_initial_fluids, scm_i_copy_fluids): Removed.
2412 (scm_make_dynamic_state, scm_dynamic_state_p,
2413 scm_is_dynamic_state, scm_current_dynamic_state,
2414 scm_set_current_dynamic_state, scm_frame_current_dynamic_state,
2415 scm_c_with_dynamic_state, scm_with_dynamic_state,
2416 scm_i_make_initial_dynamic_state, scm_fluids_prehistory): New.
241d9cea 2417
9de87eea
MV
2418 * feature.c (progargs_fluid): New.
2419 (scm_program_arguments, scm_set_program_arguments): Use it instead
2420 of scm_progargs.
2421 (scm_init_feature): Allocate it. Also, only add "threads" feature
2422 when SCM_USE_PTHREAD_THREADS is true.
241d9cea 2423
9de87eea
MV
2424 * eval.c (scm_makprom): Use scm_make_recursive_mutex instead of
2425 scm_make_rec_mutex, with all the consequences.
2426 (scm_eval_x, scm_eval): Use scm_frame_begin etc instead of
2427 scm_internal_dynamic_wind. Handle dynamic states as second
2428 argument.
241d9cea 2429
9de87eea
MV
2430 * threads.h, threads.c (scm_internal_select): Renamed to
2431 scm_std_select and discouraged old name.
2432 (scm_thread_sleep, scm_thread_usleep): Likewise, as scm_std_sleep
2433 and scm_std_usleep.
2434 (scm_tc16_fair_mutex, scm_tc16_fair_condvar, SCM_MUTEXP,
2435 SCM_FAIR_MUTEX_P, SCM_MUTEX_DATA, SCM_CONDVARP,
2436 SCM_FAIR_CONDVAR_P, SCM_CONDVAR_DATA, SCM_THREADP,
2437 SCM_THREAD_DATA): Removed.
2438 (SCM_I_IS_THREAD, SCM_I_THREAD_DATA): New.
2439 (scm_i_thread): New.
2440 (SCM_VALIDATE_THREAD, SCM_VALIDATE_MUTEX, SCM_VALIDATE_CONDVAR):
2441 Use scm_assert_smob_type.
2442 (scm_c_scm2thread, scm_thread_join, scm_thread_detach,
2443 scm_thread_self, scm_thread_yield, scm_mutex_init,
2444 scm_mutex_destroy, scm_mutex_trylock, scm_mutex_unlock,
2445 scm_rec_mutex_init, scm_rec_mutex_destroy, scm_make_rec_mutex,
2446 scm_rec_mutex_free, scm_rec_mutex_lock, scm_rec_mutex_trylock,
2447 scm_cond_init, scm_cond_destroy, scm_cond_wait,
2448 scm_cond_timedwait, scm_cond_signal, scm_cond_broadcast,
2449 scm_key_create, scm_key_delete, scm_setspecific, scm_getspecific,
2450 scm_thread_select): Removed. Replaced with scm_i_pthread
2451 functions as appropriate.
2452 (scm_in_guile, scm_outside_guile): Removed.
2453 (scm_t_guile_ticket, scm_leave_guile, scm_enter_guile): Return and
2454 take a ticket.
2455 (scm_with_guile, scm_without_guile, scm_i_with_guile_and_parent):
2456 New.
2457 (scm_i_frame_single_threaded): New.
2458 (scm_init_threads_default_dynamic_state): New.
2459 (scm_i_create_thread): Removed.
2460 (scm_make_fair_mutex, scm_make_fair_condition_variable): Removed.
2461 (scm_make_recursive_mutex): New.
2462 (scm_frame_critical_section): New.
2463 (SCM_CURRENT_THREAD, SCM_I_CURRENT_THREAD): Renamed former to
2464 latter, changed all uses.
2465 (scm_i_dynwinds, scm_i_setdynwinds, scm_i_last_debug_frame,
2466 scm_i_set_last_debug_frame): New, use them instead of scm_root
2467 stuff.
2468 (SCM_THREAD_LOCAL_DATA, SCM_SET_THREAD_LOCAL_DATA,
2469 scm_i_root_state_key,m scm_i_set_thread_data): Removed.
2470 (scm_pthread_mutex_lock, scm_frame_pthread_mutex_lock,
2471 scm_pthread_cond_wait, scm_pthread_cond_timedwait).
2472 (remqueue): Allow the removal of already removed cells. Indicate
2473 whether a real removal has happened.
2474 (scm_thread): Removed, replaced with scm_i_thread.
2475 (make_thread, init_thread_creatant): Removed.
2476 (cur_thread): Removed.
2477 (block_self, unblock_from_queue): New.
2478 (block, timed_block, unblock): Removed.
2479 (guilify_self_1, guilify_self_2, do_thread_exit,
2480 init_thread_key_once, init_thread_key,
2481 scm_i_init_thread_for_guile, get_thread_stack_base,
2482 scm_init_guile): New initialisation method.
2483 (scm_call_with_new_thread, scm_spawn_thread): Use it to simplify
2484 thread creation.
2485 (fair_mutex, fat_mutex, etc, fair_condvar, fat_condvar): Renamed
2486 "fair" to fat and implemented new semantics, including reliable
2487 interruption.
2488 (all_threads): Now a pointer to a scm_i_thread, not a SCM.
2489 (scm_threads_mark_stacks): Explicitly mark handle.
2490 (scm_std_select): Allow interruption by also selecting on the
2491 sleep_pipe.
2492 (scm_i_thread_put_to_sleep): Handle recursive requests for
2493 single-threadedness.
2494 (scm_threads_prehistory, scm_init_threads): Put current thread
2495 into guile mode via guileify_self_1 and guileify_self_2,
2496 respectively.
2497
2498 * fluid.h (SCM_FLUIDP): Deprecated.
241d9cea 2499
9de87eea 2500 * coop-threads.c: Removed.
241d9cea 2501
9de87eea
MV
2502 * continuations.h, continuations.c (scm_with_continuation_barrier,
2503 scm_c_with_continuation_barrier, scm_i_with_continuation_barrier):
2504 New.
2505
2506 * async.h, async.c (scm_i_setup_sleep, scm_i_reset_sleep): New.
2507 (async_mutex): New.
2508 (scm_async_click): Protected with async_mutex. Do not deal with
2509 signal_asyncs, which are gone. Set cdr of handled async cell to
2510 #f.
2511 (scm_i_queue_async_cell): Protected with async_mutex. Interrupt
2512 current sleep.
2513 (scm_system_async_mark_for_thread): Do not use scm_current_thread
2514 since that might not work during early initialization.
241d9cea 2515
9de87eea
MV
2516 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
2517 SCM_REALLOW_INTS): Deprecated by moving into deprecated.h and
2518 deprecated.c. Replaced all uses with SCM_CRITICAL_SECTION_START
2519 and SCM_CRITICAL_SECTION_END.
2520 (SCM_ENTER_A_SECTION, SCM_EXIT_A_SECTION): Removed. Replaced with
2521 SCM_CRITICAL_SECTION_START/END.
241d9cea 2522
9de87eea
MV
2523 * Makefile.am (modinclude_HEADER): Removed threads-plugin.h.
2524 (libguile_la_SOURCES): Added null-threads.c
2525 (EXTRA_libguile_la_SOURCES): Removed pthread-threads.c and
2526 threads-plugin.c.
2527 * pthread-threads.c, threads-plugin.c, threads-plugin.h: Removed.
2528
2529 * root.h, root.c (scm_tc16_root, SCM_ROOTP, SCM_ROOT_STATE,
2530 scm_root_state, scm_stack_base, scm_save_regs_gc_mark,
2531 scm_errjmp_bad, scm_rootcont, scm_dynwinds, scm_progargs,
2532 scm_last_debug_frame, scm_exitval, scm_cur_inp, scm_outp,
2533 scm_cur_err, scm_cur_loadp, scm_root, scm_set_root,
2534 scm_make_root): Removed or deprecated. Replaced with references
2535 to the current thread, dynamic state, continuation barrier, or
2536 some fluid, as appropriate.
2537 (root_mark, root_print): Removed.
2538 (scm_internal_cwdr): Reimplemented guts with
2539 scm_frame_current_dynamic_state and
2540 scm_i_with_continuation_barrier.
2541 (scm_dynamic_root): Return current continuation barrier.
241d9cea
NJ
2542
2543
ad3d5a65
MV
25442005-02-28 Marius Vollmer <mvo@zagadka.de>
2545
2546 * socket.c (scm_setsockopt): Handle IP_ADD_MEMBERSHIP and
2547 IP_DROP_MEMBERSHIP options. Also, reorganized the code a bit for
2548 cleanliness.
2549 (scm_init_socket): Define IP_ADD_MEMBERSHIP and
2550 IP_DROP_MEMBERSHIP.
2551 Thanks to Greg Troxel!
2552
73a90115
MD
25532005-02-27 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2554
2555 * gh.h: Bugfix: Include <libguile.h> outside of the extern "C"
2556 block.
2557
5d2cb3ab
MV
25582005-02-25 Marius Vollmer <mvo@zagadka.de>
2559
2560 * hashtab.c (scm_i_rehash): Remove elements from old bucket vector
2561 so that no two weak alist vectors share a spine.
2562 (scm_hash_fn_create_handle_x): Deal with a possible rehashing
2563 during GC before inserting the new alist cell.
2564
838c4126
MV
25652005-02-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2566
2567 * hashtab.c (scm_i_rehash): Cope with the case that a GC modifies
2568 the hashtable.
2569 (scm_hash_fn_create_handle_x): Likewise.
2570 * vectors.h (SCM_I_SET_WVECT_TYPE): New, for use in scm_i_rehash.
241d9cea 2571
29fed193
MD
25722005-02-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2573
2574 * unif.c (prototype_to_type): Bugfix: Don't compare prototype to
2575 the prototypical examples mentioned in the old reference manual.
2576 Instead keep the old semantics of dispatching on type. (Yes, this
2577 is extremely ugly, but the whole point of keeping the deprecated
2578 interface is not to break old code.)
2579
9cc49060
MD
25802005-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2581
2582 * deprecated.h (SCM_ARRAY_DIMS): Rename scm_i_attay_dims -->
2583 scm_i_array_dims.
2584
8447f463
KR
25852005-01-28 Kevin Ryde <user42@zip.com.au>
2586
2587 * numbers.c (scm_ash): Rewrite using shifts, much faster than
2588 integer-expt and multiply/divide. Inexacts and fractions no longer
2589 supported (they happened to work before for left shifts, but not
2590 right). Don't really need inexacts and fractions, since ash is
2591 documented as a "bitwise operation", and all the rest of those only
2592 take exact integers.
2593
1367aa5e
HWN
25942005-01-27 Han-Wen Nienhuys <hanwen@xs4all.nl>
2595
856fca7e
HWN
2596 * gc-card.c (scm_i_card_statistics): map structs, closures and
2597 subrs to one tag.
2598
1367aa5e 2599 * gc.c (s_scm_gc_live_object_stats): return alist, not hashtable.
856fca7e 2600 (tag_table_to_type_alist): ignore unknown types.
1367aa5e
HWN
2601
2602 * gc-segment.c (scm_i_all_segments_statistics): new function.
2603 (scm_i_heap_segment_statistics): new function
2604
2605 * gc.c (s_scm_gc_live_object_stats): new GUILE callable: return
2606 statistics on the number of live objects of each type.
2607
2608 * gc-card.c (scm_i_tag_name): new function.
241d9cea 2609 (scm_i_card_statistics): new function.
1367aa5e 2610
333db3b8
KR
26112005-01-24 Kevin Ryde <user42@zip.com.au>
2612
2613 * posix.c (scm_setlocale): Force errno=EINVAL for an error, since
2614 POSIX and C99 don't document errno being set. Reported by Bruno
2615 Haible.
2616 (scm_flock): Update docstring from manual.
2617
8447f463
KR
2618 * random.c (scm_i_init_rstate): Compare w to -1 not 0xffffffffUL, now
2619 that it's an scm_t_int32. Otherwise gcc 3.4 says it's always false on
2620 a 64-bit system.
2621
2622 * scmsigs.c (scm_sigaction_for_thread): Use scm_to_long for
2623 sa_handler, needs to be a long on 64-bit systems where int is only 32
2624 bits.
2625
88f59e53
MV
26262005-01-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2627
0eeb2611
MV
2628 * environments.c (obarray_enter, obarray_replace): Call
2629 SCM_HASHTABLE_INCREMENT when adding a new entry.
2630
88f59e53
MV
2631 * objects.c: Include goops.h for the scm_class_of prototype.
2632
2633 * hashtab.c (hashtable_size, HASHTABLE_SIZE_N): Restrict hashtable
2634 sizes to be smaller than the maximum lengths of vectors.
2635
219b2868
MV
26362005-01-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2637
2638 * ports.c, smob.c: Include "libguile/goops.h".
2639
2640 * objects.h, objects.c, goops.c, goops.h (scm_class_boolean,
2641 scm_class_char, scm_class_pair, scm_class_procedure,
2642 scm_class_string, scm_class_symbol,
2643 scm_class_procedure_with_setter, scm_class_primitive_generic,
2644 scm_class_vector, scm_class_null, scm_class_real,
2645 scm_class_complex, scm_class_integer, scm_class_fraction,
2646 scm_class_unknown, scm_port_class, scm_smob_class,
2647 scm_no_applicable_method, scm_class_of): Moved from objects to
2648 goops since they are only useable once goops has been loaded.
2649 (scm_classes_initialized): Removed.
2650 (scm_class_of): Do not check it.
2651 (create_standard_classes): Do not set it.
241d9cea 2652
009c6b9c
MV
26532005-01-17 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2654
50472546
MV
2655 * objects.h, objects.c (scm_classes_initialized): New.
2656 (scm_class_of): Signal error when scm_classes_initialized is zero.
2657 * goops.c (create_standard_classes): Set scm_classes_initialized
2658 to one.
241d9cea 2659
009c6b9c
MV
2660 * random.c (scm_random_solid_sphere_x): Use
2661 scm_c_generalized_vector_length instead of
2662 scm_uniform_vector_length.
2663
7719cbe9
MV
26642005-01-16 Marius Vollmer <mvo@zagadka.de>
2665
2666 * script.c (scm_compile_shell_switches): Removed debugging output.
2667
1ec44fed
KR
26682005-01-15 Kevin Ryde <user42@zip.com.au>
2669
2670 * numbers.c (scm_logtest, scm_logbit_p, scm_integer_expt): Update
2671 docstrings from manual.
2672 * random.c (scm_random_solid_sphere_x): Update docstring from manual.
2673
6e4cd850
MV
26742005-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2675
0b5a0521
MV
2676 * random.c: Don't check for definedness of SCM_HAVE_T_INT64, check
2677 its value.
2678
2679 Implement u64 and s64 uniform numeric vectors with bignums when
2680 scm_t_uint64 and scm_t_int64 are not available.
2681
2682 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_take_u64vector,
2683 scm_array_handle_u64_elements,
2684 scm_array_handle_u64_writable_elements, scm_u64vector_elements,
2685 scm_u64vector_writable_elements): Do not define when scm_t_uint64
2686 is not available.
2687 (scm_take_s64vector, scm_array_handle_s64_elements,
2688 scm_array_handle_s64_writable_elements, scm_s64vector_elements,
2689 scm_s64vector_writable_elements): Likewise for scm_t_int64.
2690 (uvec_sizes, uvec_print, uvec_equalp): Use SCM bignums when
2691 scm_t_int64/scm_t_uint64 are not available.
2692 (uvec_mark): New, to mark the bignums.
2693 (alloc_uvec): Initialize bignums.
2694 (uvec_fast_ref): Return bignums directly.
2695 (scm_uint64_min, scm_uint64_max, scm_int64_min, scm_int64_max,
2696 assert_exact_integer): New.
2697 (uvec_fast_set): Use them to validate the bignums.
2698 (scm_init_srfi_4): Set mark function of smob when needed.
2699 Initialize scm_uint64_min, scm_uint64_max, scm_int64_min,
2700 scm_int64_max.
241d9cea 2701
6e4cd850 2702 Recognize 1.4 -e syntax.
241d9cea 2703
6e4cd850
MV
2704 * script.c (sym_at, sym_atat, sym_main, all_symbols): New.
2705 (scm_compile_shell_switches): Use them to recognize and convert
2706 1.4 "-e" syntax.
241d9cea 2707
3b698afe
MV
27082005-01-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2709
2710 * deprecated.h, deprecated.c, strings.h, strings.c: Turn all
2711 deprecated features that once were macros but are now functions
2712 back into macros.
2713
d6dc83a9
MV
27142005-01-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2715
49086691
MV
2716 * eval.c, debug.h (SCM_WARN_DEPRECATED): New debug option.
2717 * deprecation.c (scm_issue_deprecation_warning,
2718 scm_c_issue_deprecation_warning_fmt): Use it.
2719 (mode): Removed.
2720 (print_summary): New.
2721 (scm_init_deprecation): Initialize SCM_WARN_DEPRECATED instead of
2722 mode.
241d9cea 2723
d6dc83a9 2724 Deprecated SCM_ARRAY* macros.
241d9cea 2725
d6dc83a9
MV
2726 * unif.h, unif.c, ramap.c, vectors.c, srfi-4.c, srfi-4.i.c
2727 (SCM_ARRAYP, SCM_I_ARRAYP): Renamed former to latter internal
2728 version. Changed all uses.
2729 (scm_tc16_array, scm_i_tc16_array,
2730 scm_tc16_enclosed_array, scm_i_tc16_enclosed_array,
2731 SCM_ARRAY_FLAG_CONTIGUOUS, SCM_I_ARRAY_FLAG_CONTIGUOUS,
2732 SCM_ENCLOSE_ARRAYP, SCM_I_ENCLOSE_ARRAYP,
2733 SCM_ARRAY_NDIM, SCM_I_ARRAY_NDIM,
2734 SCM_ARRAY_CONTP, SCM_I_ARRAY_CONTP,
2735 SCM_ARRAY_MEM, SCM_I_ARRAY_MEM,
2736 SCM_ARRAY_V, SCM_I_ARRAY_V,
2737 SCM_ARRAY_BASE, SCM_I_ARRAY_BASE,
2738 SCM_ARRAY_DIMS, SCM_I_ARRAY_DIMS,
2739 scm_t_array, scm_i_t_array): Likewise.
2740 (SCM_SET_ARRAY_CONTIGUOUS_FLAG, SCM_CLR_ARRAY_CONTIGUOUS_FLAG):
2741 Moved from unif.h to unif.c.
2742 (scm_c_array_rank): New.
2743 (scm_array_rank): Reimplement using it.
241d9cea 2744
d6dc83a9
MV
2745 * deprecated.h, deprecated.c (SCM_ARRAYP, SCM_ARRAY_NDIM,
2746 SCM_ARRAY_CONTP, SCM_ARRAY_MEM, SCM_ARRAY_V, SCM_ARRAY_BASE,
2747 SCM_ARRAY_DIMS, scm_t_array): New deprecated versions.
241d9cea 2748
dc91d8de
MV
27492005-01-11 Marius Vollmer <mvo@zagadka.de>
2750
2751 * ramap.c: Replace uses of scm_make_ra with scm_i_make_ra.
2752 (GVREF, GVSET): New abbreviations. Use them everywhere instead of
2753 scm_c_generalized_vector_ref and scm_cvref, and
2754 scm_c_generalized_vector_set_x, respectively.
2755 (RVREF, IVDEP, BINARY_ELTS_CODE, BINARY_PAIR_ELTS_CODE,
2756 UNARY_ELTS_CODE, UNARY_PAIR_ELTS_CODE): Removed since unused.
2757
2758 * unif.h, unif.c (indices_to_pos, scm_array_handle_pos): Renamed
2759 former to latter and made public. Changed all uses.
2760 (scm_i_make_ra): Made public, changed tag param to enclosed flag.
2761 (scm_make_ra): Deprecated, changed all uses to scm_i_make_ra.
2762 (scm_i_shap2ra): New internal version of scm_shap2ra.
2763 (scm_shap2ra): Deprecated, changed all uses to scm_i_shap2ra.
2764 (scm_i_ra_set_contp): New internal version of scm_ra_set_contp.
2765 (scm_ra_set_contp): Deprecated, changed all uses to
2766 scm_i_ra_set_contp.
2767 (scm_cvref, scm_aind, scm_raprin1): Deprecated.
241d9cea 2768
66d33784
MV
27692005-01-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2770
b06f099d
MV
2771 * eval.c (scm_eval): Added example to docstring. Thanks to Issac
2772 Trotts!
2773
5d35ad81
MV
2774 * unif.c (scm_list_to_typed_array): Allow the specification of the
2775 upper bound as well. This is needed for empty arrays.
2776 (l2ra): Give needed number of elements in error message.
2777 (scm_i_print_array): Print length information for arrays that need
2778 it.
2779 (scm_i_read_array): Parse it.
241d9cea 2780
66d33784
MV
2781 * deprecated.h, deprecated.c (SCM_CHARS, SCM_UCHARS, SCM_LENGTH,
2782 scm_i_object_chars, scm_i_object_length): Brought back from the
2783 dead.
2784
d7d7d401
MV
27852005-01-10 Marius Vollmer <mvo@zagadka.de>
2786
74c58fce
MV
2787 * ramap.c: Replaced single-index uses of scm_array_set_x with
2788 scm_c_generalized_vector_set_x.
2789
d7d7d401
MV
2790 * unif.c (scm_array_rank, scm_array_dimensions,
2791 scm_shared_array_offset, scm_shared_array_increments,
2792 scm_array_ref, scm_array_set_x): Use scm_t_array_handle operations
2793 to simplify code and make it more general.
2794 (scm_shared_array_root): Work with all kinds of arrays, including
2795 naked vectors.
2796 (indices_to_pos): New.
74c58fce
MV
2797 (scm_make_shared_array): Use it instead of scm_aind; use handle
2798 for oldra.
2799
4475d3fe
KR
28002005-01-10 Kevin Ryde <user42@zip.com.au>
2801
2802 * posix.c (scm_mkstemp): Update docstring from manual.
2803
d3ddc95e
KR
2804 * stime.c (scm_mktime): Missing default errno=EINVAL from prev change.
2805
8c8491f5
MV
28062005-01-09 Marius Vollmer <mvo@zagadka.de>
2807
b89ecc6f
MV
2808 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_i_uniform_vector_ref_proc,
2809 scm_i_uniform_vector_set_proc): New.
2810 (u8ref, u8set, s8ref, s8set, etc): New.
2811 (uvec_reffers, uvec_setters): New.
2812 (uvec_to_list): Use generic scm_array_handle_ref instead of
2813 uvec_fast_ref since scm_array_handle_ref should be faster now.
8cb01d9f
MV
2814 (coerce_to_uvec, scm_c_uniform_vector_ref,
2815 scm_c_uniform_vector_set_x): Likewise.
241d9cea 2816
b89ecc6f
MV
2817 * unif.h, unif.c, inline.h (scm_i_t_array_ref, scm_i_t_array_set):
2818 New.
2819 (scm_t_array_handle): Added ref, set, elements and
2820 writable_elements for fast inline operation of
2821 scm_array_handle_ref and scm_array_handle_set.
2822 (scm_array_handle_ref, scm_array_handle_set): Moved to inline.h
2823 and replaced with inline code that simply calls the ref/set
2824 members of the handle.
2825 (enclosed_ref, vector_ref, string_ref, bitvector_ref, memoize_ref,
2826 enclosed_set, vector_set, string_set, bitvector_set, memoize_set):
2827 New.
2828 (scm_array_handle_get): Initialize ref/set fields to memoize_ref
2829 and memoize_set.
2830 (scm_bitvector_fill_x, scm_bitvector_to_list, scm_bit_count,
2831 scm_bit_position, scm_bit_set_star_x, scm_bit_count_star,
2832 scm_bit_invert_x): Correctly multiply index with increment in the
2833 general case.
241d9cea 2834
8c8491f5
MV
2835 * unif.c (scm_array_handle_set): Correctly execute only one
2836 alternative. D'Oh!
2837 (scm_list_to_typed_array, l2ra): Use scm_t_array_handle to fill
2838 the array; this covers all cases with much simpler code.
241d9cea 2839
8c8491f5
MV
2840 * srfi-4.c (scm_uniform_element_size): Deprecated implementation
2841 as well.
2842
cd5d55c7
MV
28432005-01-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2844
2845 * srfi-4.c (uvec_type): New.
2846 (uvec_to_list, uvec_ref, uvec_set_x, scm_c_uniform_vector_ref,
2847 scm_c_uniform_vector_x): Use it to get concrete type.
2848
2849 * unif.h (scm_t_array_dim): Changed type of members to ssize_t, to
2850 fit the docs.
2851
2852 * unif.c (ra2l): Handle zero rank arrays.
2853 (scm_i_print_array): Print zero rank arrays specially.
2854 (tag_to_type): Return #t for an empty tag, not the empty symbol.
2855 (scm_i_read_array): Allow zero rank arrays.
241d9cea 2856
a4aad74e
MV
28572005-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2858
2859 * hashtab.h, hashtab.c (SCM_HASHTAB_BUCKET_LOC): Removed.
2860 (scan_weak_hashtables): Rewrote its use with SCM_HASHTAB_BUCKET
2861 and SCM_SET_HASHTAB_BUCKET.
2862
2863 * print.h, print.c (scm_print_state, SCM_PRINT_STATE_LAYOUT):
2864 Removed ref_stack field.
2865 (PSTATE_STACK_REF, PSTATE_STACK_SET): New, for accessing the stack
2866 of a print state. Use them everywhere instead of ref_stack.
241d9cea 2867
3a40d5e1 2868 * srfi-4.h (scm_uniform_element_size): Deprecated for real.
241d9cea 2869
a4aad74e
MV
2870 * srfi-4.c: Include deprecation.h.
2871
2872 * vectors.h, vectors.c, unif.h, unif.c, deprecated.h,
2873 deprecated.c, eq.c
2874 (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR): Removed.
2875 (scm_vector_elements, scm_vector_writable_elements,
2876 scm_generalized_vector_get_handle): Moved to vectors.[hc] from
2877 unif.[hc].
2878 (SCM_SIMPLE_VECTOR_LOC): Removed.
2879 (SCM_VECTOR_MAX_LENGTH, SCM_VECTOR_LENGTH, SCM_VELTS,
2880 SCM_WRITABLE_VELTS, SCM_VECTOR_REF, SCM_VECTOR_SET,
2881 scm_vector_equal_p): Moved from vectors.[hc] to deprecated.[hc].
2882 (scm_vector_equal_p, scm_i_vector_equal_p): Renamed former to
2883 latter. Changed use in eq.c.
241d9cea 2884
f01fe441
MV
28852005-01-07 Marius Vollmer <mvo@zagadka.de>
2886
2887 Make the uniform vector routines also deal with one dimensional
2888 arrays.
241d9cea 2889
f01fe441
MV
2890 * srfi-4.c (SCM_IS_UVEC): New, use it instead of
2891 SCM_SMOB_PREDICATE in this file.
2892 (is_uvec): Also recognize one-dimensional uniform numeric arrays
2893 of the right type.
2894 (scm_is_uniform_vector): Likewise.
2895 (uvec_fast_ref): Made BASE param const.
2896 (uvec_writable_elements, uvec_elements): New.
2897 (uvec_to_list, uvec_ref, uvec_set_x, uvec_length,
2898 scm_c_uniform_vector_length, scm_c_uniform_vector_ref,
2899 scm_c_uniform_set_x): Use them to also deal with one-dimensional
2900 arrays.
2901 (scm_uniform_vector_ref, scm_uniform_vector_set_x): Deprecate old
2902 argument convention.
2903 (scm_uniform_vector_to_list): Let uvec_to_list do all the
2904 checking.
2905 (scm_uniform_vector_length): Use uvec_length.
241d9cea 2906
2aaf5726
MV
29072005-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2908
2909 * srfi-4.h, srfi-4.c (scm_c_uniform_vector_element_size,
2910 scm_c_uniform_vector_size): Removed.
2911 (scm_array_handle_uniform_element_size): New.
241d9cea 2912
2aaf5726
MV
2913
2914 * unif.h (scm_array_handle_ref, scm_array_handle_set): Changed
2915 type of POS parameter to be signed, positions can be negative.
2916 (scm_array_handle_release): New, changed all uses of
2917 scm_t_array_handle to properly call it.
2918 (scm_vector_get_handle, scm_generalized_vector_get_handle):
2919 Renamed former to latter, changed all uses.
241d9cea 2920
34ae52fc
MV
29212005-01-05 Marius Vollmer <mvo@zagadka.de>
2922
2923 Updated bitvector routines to also use scm_t_array_handles.
241d9cea 2924
34ae52fc
MV
2925 * unif.h (scm_bitvector_elements,
2926 scm_bitvector_writable_elements): Use a scm_t_array_handle and
2927 deliver offset, length and increment to caller. Changed all uses.
2928 (scm_bitvector_release_elements,
2929 scm_frame_bitvector_release_elements,
2930 scm_bitvector_release_writable_elements,
2931 scm_frame_bitvector_release_writable_elements): Removed.
2932 (scm_array_handle_bit_elements,
2933 scm_array_handle_bit_writable_elements,
2934 scm_array_handle_bit_elements_offset): New.
2935 (scm_make_typed_array): The special value for non-initialized
2936 arrays is now SCM_UNSPECIFIED. The old special value SCM_BOOL_F
2937 was a valid value to fill bitvectors with, so it can't really be
2938 specialed out.
241d9cea 2939
c4cb7628
KR
29402005-01-04 Kevin Ryde <user42@zip.com.au>
2941
2942 * stime.c (scm_strftime): Free t.tm_zone produced by bdtime2c.
2943 Reported by Bill Schottstaedt.
2944
0356881d
MV
29452005-01-02 Marius Vollmer <mvo@zagadka.de>
2946
2947 * sort.c (quicksort): Added INC parameter for non-contigous
2948 vectors.
2949 (quicksort1): New, for contigous vectors. Both functions are
2950 generated from the same code by including "quicksort.i.c".
2951 (scm_restricted_vector_sort_x): Call one of quicksort and
2952 quicksort1, depending on increment of vector.
2953 (scm_sort): Simply call scm_sort_x on a copy of the list or
2954 vector.
2955 (scm_merge_vector_x, scm_merge_vector_step): Changed indices to
2956 size_t, added inc parameter.
2957 (scm_stable_sort_x): Allocate temporary storage as Scheme vector
2958 so that it doesn't leak.
2959 (scm_stable_sort): Simply call scm_stable_sort_x on a copy of the
2960 list or vector.
241d9cea 2961
0356881d
MV
2962 * ramap.c (scm_array_map_x): Do not try to convert fill value
2963 before filling, any necessary conversion is done while storing.
2964
2965 * gc-card.c (scm_i_sweep_card): Call scm_i_vector_free instead of
2966 doing it inline.
2967
2968 * hashtab.c, hashtab.h (SCM_HASHTABLE_BUCKETS): Removed.
2969 (SCM_HASHTABLE_BUCKET, SCM_HASHTABLE_BUCKET_LOC): New. Replaced
2970 all uses of SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
2971
2972 * tags.h, weaks.c, vports.c, hashtab.c, convert.c, sort.c,
2973 convert.c, convert.h, convert.i.c, deprecated.c, environments.c,
2974 eval.c, filesys.c, fluids.c, gc-mark.c, gh.h, gh_data.c, goops.c,
2975 hash.c, init.c, libguile_la-arrays.loT, modules.c, net_db.c,
2976 objects.c, ports.c, posix.c, print.c, random.c, read.c,
2977 regex-posix.c, scmsigs.c, socket.c, stime.c, symbols.c: Use new
2978 vector elements API or simple vector API, as appropriate. Removed
2979 SCM_HAVE_ARRAYS ifdefery. Replaced all uses of
2980 SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
241d9cea 2981
0356881d
MV
2982 * srfi-4.h, srfi-4.c,
2983 srfi-4.i.c (scm_array_handle_uniform_elements,
2984 scm_array_handle_uniform_writable_elements,
2985 scm_uniform_vector_elements,
2986 scm_uniform_vector_writable_elements):
2987 (scm_<foo>vector_elements, scm_<foo>vector_writable_elements): Use
2988 scm_t_array_handle, deliver length and increment.
2989 (scm_array_handle_<foo>_elements,
2990 scm_array_handle_<foo>_writable_elements): New.
241d9cea 2991
0356881d
MV
2992 * gen-scmconfig.h.in (SCM_I_GSC_HAVE_ARRAYS): Removed.
2993 * gen-scmconfig.c: Hard code SCM_HAVE_ARRAYS to "1".
241d9cea 2994
0356881d
MV
2995 * unif.h, unif.c (scm_t_array_handle, scm_array_get_handle,
2996 scm_array_handle_rank, scm_array_handle_dims, scm_array_handle_ref
2997 scm_array_handle_set, scm_array_handle_elements
2998 scm_array_handle_writable_elements, scm_vector_get_handle): New.
2999 (scm_make_uve, scm_array_prototype, scm_list_to_uniform_array,
3000 scm_dimensions_to_uniform_array): Deprecated for real.
3001 (scm_array_p, scm_i_array_p): Use latter for SCM_DEFINE since
3002 snarfing wont allow a mismatch between C and Scheme arglists.
3003 (scm_make_shared_array, scm_enclose_array): Correctly use
3004 scm_c_generalized_vector_length instead of
3005 scm_uniform_vector_length.
241d9cea 3006
0356881d
MV
3007 * validate.h (SCM_VALIDATE_VECTOR,
3008 SCM_VALIDATE_VECTOR_OR_DVECTOR): use scm_is_simple_vector instead
3009 of SCM_VECTORP.
3010
3011 * weaks.h, weaks.c: Use new internal weak vector API from
3012 vectors.h.
3013
3014 * Makefile.am (libguile_la_SOURCES, DOT_X_FILES, DOT_DOC_FILES,
3015 EXTRA_libguile_la_SOURCES): Changed ramap.c and unif.c from being
3016 'extra' to being regular sources.
3017 (noinst_HEADERS): Added quicksort.i.c.
3018 * quicksort.i.c: New file.
3019
3020 * vectors.h, vector.c (SCM_VECTORP, SCM_VECTOR_LENGTH, SCM_VELTS,
3021 SCM_WRITABLE_VELTS, SCM_VECTOR_REF, SCM_VECTOR_SET): Deprecated
3022 and reimplemented. Replaced all uses with scm_vector_elements,
3023 scm_vector_writable_elements, or SCM_SIMPLE_VECTOR_*, as
3024 appropriate.
3025 (scm_is_simple_vector, SCM_SIMPLE_VECTOR_LENGTH,
3026 SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET,
3027 SCM_SIMPLE_VECTOR_LOC): New.
3028 (SCM_VECTOR_BASE, SCM_SET_VECTOR_BASE, SCM_VECTOR_MAX_LENGTH,
3029 SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
3030 SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS):
3031 Removed.
3032 (scm_vector_copy): New.
3033 (scm_vector_elements, scm_vector_writable_elements): Use
3034 scm_t_array_handle, deliver length and increment. Moved to
3035 unif.h. Changed all uses.
3036 (scm_vector_release_elements,
3037 scm_vector_release_writable_elements,
3038 (scm_frame_vector_release_elements,
3039 scm_frame_vector_release_writable_elements): Removed.
3040 (SCM_I_IS_VECTOR, SCM_I_VECTOR_ELTS, SCM_I_VECTOR_WELTS,
3041 SCM_I_VECTOR_LENGTH, scm_i_vector_free): New internal API.
3042 (SCM_I_WVECTP SCM_I_WVECT_LENGTH SCM_I_WVECT_VELTS
3043 SCM_I_WVECT_GC_WVELTS SCM_I_WVECT_TYPE SCM_I_WVECT_GC_CHAIN
3044 SCM_I_SET_WVECT_GC_CHAIN, scm_i_allocate_weak_vector): New, for
3045 weak vectors.
3046
0336d18b
MV
30472004-12-29 Marius Vollmer <mvo@zagadka.de>
3048
3049 No longer use creators to specify the type of an array. Creators
3050 expose the fact that arrays are wrapped around vectors, but that
3051 might change.
241d9cea 3052
0336d18b
MV
3053 * srfi-4.h (scm_i_proc_make_u8vector, scm_i_proc_make_s8vector,
3054 scm_i_proc_make_u16vector, scm_i_proc_make_s16vector,
3055 scm_i_proc_make_u32vector, scm_i_proc_make_s32vector,
3056 scm_i_proc_make_u64vector, scm_i_proc_make_s64vector,
3057 scm_i_proc_make_f32vector, scm_i_proc_make_f64vector,
3058 scm_i_proc_make_c32vector, scm_i_proc_make_c64vector,
3059 uvec_proc_vars): Removed.
3060 (scm_i_generalized_vector_creator): Removed.
3061 (scm_i_generalized_vector_type): New.
3062
3063 * unif.h, unif.c (scm_typed_array_p, scm_make_array,
3064 scm_make_typed_array, scm_array_type, scm_list_to_array,
3065 scm_list_to_typed_array, scm_is_array, scm_is_typed_array): New.
3066 (scm_array_creator): Removed.
3067 (scm_array_p): Deprecated second PROT argument.
3068 (scm_dimensions_to_uniform_array, scm_list_to_uniform_array):
3069 Deprecated, reimplemented in terms of scm_make_typed_array and
3070 scm_list_to_typed_array.
3071 (scm_i_proc_make_vector, scm_i_proc_make_string,
3072 scm_i_proc_make_bitvector): Removed.
3073 (type_creator_table, init_type_creator_table, type_to_creator,
3074 make_typed_vector): New.
3075 (scm_i_convert_old_prototype): Removed.
3076 (prototype_to_type): New.
3077 (scm_make_uve): Deprecated, reimplemented using make_typed_vector.
3078 (scm_array_dimensions): Use scm_list_1 instead of scm_cons for
3079 minor added clarity.
3080 (scm_make_shared_array, scm_ra2contig): Use make_typed_vector
3081 instead of scm_make_uve.
3082 (tag_creator_table, scm_i_tag_to_creator): Removed.
3083 (tag_to_type): New.
3084 (scm_i_read_array): Use scm_list_to_typed_array instead of
3085 scm_list_to_uniform_array.
241d9cea 3086
277e8472
MV
30872004-12-27 Marius Vollmer <mvo@zagadka.de>
3088
32b26202
MV
3089 * unif.h, unif.c (scm_bitvector_elements): Made return value "const".
3090 (scm_bitvector_writable_elements): New.
3091 (scm_bitvector_release, scm_bitvector_release_elements):
3092 Renamed former to latter. Added explicit call to
3093 scm_remember_upto_here_1.
3094 (scm_frame_bitvector_release,
3095 scm_frame_bitvector_release_elements): Renamed former to latter.
3096 (scm_bitvector_release_writable_elements,
3097 scm_bitvector_release_writable_elements): New.
3098 Changed all uses as required by the changes above.
3099
3100 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_uniform_vector_elements,
3101 scm_u8vector_elements, etc): Made return value "const".
3102 (scm_uniform_vector_writable_elements,
3103 scm_u8vector_writable_elements, etc): New.
3104 (scm_uniform_vector_release, scm_uniform_vector_release_elements):
3105 Renamed former to latter. Added explicit call to
3106 scm_remember_upto_here_1.
3107 (scm_frame_uniform_vector_release,
3108 scm_frame_uniform_vector_release_elements): Renamed former to latter.
3109 (scm_uniform_vector_release_writable_elements,
3110 scm_frame_uniform_vector_release_writable_elements): New. Takes
3111 crown of longest identifier yet.
3112 Changed all uses as required by the changes above.
241d9cea 3113
277e8472
MV
3114 * vectors.h, vectors.c (scm_c_vector_set_x): Make return type
3115 void.
3116 (scm_is_vector, scm_vector_p, scm_vector_length,
3117 scm_c_vector_length, scm_vector_ref, scm_c_vector_ref,
3118 scm_vector_set_x, scm_c_vector_set_x, scm_vector_to_list,
3119 scm_vector_move_left_x, scm_vector_move_right_x,
3120 scm_vector_fill_x): handle one-dimensional arrays.
32b26202
MV
3121 (scm_vector_elements, scm_vector_release_elements,
3122 scm_vector_frame_release_elements, scm_vector_writable_elements,
3123 scm_vector_release_writable_elements,
3124 scm_vector_frame_release_writable_elements): New.
3125 (scm_list_to_vector, scm_vector_to_list, scm_vector_fill,
3126 scm_vector_move_left_x, scm_vector_move_right_x): Use them.
277e8472
MV
3127
3128 * ramap.c (scm_ramapc, scm_raeql): Use
3129 scm_c_generalized_vector_length instead of
3130 scm_uniform_vector_length.
3131 (scm_ramap, rafe): Use scm_c_vector_ref instead of SCM_VELTS. use
3132 scm_c_generalized_vector_ref instead of scm_uniform_vector_ref.
241d9cea 3133
49c51610
MV
31342004-12-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3135
3136 * continuations.h, continuations.c (scm_t_contregs): New 'offset'
3137 member for relocating debug frames.
3138 (scm_make_continuation): Set it.
3139
3140 * stacks.c (read_frame, read_frames, scm_make_stack,
3141 scm_last_stack_frame, scm_stack_id): Use the new 'offset' member
3142 of continuations instead of calculating the offset ourselves.
3143 Relocate 'vect' member of scm_t_debug_frame.
241d9cea 3144
3b2ee265
KR
31452004-12-16 Kevin Ryde <user42@zip.com.au>
3146
3147 * ramap.c (scm_array_map_x): Check for at least one source argument.
3148
e120686a
KR
31492004-12-14 Kevin Ryde <user42@zip.com.au>
3150
3151 * srfi-13.c (string-any, string-every): Use a scheme wrapper around
3152 the C code so for the final call to the predicate procedure is a tail
3153 call, per SRFI-13 spec.
3154
680b5237
KR
31552004-12-10 Kevin Ryde <user42@zip.com.au>
3156
3157 * eq.c (scm_eq_p, scm_eqv_p, scm_equal_p): Update docstrings from
3158 recent revision to the reference manual.
3159
3160 * numbers.c (scm_modulo): Amend fixme comment about negative divisor
3161 with "%", C99 says it's well-defined.
3162
3163 * socket.c (scm_from_ipv6): Just use mpz_import. Don't bother trying
3164 to fit scm_from_ulong_long, since that uses mpz_import anyway. Don't
3165 bother trying to fit scm_from_ulong, not really worth the trouble if
3166 addresses are more than 4 bytes usually.
3167
446d320c
KR
31682004-11-30 Kevin Ryde <user42@zip.com.au>
3169
3170 * gc_os_dep.c (NetBSD): Test __m68k__ and __arm__ as well as m68k and
3171 arm32. Reported by Greg Troxel.
3172
f2654760
MV
31732004-11-14 mvo <mvo@zagadka.de>
3174
3175 * unif.c, unif.h (scm_i_cvref): Made non-static for ramap.c.
3176
3177 * Makefile.am (INCLUDES): It is "@LTDLINCL@", not "@LTDLINC@".
3178
d550e35f
MV
31792004-11-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3180
3181 Enclosed arrays are now their own smob. This has been done to
3182 make the code more explicit about them and to prepare for the time
f2654760
MV
3183 when generalized vectors include arbitrary one-dimensional
3184 arrays. (Uptonow, enclosed arrays have been recognized by their
3185 use of an array as their storage 'vector'. When all generalized
3186 vectors are allowed as storage, including one-dimensional arrays,
3187 this will no longer work.)
241d9cea 3188
d550e35f
MV
3189 * unif.h, unif.c: (scm_tc16_enclosed_array, SCM_ENCLOSED_ARRAYP):
3190 New.
3191 (exactly_one_third, singp): Removed.
3192 (scm_array_p, scm_array_dimensions, scm_shared_array_root,
3193 scm_shared_array_offset, scm_shared_array_increments): Handle
3194 enclosed arrays explicitely.
3195 (scm_array_rank): Likewise. Also, do not return zero for
3196 non-arrays, signal an error instead since arrays with rank zero do
3197 exist.
3198 (scm_i_make_ra): New, for specifying the tag of the new array.
3199 (scm_make_enclosed_array): Use it.
3200 (scm_make_ra): Reimplemented in terms of scm_i_make_ra.
3201 (scm_make_shared_array): Use scm_c_generalized_vector_length
3202 instead of scm_uniform_vector_length.
3203 (scm_array_in_bounds_p): Rewritten to be much cleaner.
3204 (scm_i_cvref): New, doing the job of scm_cvref.
3205 (scm_cvref): Use scm_i_cvref.
3206 (scm_array_ref): Do not accept non-arrays when no indices are
3207 given. Use scm_i_cvref to do the actual access.
3208 ("uniform-array-set1"): Do not register.
3209 (scm_array_set_x, scm_uniform_array_read_x,
3210 scm_uniform_array_write): Handle enclosed arrays explicitly.
3211 (ra2l): Use scm_i_cvref instead of scm_uniform_vector_ref to also
3212 handle enclosed arrays.
3213 (scm_array_to_list): Handle enclosed arrays explicitly.
3214 (rapr1): Removed.
3215 (scm_i_print_array_dimension): Use scm_i_cvref to also handle
3216 enclosed arrays.
3217 (scm_i_print_enclosed_array): New.
3218 (tag_proto_table, tag_creator_table): Renamed former to latter.
3219 Added "a" and "b" for strings and bitvectors, resp.
3220 (scm_i_tag_to_prototype, scm_i_tag_to_creator): Renamed former to
3221 latter. Tag "a" is in the table now, no need to handle it as a
3222 legacy tag.
3223 (scm_raprin1): Just call scm_iprin1.
3224 (scm_array_creator, scm_array_prototype): Handle enclosed arrays
3225 explicitly.
3226 (scm_init_unif): Initialize scm_tc16_enclosed_array smob.
3227 Use scm_i_print_array as printer for scm_tc16_array.
241d9cea 3228
2ed34885
MV
32292004-11-10 Marius Vollmer <mvo@zagadka.de>
3230
823086c1
MV
3231 * ramap.c (cind): Changed second arg to be pointer to long instead
3232 of uniform vector.
3233 (scm_ramapc): Allocate index vector with scm_malloc and not as
d550e35f 3234 uniform vector. Wrap it in a frame so that it gets properly freed.
823086c1
MV
3235 (scm_array_index_map_x): Likewise.
3236
3237 * unif.c: Changed all uses of scm_array_prototype to
3238 scm_array_creator. (scm_i_get_old_prototype): Signal error when no
3239 prototype is known.
3240 (scm_uniform_array_read_x, scm_uniform_array_write): Reimplemented
3241 in terms of scm_uniform_vector_read_x and
3242 scm_uniform_vector_write, respectively. Strings and
3243 bitvector support has been dropped.
241d9cea 3244
2ed34885
MV
3245 * srfi-4.h, srfi-4.c: Do not include <libguile.h>, include the
3246 needed files directly. Include config.h, <unistd.h> and <io.h>
3247 when available.
3248 (scm_uniform_vector_read_x, scm_uniform_vector_write): New.
3249
2c72f253
MV
32502004-11-09 Marius Vollmer <mvo@zagadka.de>
3251
3252 * gh_data.c (gh_uniform_vector_length): Properly use
3253 scm_c_uniform_vector_length instead of scm_uniform_vector_length.
3254
3cc0a296
MV
32552004-11-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3256
3257 * srfi-4.h (scm_c_uniform_vector_ref, scm_c_uniform_vector_set_x):
3258 New.
3259 (scm_i_uniform_vector_creator): Removed.
3260 (scm_i_generalized_vector_creator): New.
3261 (scm_uniform_vector_length, scm_uniform_element_size): Do not
3262 handle generalized vectors, only uniform numeric vectors.
3263 (alloc_uvec): Do length check here...
3264 (make_uvec): ...but not here.
3265 (coerce_to_uvec): Use new generalized vector functions to handle
3266 all kinds of vectors in one go.
241d9cea 3267
3cc0a296
MV
3268 * tags.h (scm_tc7_bvect): Renamed to scm_tc7_unused7, renaming the
3269 remaining scm_tc7_unused tags to get a neatly ordered list.
3270
3271 * eq.c, evalext.c, gc-card.c, gc-mark.c, objects.c, print.c: Do no
3272 longer handle scm_tc7_bvect bitvectors.
3273
3274 * ramap.c: Use the new generalized vector functions to handle all
3275 vector like things.
3276
3277 * vectors.h, vectors.c (scm_is_vector, scm_c_vector_length,
3278 scm_c_vector_ref, scm_c_vector_set_x, scm_generalized_vector_p,
3279 scm_generalized_vector_length, scm_generalized_vector_ref,
3280 scm_generalized_vector_set_x, scm_generalized_vector_to_list,
3281 scm_is_generalized_vector, scm_c_generalized_vector_length,
3282 scm_c_generalized_vector_ref, scm_c_generalized_vector_set_x):
3283 New.
241d9cea 3284
3cc0a296
MV
3285 * unif.h, unif.c (scm_bitvector_p, scm_bitvector,
3286 scm_make_bitvector, scm_bitvector_length, scm_bitvector_ref,
3287 scm_bitvector_set_x, scm_list_to_bitvector, scm_bitvector_to_list,
3288 scm_bitvector_fill_x, scm_is_bitvector, scm_c_make_bitvector,
3289 scm_c_bitvector_length, scm_c_bitvector_ref,
3290 scm_c_bitvector_set_x, scm_bitvector_elements,
3291 scm_bitvector_release, scm_frame_bitvector_release,
3292 scm_tc16_bitvector, bitvector_free, bitvector_print,
3293 bitvector_equalp, count_ones, find_first_one): New.
3294 (scm_bit_count, scm_bit_position, scm_bit_set_star_x,
3295 scm_bit_count_star, scm_bit_invert_x, scm_istr2bve): Rewritten
3296 using the new C API for bitvectors and maybe count_ones or
3297 find_first_one, as appropriate.
3298 (SCM_I_MAX_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
3299 SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
3300 SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
3301 SCM_SET_BITVECTOR_LENGTH): Removed. Replaced all uses with the
3302 new functions from above.
3303 (scm_i_proc_make_vector, scm_i_proc_make_string,
3304 scm_i_proc_make_bitvector): Made non-static for use in
3305 scm_i_generalized_vector_creator.
3306 (scm_make_u1vector): Removed, replaced by scm_make_bitvector.
3307 (scm_make_uve): Validate that the created object is a generalized
3308 vector.
3309 (scm_i_legacy_tag): Removed.
3310 (scm_i_print_array): Do it here.
3311 (scm_raprin1): Only print enclosed arrays.
3312
3313 * Makefile.am (DOT_DOC_FILES): Added srfi-4.doc.
3314
c24d026b
MV
33152004-11-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3316
1f2328fe
MV
3317 * srfi-4.c (make_uvec): Use SCM_I_SIZE_MAX instead of SIZE_MAX for
3318 added portability.
3319
3320 * chars.c (scm_charnames, scm_charnums): Added "sp" as an alias
3321 for "space". Thanks to Bruce Korb!
3322
c24d026b
MV
3323 * rw.c (scm_read_string_x_partial): Bugfix, apply offset to dest
3324 only after dest has been set. Thanks to Hyper Division!
3325
3326 * gh_data.c (gh_uniform_vector_length): Use
3327 scm_uniform_vector_length instead of SCM_UVECTOR_LENGTH.
3328
d4ea47c8
MV
33292004-11-03 Marius Vollmer <mvo@zagadka.de>
3330
3331 * unif.h (SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
3332 SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
3333 SCM_SET_UVECTOR_LENGTH): Removed.
3334
236288e2
MV
33352004-11-02 Marius Vollmer <mvo@zagadka.de>
3336
9a5fa6e9 3337 Mac OS X and OpenBSD compatibility patches from Andreas Vögele.
236288e2
MV
3338 Thanks!
3339
3340 * backtrace.c (scm_display_backtrace_with_highlights): Join the
3341 first and the second line of the SCM_DEFINE macro call, since old
3342 preprocessors cannot handle definitions that are split into two
3343 lines.
3344
3345 * inline.h (scm_cell, scm_double_cell): Don't use C99 variable
3346 declarations.
3347
3348 * pairs.c (scm_i_chase_pairs): Replace scm_t_bits with
3349 scm_t_uint32 to fix the mismatch between the function declaration
3350 and definition.
3351
3352 * sort.c (quicksort): Don't use C99 variable declarations.
3353
3354 * srfi-4.c (uvec_fast_ref): Avoid a compiler warning by returning
3355 SCM_BOOL_F if no type matches.
3356
3357 * threads.c (thread_print): Cast a pointer to size_t when printing
3358 with scm_uintprint.
3359
3360 * unif.c (scm_i_tag_to_prototype): Make sure that "instead" gets
3361 defined.
3362 (scm_array_prototype): Deprecated.
3363
f738b51d
MV
33642004-11-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3365
5d1015ec
MV
3366 * srfi-4.h, srfi-4.c (scm_frame_uniform_vector_release): New.
3367 * unif.c (scm_bit_set_star_x, scm_bit_count_star_x): Use it to get
3368 more efficient access to the u32vector.
241d9cea 3369
034486df
MV
3370 * tags.h (scm_tc7_llvect, scm_tc7_uvect, scm_tc7_fvect,
3371 scm_tc7_dvect, scm_tc7_cvect, scm_tc7_svect, scm_tc7_byvect,
3372 scm_tc7_ivect): Renamed to scm_tc7_unused_1 to scm_tc7_unused_8.
3373
3374 * validate.h (SCM_VALIDATE_VECTOR_OR_DVECTOR): Accept f64vectors
3375 instead of the old-style dvectors.
3376
3377 * gh_data.c: Use new-style uniform arrays in place of old-style
3378 ones.
3379
3380 * eq.c, evalext.c, gc-card.c, gc-mark.c, objects.c, print.c,
3381 ramap.c, unif.c: Do no longer handle old-style uniform vectors.
3382
3383 * unif.c (scm_bit_set_star_x, scm_bit_count_star_x): Use u32vectors
3384 instead of old-sytle uvectors.
241d9cea 3385
034486df
MV
3386 * convert.c, convert.i.c: Rewritten completely, using
3387 scm_any_to_u8vector, etc and other new-style uniform vector
3388 functions.
3389
3390 * random.c (scm_random_solid_sphere_x,
3391 scm_random_hollow_sphere_x): Do not validate vector argument, this
3392 is already done elsewhere.
3393
3394 * srfi-4.h, srfi-4.i.c, srfi-4.c (coerce_to_uvec,
3395 scm_any_to_u8vector, etc): New.
3396 (scm_uniform_element_size, scm_uniform_vector_length): Do no
3397 longer handle old-style uniform vectors.
3398
f738b51d
MV
3399 * read.c (scm_lreadr): Bugfix: include the last bit in the
3400 bit vector.
3401
5e9c05a1
MV
34022004-10-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3403
327114a2
MV
3404 * unif.h, unif.c (scm_array_creator): New.
3405 (scm_i_get_old_prototype): New.
3406 (scm_array_prototype): use it to return old-style prototype, never
3407 return creators.
3408 (scm_make_uve): Use scm_call_1 instead of scm_call_2 with a second
3409 arg of SCM_UNDEFINED. The latter is wrong.
241d9cea 3410
5e9c05a1
MV
3411 * unif.h, unif.c (scm_make_u1vector): New, but only temporary.
3412 (make_uve): Removed.
3413 (scm_i_proc_make_vector, scm_i_proc_make_string,
3414 scm_i_proc_make_u1vector): New.
3415 (scm_init_unif): Initialize them.
3416 (scm_i_convert_old_prototype): New.
3417 (scm_make_uve): Use it to get the creator procedure. Removed all
3418 old code that created old-style uniform vectors.
3419 (scm_array_p): Handle generic vectors.
3420 (scm_dimensions_to_uniform_array): Do not fill new array with
3421 prototype when that is a procedure.
3422 (scm_list_to_uniform_array): Also accept a list of lower bounds as
3423 the NDIM argument.
3424 (scm_i_print_array): Print rank for shared or non-zero-origin
3425 vectors.
3426 (tag_proto_table, scm_i_tag_to_prototype, scm_i_read_array): New.
3427 (scm_raprin1): Do not call scm_i_array_print for enclosed arrays,
3428 which I do not understand yet.
3429 (scm_array_prototype): Explicitely handle generic vectors.
327114a2 3430
5e9c05a1
MV
3431 * numbers.c, number.h (scm_i_print_complex, icmplx2str): New.
3432 (iflo2str): Use icmplx2str for complex numbers.
3433
3434 * srfi-4.c, srfi-4.h (scm_i_read_homogenous_vector,
3435 scm_i_uniform_vector_prototype): Removed.
3436 (scm_i_uniform_vector_creator): New.
3437 (SCM_UVEC_C32, scm_c32vector, scm_make_c32vector, etc,
3438 SCM_UVEC_C64, scm_c64vector, scm_make_c64vector, etc): New.
3439 Updated all tables and generic functions to support them.
3440 (scm_i_proc_make_u8vector, scm_i_proc_make_s8vector, etc): New.
3441 (scm_init_srfi_4): Initialize them.
241d9cea 3442
5e9c05a1
MV
3443 * srfi-4.i.c (scm_take_u8vector, etc): use uvec_sizes instead of
3444 sizeof(CTYPE) as explained in the comment.
3445
3446 * read.c (scm_lreadr): Call scm_i_read_array for all characters
50472546 3447 following '#' that can start an array. Explicitely disambiguate
5e9c05a1
MV
3448 'i' and 'e' between introducing numbers and uniform vectors. Do
3449 not call scm_i_read_homogenous_vector, since that is also handled
3450 by scm_i_read_array now.
3451
f984af07
MV
34522004-10-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3453
3454 First cut at integrating uniform vectors from srfi-4 with the rest
3455 of Guile. This change replaces scm_tc7_byvect with a s8 uniform
3456 vector. The plan is to gradually replace one type after the other
3457 until none is left and then to consider general cleanups and
3458 optimizations.
241d9cea 3459
f984af07
MV
3460 * srfi-4.h, srfi-4.i.c (scm_u8vector_elements, etc): New.
3461
3462 * srfi-4.h, srfi-4.c (scm_uniform_vector_p,
3463 scm_uniform_vector_ref, scm_uniform_vector_set_x,
3464 scm_uniform_vector_to_list, scm_is_uniform_vector,
3465 scm_c_uniform_vector_lengths, scm_c_uniform_vector_size,
3466 scm_uniform_vector_elements, scm_uniform_vector_element_size,
3467 scm_uniform_vector_release): New.
3468 (scm_i_uniform_vector_prototype, scm_i_uniform_vector_tag): New.
3469 (scm_uniform_element_size, scm_uniform_vector_length): Moved here
3470 from unif.h, unif.c and extended to handle both the old and new
3471 uniform vectors.
3472
3473 * tags.h (scm_tc7_byvect): Commented out.
3474
3475 * unif.h, unif.c (scm_uniform_vector_ref, scm_array_ref): Renamed
3476 the former to the latter.
3477 (scm_uniform_vector_length, scm_uniform_element_size): Moved to
3478 srfi-4.h, srfi-4.c.
3479 (scm_make_uve): Call scm_make_s8vector for #\nul prototype.
3480 (scm_array_p, scm_array_rank, scm_array_dimensions,
3481 scm_transpose_array, scm_enclose_array, scm_array_ref, scm_cvref,
3482 scm_array_set_x, scm_array_contents, scm_uniform_array_read_x,
3483 scm_array_to_list, scm_array_prototype): Handle srfi-4 uniform
3484 vectors. Removed code for scm_tc7_byvect.
3485 (scm_dimensions_to_uniform_array): Fill array with 0 when
3486 prototype is #\nul.
3487 (scm_i_print_array_dimension, scm_i_legacy_tag,
3488 scm_i_print_array): New.
3489 (scm_raprin1): Call scm_i_print_array for arrays. Removed code
3490 for scm_tc7_byvect.
3491
3492 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp,
3493 scm_array_index_map_x, raeql_1, scm_array_equal_p): Handle srfi-4
3494 uniform vectors. Removed code for scm_tc7_byvect
3495
3496 * print.c (iprin1): Removed code for scm_tc7_byvect.
3497 * objects.c (scm_class_of): Likewise.
3498 * gc-mark.c (scm_gc_mark_dependencies): Likewise.
3499 * gc-card.c (scm_i_sweep_card): Likewise.
3500 * evalext.c (scm_self_evaluating_p): Likewise.
3501 * eq.c (scm_equal_p): Likewise.
3502
3503 * gh_data.c (gh_chars2byvect): Reimplemented with
3504 scm_make_s8vector.
3505 (gh_scm2chars): Handle s8vectors, removed code for scm_tc7_byvect.
3506
3507 * srfi-4.c (take_uvec): New.
3508 (alloc_uvec): Use it.
3509 * srfi-4.h, srfi-4.i.c (scm_take_u8vector, etc): New.
3510
3511 * random.c (vector_scale, vector_scale_x): Renamed former to the
3512 latter, since it modifies its argument.
3513 (vector_scale_x, vector_sum_squares, scm_random_normal_vector_x):
3514 Do not use scm_universal_vector_length for non-uniform vectors.
3515 Use scm_f64vector_elements to access innards of uniform vectors.
3516
3517 * convert.i.c: Convert srfi-4 style uniform vectors when
3518 requested.
3519 * convert.c (scm_c_scm2chars, scm_c_chars2scm,
3520 scm_c_chars2byvect): Use a s8vector instead of a scm_tc7_byvect.
241d9cea 3521
79d52182
MV
35222004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3523
3524 * numbers.h, numbers.c (scm_i_print_double): New.
3525
3526 * srfi-4.c, srfi-4.h, srfi-4.i.c: New files, initially from
3527 ../srfi/ but heavily modified.
3528 * Makefile.am: Add them in all the right places.
3529 * init.c (scm_init_guile_1): Call scm_init_srfi_4.
3530 * read.c (scm_lreadr): Call scm_i_read_homogenous_vector for '#f',
3531 '#u', and '#s'.
3532
3533 * read.h, read.c (scm_i_input_error): Renamed from scm_input_error
3534 and made non-static. Changed all uses.
3535
6191ccec
MV
35362004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3537
e64e80b0
MV
3538 * variable.c, threads.c, struct.c, stackchk.c, smob.c, root.c,
3539 print.c, ports.c, mallocs.c, hooks.c, hashtab.c, fports.c,
3540 guardians.c, filesys.c, coop-pthreads.c, continuations.c: Use
3541 scm_uintprint to print unsigned integers, raw heap words, and
3542 adresses, using a cast to scm_t_bits to turn pointers into
3543 integers.
3544
3545 * unif.c: Include "libguile/print.h".
3546
c90ac3a8
MV
3547 * numbers.h, numbers.c (SCM_T_INTBUFLEN): Increased to cover
3548 scm_t_intmax values.
3549 (scm_uint2str): New, for scm_t_uintmax.
3550 (scm_iint2str): Argument type changed to scm_t_intmax,
3551 reimplemented in terms of scm_uint2str.
241d9cea 3552
c90ac3a8
MV
3553 * print.c, print.h (scm_uintprint): New, for printing
3554 scm_t_uintmax values.
3555 (scm_intprint): Argument type changed to scm_t_intmax.
241d9cea 3556
77c2594f
MV
3557 * sort.c (quicksort, scm_merge, scm_merge_list_x,
3558 scm_merge_list_step, scm_merge_vector_step): Inserted SCM_TICKs at
3559 strategic places so that the loops can be interrupted.
3560
6191ccec
MV
3561 * Makefile.am (INCLUDES): Use @LTDLINC@ instead of
3562 "-I$(top_srcdir)/libguile-ltdl".
3563 (libguile_la_LIBADD): Use @LIBLTDL@ instead of
3564 "../libguile-ltdl/libguile-ltdl.a".
241d9cea 3565
6191ccec
MV
3566 * guile.c, dynl.c: Switched to using libltdl directly. Replaced
3567 all references to scm_lt_* with just lt_*. Include <ltdl.h>
3568 instead of <libguile-ltdl.h>.
3569
77600f3e
MV
35702004-10-20 Marius Vollmer <mvo@zagadka.de>
3571
3572 * sort.c (quicksort): Copy pivot out of the array while
3573 constructing the partitions; it could get overwritten otherwise.
3574 Because of the ultimate insertion sort, this bug did not cause
3575 quicksort to fail, it just put all the burdon on the insertion
3576 sort and was thus very slow. Thanks to Rolan Orre for reporting
3577 the slowness!
241d9cea 3578
5000379b
MV
35792004-10-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3580
192cd792
MV
3581 * numbers.c (scm_i_range_error): New.
3582 * conv-integer.i.c, conv-uinteger.i.c: Use it instead of
241d9cea 3583 scm_out_of_range.
192cd792
MV
3584
3585 * sort.c (scm_restricted_vector_sort_x): Validate startpos <=
6191ccec 3586 endpos. State inclusiveness/exclusiveness of bounds in docstring.
192cd792
MV
3587
3588 * unif.c (scm_array_p): When no prototype is given, explicitely
3589 test for allowable types, do not simply return true. Thanks to
3590 Roland Orre for reporting this!
3591
5000379b
MV
3592 * private-gc.h (SCM_DEFAULT_MAX_SEGMENT_SIZE): Increase to 20 Mib.
3593
3594 * gc-segment.c (scm_i_get_new_heap_segment): Limit size of new
3595 segment to scm_max_segment_size.
3596
497eb0b7
HWN
35972004-10-08 Han-Wen Nienhuys <hanwen@xs4all.nl>
3598
1367aa5e
HWN
3599 * gc.c (scm_igc): put scm_gc_running-- before running hooks.
3600
497eb0b7
HWN
3601 * inline.h (scm_double_cell): abort if GC running.
3602 (scm_cell): idem.
3603
aef0bdb4
MV
36042004-10-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3605
3606 * error.c (scm_wrong_type_arg): Do not talk about "argument" for
3607 pos == 0.
3608
3609 Keywords no longer store a 'dash symbol'. Instead, they store a
3610 symbol with their real name.
241d9cea 3611
aef0bdb4
MV
3612 * keywords.h, keywords.c, deprecated.h, deprecated.c
3613 (SCM_KEYWORDP, SCM_KEYWORDSYM): Deprecated and implemented in
3614 terms of scm_is_keyword and scm_keyword_dash_symbol.
241d9cea 3615
aef0bdb4
MV
3616 * keywords.h, keywords.c, discouraged.h, discouraged.c
3617 (scm_make_keyword_from_dash_symbol, scm_keyword_dash_symbol,
3618 scm_c_make_keyword): Discouraged.
3619
3620 * keywords.h, keywords.c (scm_symbol_to_keyword,
3621 scm_keyword_to_symbol): Implemented in C.
3622 (scm_is_keyword, scm_from_locale_keyword,
3623 scm_from_locale_keywordn): New.
3624
241d9cea 3625 * goops.c: Replaced SCM_KEYWORDP with scm_is_keyword.
aef0bdb4
MV
3626
3627 * snarf.h (SCM_KEYWORD, SCM_GLOBAL_KEYWORD): Use
3628 scm_from_locale_keyword instead of scm_c_make_keyword.
3629
3630 * keywords.c (scm_symbol_to_keyword): Use SCM_ASSERT_TYPE for a
3631 better error message.
3632
3633 * deprecated.c: Include discouraged.h and keywords.h.
3634
3635 * read.c (scm_lreadr): Simply do (symbol->keyword (read)) after
3636 reading '#:' or ':'. See NEWS for consequences.
3637
818deb11
MV
36382004-09-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3639
43c25626
MV
3640 * read.c (scm_lreadr): Revert change from 2004-09-22: string
3641 literals are now read-write again (until SCM_STRING_CHARS is
3642 removed).
3643
3644 * strings.c (SCM_STRING_CHARS): Explicitely reject read-only
3645 strings with an error message that blames SCM_STRING_CHARS.
3646
3647 * options.c (change_option_setting): Use scm_car instead of
3648 explicit type check plus SCM_CAR.
3649
3650 * print.h, print.c (SCM_PRINT_HIGHLIGHT_PREFIX,
3651 SCM_PRINT_HIGHLIGHT_SUFFIX): New printer options.
3652 (scm_iprin1): Use them instead of the previoulsy hardcoded
3653 strings.
3654 (scm_init_print): Initialize them.
3655
3656 * backtrace.c (display_frame_expr): Do not remove control
3657 characters from the final string. Print it directly using
3658 scm_display.
3659
818deb11
MV
3660 * ramap.c (scm_array_equal_p): Include scm_tc7_svect in switch.
3661 Thanks to Roland Orre!
3662
d748089e
KR
36632004-09-29 Kevin Ryde <user42@zip.com.au>
3664
3665 * regex-posix.c (scm_regexp_exec): Correction to last change, should
3666 be whole original string in match struct, not offsetted substring.
3667
0ff7e3ff
HWN
36682004-09-24 Han-Wen Nienhuys <hanwen@xs4all.nl>
3669
3670 * gc.c (scm_gc_unprotect_object): abort if called during GC.
3671
ad7de4b8
MV
36722004-09-24 Marius Vollmer <mvo@zagadka.de>
3673
2edf319f
MV
3674 * Makefile.am (EXTRA_DIST): Added gettext.h.
3675
d180337b
MV
3676 * smob.c, smob.h (scm_assert_smob_type): New.
3677
05d7cf89 3678 * Makefile.am (guile_CFLAGS, guile_LDFLAGS, libguile_la_CFLAGS):
ad7de4b8
MV
3679 Include GUILE_CFLAGS.
3680 (libguile_la_LIBADD): Removed THREAD_LIBS_LOCAL, which is unused
3681 now.
3682 (libpath.h): Put GUILE_CFLAGS in the build-info.
241d9cea 3683
c9fedf8a
MV
36842004-09-23 Marius Vollmer <mvo@zagadka.de>
3685
3686 * print.h (scm_print_state): Added highlight_objects.
3687 * print.c (make_print_state, scm_free_print_state): Initialize it
3688 to SCM_EOL.
3689 (scm_iprin1): Wrap output in '{...}' when object is contained in
3690 highlight_objects.
3691
3692 * backtrace.h, backtrace.c (scm_display_backtrace_with_highlights,
3693 scm_backtrace_with_highlights): New. Set highlight_objects of
3694 printstate.
241d9cea 3695
c9fedf8a
MV
3696 * error.c (scm_error_scm): Document new meaning of data/rest
3697 argument for out-of-range and wrong-type-arg errors.
3698 (scm_out_of_range, scm_out_of_range_pos, scm_wrong_type_arg,
3699 scm_wrong_type_arg_msg): Pass bad_value in rest argument of
3700 exception so that it gets highlighted in the backtrace.
3701 Don't talk about "argument" when not giving a position.
241d9cea 3702
c9fedf8a
MV
3703 * throw.c (handler_message): The rest argument is the fourth
3704 argument, not everything after the third. Call
3705 scm_display_backtrace_with_highlights, passing the rest argument
3706 when appropriate.
3707
d5ac9b2a
MV
37082004-09-22 Marius Vollmer <mvo@zagadka.de>
3709
3710 From Jan Nieuwenhuizen <janneke@gnu.org> and Bruno Haible
3711 <bruno@clisp.org>:
3712
3713 * i18n.c: Handle --disable-nls (thanks Bruno).
3714
3715 * posix.c (scm_init_posix): Add LC_PAPER, LC_NAME, LC_ADDRESS,
3716 LC_TELEPHONE, LC_MEASUREMENT, LC_IDENTIFICATION.
3717
3718 * i18n.c (scm_i_to_lc_category): New name and export. Support all
3719 LC categories.
05d7cf89 3720 * posix.c (scm_setlocale): Use it.
d5ac9b2a
MV
3721
3722 * i18n.h, i18n.c (scm_textdomain, scm_bindtextdomain,
3723 scm_bind_textdomain_codeset): Make wrappers similar to C function
3724 they wrap.
3725
3726 * i18n.h: New file.
3727 * i18n.c: New file.
3728 * gettext.h: New file, taken from GNU gettext.
3729 * init.c: Include libguile/i18n.h.
3730 (scm_init_guile_1): Add call to scm_init_i18n().
3731 * Makefile.am (libguile_la_SOURCES): Add i18n.c.
3732 (DOT_X_FILES): Add i18n.x.
3733 (DOT_DOC_FILES): Add i18n.doc.
3734 (libguile_la_LDFLAGS): Add @LTLIBINTL@.
3735 (modinclude_HEADERS): Add i18n.h.
3736
d2e53ed6
MV
37372004-09-22 Marius Vollmer <mvo@zagadka.de>
3738
2cdfe016
MV
3739 * gh_list.c: Replaced SCM_CAR, etc with scm_car, etc.
3740
d2e53ed6
MV
3741 * discouraged.h, tags.h (SCM_CONSP, SCM_NCONSP): Moved to
3742 discouraged.h. Replaced all uses with scm_is_pair.
3743 (SCM_I_CONSP): New name for SCM_CONSP.
3744
3745 * pairs.h, pairs.c (scm_is_pair, scm_is_null, scm_car, scm_cdr,
3746 scm_i_chase_pairs, SCM_I_A_PAT, SCM_I_D_PAT, etc, scm_caar,
3747 scm_cadr, etc): New.
3748 (SCM_NULLP, SCM_NNULLP): Moved to discouraged.h. Replaced all
3749 uses with scm_is_null.
5dd82006 3750
d2e53ed6
MV
3751 * eval.c (scm_eval, scm_apply, call_cxr_1): Use scm_i_chase_pairs
3752 instead of explicit code.
5dd82006 3753
5dfdf243
MV
37542004-09-22 Marius Vollmer <mvo@zagadka.de>
3755
b50c53e5
MV
3756 * srfi-13.c (scm_string_contains, scm_string_contains_ci):
3757 Reworded logic a bit so that #f is returned immediately when s1 is
3758 too short to contain s2.
3759
5dfdf243 3760 * regex-posix.c (scm_regexp_exec): Convert string to
05d7cf89 3761 zero-terminated locale string before matching against it.
5dfdf243
MV
3762
3763 * strings.h, strings.c (scm_substring_read_only,
3764 scm_c_substring_read_only, scm_i_substring_read_only): New.
3765 (RO_STRING_TAG, IS_RO_STRING): New.
241d9cea
NJ
3766 (scm_i_string_writable_chars): Bail on read-only strings.
3767
5dfdf243
MV
3768 * read.c (scm_lreadr): use scm_c_substring_read_only for string
3769 literals, thus making them read-only as specified by R5RS.
3770
22ab5ba3
MV
37712004-09-22 Marius Vollmer <mvo@zagadka.de>
3772
3773 * eq.c (scm_equal_p): Allow smobs with different flags to be equal
3774 by testing for smobs before insisting on equal SCM_CELL_TYPES.
3775
2663421c
MV
37762004-09-21 Marius Vollmer <mvo@zagadka.de>
3777
0d83cb90
MV
3778 * numbers.h, numbers.c: Include <gmp.h> in numbers.h, not in
3779 numbers.c.
3780 (scm_to_mpz, scm_from_mpz): New.
9a5fa6e9 3781 Thanks to Andreas Vögele!
241d9cea 3782
2663421c
MV
3783 * read.c (skip_scsh_block_comment): Recognize "!#" everywhere, not
3784 just on a line of its own.
3785
3786 * srfi-13.c (scm_string_any, scm_string_every,
3787 scm_string_tabulate, string_upcase_x, string_down_case_x,
3788 string_titlecase_x, string_reverse_x, scm_string_tokenize): Use
3789 size_t instead of int for indices into strings. Make sure that no
9a5fa6e9 3790 over- or underflow occurs. Thanks to Andreas Vögele!
2663421c
MV
3791 (scm_xsubstring, scm_string_xcopy_x): Use ints for 'extended'
3792 indices, which can also be negative.
241d9cea 3793
b00b73f9
MV
37942004-09-20 Marius Vollmer <mvo@zagadka.de>
3795
3796 * gc-mark.c (SCM_MARK_BACKING_STORE): Removed, it was unused.
3797
3798 * threads.c (scm_threads_mark_stacks): Call
3799 SCM_MARK_BACKING_STORE. Also, do not use stack_len local, it was
3800 only used once.
3801
adba74f3
HWN
38022004-09-13 Jan Nieuwenhuizen <janneke@gnu.org>
3803
05d7cf89 3804 * srfi-13.c (scm_string_contains, scm_string_contains_ci):
adba74f3
HWN
3805 Bugfix: when subtracting unsigned values, make sure that result
3806 does not wrap.
3807
f6de32c8
KR
38082004-09-09 Kevin Ryde <user42@zip.com.au>
3809
3810 * filesys.c, stime.c (_POSIX_C_SOURCE): Use this only on hpux, it
3811 causes too many problems elsewhere (glibc, freebsd, mingw). Reported
9a5fa6e9 3812 by Andreas Vögele.
f6de32c8 3813
e548be5f
MV
38142004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3815
eb8d0af1
MV
3816 * Makefile.am (EXTRA_libguile_la_SOURCES): Removed "alloca.c".
3817
e548be5f
MV
3818 * eq.c (real_eqv): Pretend that all NaNs are equal.
3819
3820 * numbers.c (scm_integer_expt): Do not accept inexact integers.
3821
e7acba81
MV
38222004-09-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3823
874fbad1
MV
3824 * srfi-13.c (scm_string_trim_right, scm_string_xcopy_x): Correctly
3825 use size_t for some locals instead of int.
3826
e7acba81
MV
3827 * read.c (scm_flush_ws): Detect "#!"-style comments here.
3828 (scm_lreadr): Abort on seeing "#!", which should no longer happen.
3829 (skip_scsh_block_comment): Use scm_input_error instead of
3830 scm_misc_error in case of EOF.
241d9cea 3831
5de12658
KR
38322004-09-07 Kevin Ryde <user42@zip.com.au>
3833
3834 * numbers.c (scm_integer_expt): Reject exponent +/-inf.
5de12658
KR
3835 Bug report by Bill Schottstaedt.
3836
3837 * ports.c (scm_getc, scm_lfwrite): Recognise \a \b and \r for port
3838 column.
3839 * ports.h (SCM_ZEROCOL, SCM_DECCOL): New macros.
3840
3841 * posix.c (scm_access): Update docstring per manual.
3842
3843 * posix.c (scm_nice): Correction to error detection. Reported by
3844 Matthias Koeppe.
3845
3846 * stime.c (scm_current_time, scm_gettimeofday, scm_strptime): Don't
3847 throw error before unlocking mutex with SCM_ALLOW_INTS.
3848
e227addf
KR
38492004-09-06 Kevin Ryde <user42@zip.com.au>
3850
3851 * stime.h (SCM_TIME_UNITS_PER_SECOND): Use sysconf(_SC_CLK_TCK) when
3852 available. This also gets around CLK_TCK being absent when
3853 _GNU_SOURCE and _POSIX_C_SOURCE are defined in stime.c.
3854
edea856c
SJ
38552004-09-03 Stefan Jahn <stefan@lkcc.org>
3856
3857 * threads.c (scm_threads_mark_stacks): Fixed local variable
3858 definitions.
3859
e7acba81 3860 * strings.c (scm_i_substring_copy, scm_string_append): Fixed
edea856c
SJ
3861 local variable definitions.
3862
3863 * stime.c (_POSIX_C_SOURCE): Do not define this item on
3864 MinGW32 because it conflicts with its pthread headers.
874fbad1
MV
3865 (scm_mktime): Consider the HAVE_STRUCT_TM_TM_ZONE define.
3866 (scm_strftime): Using scm_from_locale_string() instead of
edea856c
SJ
3867 scm_makfrom0str().
3868
874fbad1 3869 * posix.c (scm_putenv): Fixed typo in the !HAVE_UNSETENV
edea856c
SJ
3870 part.
3871
3872 * numbers.c (scm_init_numbers): Removed check_sanity() call
3873 inside GUILE_DEBUG. The function has been removed somewhen...
3874
3875 * filesys.c (_POSIX_C_SOURCE): Do not define this item on
3876 MinGW32 because it conflicts with its pthread headers.
3877
d9eb2d67
MV
38782004-08-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3879
3880 * strings.c (SCM_STRINGP): Accept all strings.
3881 (SCM_STRING_CHARS): Reject shared substrings here.
3882
3883 * script.c (scm_compile_shell_switches): Added 2003 and 2004 to
3884 the Copyright years.
3885
c495c342
KR
38862004-08-27 Kevin Ryde <user42@zip.com.au>
3887
3888 * socket.c (scm_fill_sockaddr): Use HAVE_STRUCT_SOCKADDR_SIN_LEN and
3889 HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN for sockaddr fields, SIN_LEN and
3890 SIN_LEN6 are not defined on all systems. Reported by Michael Tuexen.
3891
57aa5515
MV
38922004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3893
3894 * strings.h, strings.c (scm_i_make_symbol): Added FLAGS parameter.
3895 * symbols.h, symbols.c (SCM_I_F_SYMBOL_UNINTERNED,
3896 scm_i_symbol_is_interned, scm_i_mem2symbol,
3897 scm_i_mem2uninternedsymbol): Use it to store uninternedness flag.
3898
ce25760f
MV
38992004-08-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3900
19ff6ffc
MV
3901 * srfi-13.c: First cut at thread-safeness and proper use of
3902 scm_i_string_chars et al. Copious scm_remember_upto_heres have
3903 been inserted. Made sure that no internal string pointer is used
3904 across a SCM_TICK or a possible GC.
241d9cea 3905
ce25760f
MV
3906 * script.c (scm_compile_shell_switches): Use
3907 scm_from_locale_string instead of scm_makfrom0str.
3908
3909 * srfi-13.c (scm_string_rindex): Export to Scheme, as it has
3910 always been.
3911
c5080b51
MV
39122004-08-25 Marius Vollmer <mvo@zagadka.de>
3913
3914 Moved SRFI-13 and SRFI-14 into the core, taking over the role of
3915 strop.c.
3916
3917 * srfi-13.c, srfi-13.h, srfi-14.c, srfi-14.h: New files.
3918 * strop.h, strop.c: Removed, they are now empty.
3919 * Makefile.am: Updated for new and removed files.
241d9cea 3920
c5080b51
MV
3921 * symbols.h, symbols.c (scm_string_ci_to_symbol): Moved here, next
3922 to scm_string_to_symbol.
3923
3924 * chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
3925 scm_char_whitespace_p, scm_upper_case_p, scm_lower_case_p,
3926 scm_char_is_both_p): Use scm_char_set_contains_p with the proper
3927 charset instead of libc functions.
3928
3929 * strorder.c (scm_string_equal_p, scm_string_ci_equal_p,
3930 scm_string_less_p, scm_string_leq_p, scm_string_gr_p,
3931 scm_string_geq_p, scm_string_ci_less_p, scm_string_ci_leq_p,
3932 scm_string_ci_gr_p, scm_string_ci_geq_p): Use scm_string_eq, etc
3933 instead of explicit code.
241d9cea 3934
c5080b51
MV
3935 * deprecated.c, load.c, posix.c, unif.c, symbols.c: Include
3936 "srfi-13.h" instead of "strop.h".
3937
3938 * init.c (scm_init_guile_1): Call scm_init_srfi_13 and
3939 scm_init_srfi_14. Do not call scm_init_strop.
3940
4b0d27f2
MV
39412004-08-24 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3942
3943 * numbers.c (scm_inf_p): Synced docstring back from manual.
3944
3ece39d6
MV
39452004-08-22 Marius Vollmer <mvo@zagadka.de>
3946
3947 * strings.c (get_str_buf_start): New helper function.
3948 (scm_i_substring, scm_i_substring_copy, scm_i_substring_shared,
3949 scm_i_string_char, scm_i_string_writable_chars): Use it.
3950 (scm_i_substring_copy): Make START argument optional for C
3951 callers, for upcoming SRFI-13 integration.
241d9cea 3952
3ece39d6
MV
39532004-08-21 Marius Vollmer <mvo@zagadka.de>
3954
3955 From Richard Todd, Thanks!
241d9cea 3956
3ece39d6
MV
3957 * script.c (scm_compile_shell_switches): added '-L' switch to add
3958 to the %load-path.
241d9cea 3959
5fa0939c
DH
39602004-08-21 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
3961
3962 * eval.c (unmemoize_exprs): When dropping internal body markers
3963 from the output during unmemoization, also drop those that are not
3964 immediately at the beginning of a body.
3965
2146fdeb
MV
39662004-08-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3967
c1f54b3d
MV
3968 * eval.c (scm_lookupcar1): Report "Variable used before given a
3969 value" insetad of an "Unbound" one for variables that are found
3970 but still contain SCM_UNDEFINED.
2146fdeb
MV
3971
3972 * posix.c (scm_mkstemp): Correction to the correction, mkstemp
3973 expects a null-terminated string in the locale encoding, but
3974 scm_i_string_writable_chars doesn't give that. Fixed by letting
3975 mkstemp modify a locale version of the tmpl argument and copying
3976 the result back into tmpl.
241d9cea 3977
2146fdeb
MV
3978 * strop.c (scm_substring_move_x): Store into str2, not str1.
3979
d4f76919
KR
39802004-08-20 Kevin Ryde <user42@zip.com.au>
3981
3982 * posix.c (scm_mkstemp): Correction to new locale_string stuff, need
3983 to modify the input string.
3984
b5247a6b
MV
39852004-08-19 Marius Vollmer <mvo@zagadka.de>
3986
3987 * deprecated.c (SCM_SYMBOL_CHARS): Cast away const in return.
3988 (SCM_SYMBOL_LENGTH): It's scm_i_symbol_length, not
3989 scm_c_symbol_length.
3990
f26b9395
MV
39912004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3992
3993 New string implementation, with copy-on-write strings and
3994 mutation-sharing substrings, and a new internal string API.
3995 Symbols can now share memory with strings.
241d9cea 3996
f26b9395
MV
3997 * tags.h (scm_tc7_stringbuf): New tag.
3998
3999 * strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
4000 scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
4001 replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
4002 uses.
4003 (scm_i_make_string, scm_c_make_string): New, to replace
4004 scm_allocate_string. Updated all uses.
4005 (SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
4006 SCM_STRING_LENGTH): Deprecated.
4007 (scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
4008 scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
4009 Discouraged. Replaced all uses with scm_from_locale_string or
4010 similar, as appropriate.
4011 (scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
4012 scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
4013 scm_substring_shared, scm_substring_copy): New.
4014
4015 * symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
4016 SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
4017 SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
4018 scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
4019 (SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
4020 Deprecated.
4021 (SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
4022 SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
4023 (scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
4024 New, to replace scm_str2symbol and scm_mem2symbol, respectively.
4025 Updated all uses.
4026 (scm_gensym): Generate only the number suffix in the buffer, just
4027 string-append the prefix.
4028
4029 * error.c (scm_memory_error): Do not try to throw, just abort.
4030 Throwing will not work anyway.
4031
4032 * gh.h, gh-data.c (gh_set_substr): Made src const.
4033
4034 * ports.c (scm_i_mode_bits_n): New, for counted strings.
4035 (scm_mode_bits): Use it.
4036 (scm_c_port_for_each): Blocking GC does not seem to work, allocate
4037 a vector normally and fill that instead of consing a list with a
4038 blocked GC.
4039
4040 * read.c (scm_i_casei_streq): New, for counted strings.
4041
4042 * threads.c (gc_section_count): Removed, thread-sleeping can not
4043 be nested.
4044 (scm_i_thread_put_to_sleep): Call scm_i_leave_guile before locking
4045 admin mutex so that we can be put to sleep by other threads while
4046 blocking on that mutex. Lock all the heap mutex of all threads,
4047 including ourselves.
4048 (scm_i_thread_wake_up): Unlock all threads, including ourselves,
4049 call scm_i_enter_guile.
4050 (scm_thread_mark_stacks): Expect all threads to be suspended.
241d9cea 4051
f26b9395
MV
4052 * gc.h, gc.c (scm_i_gc_admin_mutex): New, to protect
4053 scm_gc_mallocated, for now.
4054 (scm_init_storage): Initialize it.
4055 * gc-malloc.c (descrease_mtrigger, increase_mtrigger): Use it.
241d9cea 4056
f26b9395
MV
4057 * gc-mark.c (scm_gc_mark_dependencies): Call scm_i_string_mark,
4058 scm_i_stringbuf_mark and scm_i_symbol_mark, as appropriate.
4059 * gc-card.c (scm_i_sweep_card): Call scm_i_string_free,
4060 scm_i_stringbuf_free and scm_i_symbol_free, as appropriate.
4061
cd505b38
MV
4062 * strop.c (scm_string_copy): Use scm_c_substring to get a
4063 copy-on-write string.
4064
8a807b26
KR
40652004-08-18 Kevin Ryde <user42@zip.com.au>
4066
4067 * arbiters.c (FETCH_STORE): New macro.
4068 (SCM_LOCK_VAL, SCM_UNLOCK_VAL): New constants.
4069 (SCM_LOCK_ARB, SCM_UNLOCK_ARB): Remove, effectively absorbed into
4070 scm_try_arbiter and scm_release_arbiter.
4071 (scm_try_arbiter, scm_release_arbiter): Use FETCH_STORE to get xchg
4072 for speed on i386, otherwise using mutex.
4073
4074 * eq.c (scm_equal_p): Remove real==fraction and fraction==real, they
4075 must be #f according to R5RS. (equal? follows eqv?, and for eqv? an
4076 exact and inexact is #f.)
4077
4078 * fports.c (fport_print): Use scm_ttyname instead of ttyname directly,
4079 to get thread safety of scm_ttyname.
4080
4081 * ports.c (ttyname): Remove prototype, unused.
4082
d6cd4c36 4083 * socket.c (scm_init_socket): Add SOCK_SEQPACKET and SOCK_RDM.
1f3cc0d3 4084 Reported by Michael Tuexen.
d6cd4c36 4085
fa0c0a4b
MV
40862004-08-13 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4087
4088 * load.c (scm_init_load_path): Do not pass NULL to
4089 scm_to_locale_string, which would happen when GUILE_LOAD_PATH is
4090 not set. Thanks to Bill Schottstaedt.
4091
70f7ee41
MV
40922004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4093
4094 * socket.c (scm_inet_aton, scm_inet_pton): Convert SCM strings to
4095 locale strings instead of accessing their internals.
4096 (scm_recv, scm_send, scm_recvfrom, scm_sendto): Use
4097 SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH instead of
4098 SCM_STRING_CHARS and SCM_STRING_LENGTH.
241d9cea 4099
70f7ee41
MV
4100 * simpos.c (scm_system): Convert SCM strings to locale strings
4101 instead of accessing their internals.
4102
4103 * script.c (scm_compile_shell_switches): Convert version to locale
4104 string before printing it.
4105
4106 * rdelim.c (scm_read_delimited_x): Avoid
4107 SCM_VALIDATE_SUBSTRING_SPEC_COPY and use scm_from_size_t instead
4108 of scm_from_long for the returned number of read characters.
4109
4110 * ioext.c (scm_fdopen): Use scm_i_fdes_to_port together with
4111 scm_i_mode_bits to avoid accessing internals of SCM string from C.
4112
4113 * filesys.c (STRING_SYSCALL, STRING2_SYSCALL): New helper macros.
4114 Use them instead of SCM_SYSCALL when one or two strings need to be
4115 converted into locale strings.
4116 (my_rename): New, gathers platform dependent code for renaming.
4117 (scm_rename): Use it.
4118 (scm_readlink, scm_copy_file): Convert SCM strings to locale
4119 strings instead of accessing their internals.
4120 (scm_basename, scm_dirname): Use SCM_I_STRING_CHARS and
4121 SCM_I_STRING_LENGTH instead of SCM_STRING_CHARS and
4122 SCM_STRING_LENGTH.
241d9cea 4123
70f7ee41
MV
4124 * extensions.c (load_extension): Convert lib and init to locale
4125 strings instead of accessing the internals directly.
4126 (scm_c_load_extension): Use scm_from_locale_string instead of
4127 scm_makfrom0str.
241d9cea 4128
70f7ee41
MV
4129 * fports.h, fports.c (scm_i_fdes_to_port): New, like
4130 scm_fdes_to_port, but take mode bits directly instead of as a C
4131 string.
4132 (scm_i_fdes_to_port): Implement using above.
4133 (scm_open_file): Use scm_i_fdes_to_port together with
4134 scm_i_mode_bits to avoid accessing internals of SCM string from C.
4135 * vports.c (scm_make_soft_port): Use scm_i_fdes_to_port together
4136 with scm_i_mode_bits to avoid accessing internals of SCM string
4137 from C.
4138
4139 * ports.h (scm_i_mode_bits): New, same as scm_mode_bits but with a
4140 SCM string as argument.
4141
4142 * ports.c (scm_i_void_port): New, like scm_void_port but take mode
4143 bits directly instead of C string.
4144 (scm_void_port): Implement using above.
4145 (scm_sys_make_void_port): Use scm_i_void_port together with
4146 scm_i_mode_bits to avoid accessing internals of SCM string.
241d9cea 4147
70f7ee41
MV
4148 * strings.h, strings.c (scm_i_get_substring_spec): New.
4149
4150 * socket.c, rw.c, deprecated.h, validate.h
4151 (SCM_VALIDATE_STRING_COPY): Deprecated. Replaced all uses with
4152 SCM_VALIDATE_STRING plus SCM_I_STRING_CHARS or
4153 scm_to_locale_string, etc.
4154 (SCM_VALIDATE_SUBSTRING_SPEC_COPY): Deprecated. Replaced as
4155 above, plus scm_i_get_substring_spec.
241d9cea 4156
70f7ee41
MV
4157 * regex-posix.c, read.c, random.c, ramap.c, print.c, numbers.c,
4158 hash.c, gc.c, gc-card.c, convert.i.c, backtrace.c, strop.c,
4159 strorder.c, strports.c, struct.c, symbols.c, unif.c, ports.c: Use
4160 SCM_I_STRING_CHARS, SCM_I_STRING_UCHARS, and SCM_I_STRING_LENGTH
4161 instead of SCM_STRING_CHARS, SCM_STRING_UCHARS, and
4162 SCM_STRING_LENGTH, respectively. Also, replaced scm_return_first
4163 with more explicit scm_remember_upto_here_1, etc, or introduced
4164 them in the first place.
4165
4166 * posix.c (WITH_STRING): New helper macro. Use it where one
4167 locale string is needed for a short piece of code.
4168 (STRING_SYSCALL): New helper macro. Use it instead of SCM_SYSCALL
4169 when one locale string is needed.
4170 (scm_mkstemp): Convert tmpl to a locale string.
4171 (scm_putenv): Rewritten to use only C strings.
4172 (scm_setlocale, scm_crpt): Convert argument strings to locale
4173 strings.
241d9cea 4174
70f7ee41
MV
41752004-08-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4176
4177 * load.c (scm_primitive_load_path): Do not check for absolute
4178 filenames when scm_sys_search_load_path returns false, which will
4179 return absolute filenames unchanged.
4180
bb26cc2d
MV
41812004-08-11 Marius Vollmer <mvo@zagadka.de>
4182
4183 * gc.c, procprop.c (scm_init_storage, scm_stand_in_procs,
4184 scm_stand_in_proc): Use a hastable for scm_stand_in_procs instead
4185 of an alist. Thanks to Matthias Koeppe!
4186
02573e4c
MV
41872004-08-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4188
4189 * strings.h, deprecated.h (SCM_STRING_COERCE_0TERMINATION_X):
4190 Moved from string.h to deprecated.h.
4191
4192 * deprecated.c, deprecated.h (SCM_CHARS, SCM_LENGTH): Removed.
4193
f9751e86 4194 * strings.h, strings.c (SCM_MAKE_STRING_TAG): Renamed to
02573e4c
MV
4195 SCM_I_MAKE_STRING_TAG, changed all uses.
4196 (SCM_STRING_CHARS, SCM_STRING_UCHARS, SCM_STRING_LENGTH): Renamed
4197 to SCM_I_STRING_CHARS, SCM_I_STRING_UCHARS, and SCM_I_LENGTH
4198 respectively. For a short time, the old names are still there as
4199 aliases. Not all uses have been changed yet, but the ones in
4200 strings.c have.
4201 (SCM_STRING_MAX_LEN): Do not hardcode to 24 bits, compute from
4202 SCM_T_BITS_MAX.
4203 (scm_is_string, scm_from_locale_string, scm_from_locale_stringn,
4204 scm_take_locale_string, scm_take_locale_stringn,
4205 scm_to_locale_string, scm_to_locale_stringn,
4206 scm_to_locale_stringbuf): New.
4207 (scm_c_string2str, scm_c_substring2str): Deprecated by moving to
4208 deprecated.[hc]. Implemented in terms of the new functions above.
4209 (scm_take_str, scm_take0str, scm_mem2string, scm_str2string,
4210 scm_makfrom0str): Reimplemented in terms of the new functions from
4211 above. They will be discouraged shortly.
4212 (scm_substring): Do not use scm_mem2string.
4213 (scm_i_allocate_string_pointers, scm_i_free_string_pointers): New,
4214 to replace similar code from posix.c, simpos.c, and dynl.c.
4215 (scm_string_append): Use memcpy instead of explicit loop. Do not
4216 use register keyword. Use plain 'char' instead of 'unsigned
4217 char'.
241d9cea 4218
02573e4c
MV
4219 * strports.c (scm_mkstrport): Use SCM_I_STRING_UCHARS instead of
4220 SCM_STRING_UCHARS. Use SCM_I_STRINGP instead of SCM_STRINGP.
4221
4222 * strop.c (scm_i_index): Replaced SCM_STRINGP, SCM_STRING_CHARS,
4223 and SCM_STRING_LENGTH with SCM_I_STRINGP, SCM_I_STRING_CHARS, and
4224 SCM_I_STRING_LENGTH, respectively. Pass string object directly,
4225 not as a pointer. Use scm_remember_upto_here_1 to protect it.
4226
4227 * read.c (scm_input_error): Use a SCM value for 'fn', not a C
4228 string. This avoids a conversion round-trip.
4229
4230 * gh_data.c: Replaced SCM_STRINGP, SCM_STRING_CHARS, and
4231 SCM_STRING_LENGTH with SCM_I_STRINGP, SCM_I_STRING_CHARS, and
4232 SCM_I_STRING_LENGTH, respectively.
4233 (gh_scm2newstr): Implement in terms of scm_to_locale_string.
241d9cea 4234
02573e4c
MV
4235 * environments.c: Instead calling scm_puts on the SCM_STRING_CHARS
4236 of a string, call scm_display on the string itself.
4237
4238 * dynwind.c, dynwind.h (scm_frame_free): New.
4239
4240 * stime.c, socket.c, simpos.c, procs.c, posix.c, ports.c,
4241 net_db.c, fports.c, filesys.c, eval.c, deprecation.c, dynl.c:
4242 Replaced uses of SCM_STRING_CHARS with proper uses of
4243 scm_to_locale_string. Replaced SCM_STRINGP with scm_is_string.
4244 Replaced scm_mem2string with scm_from_locale_string.
4245
4246 * simpos.c, posix.c (allocate_string_pointers, environ_list_to_c):
4247 Removed, replaced all uses with scm_i_allocate_string_pointers.
4248
4249 * load.h, load.c (scm_internal_parse_path): Removed.
4250 (scm_parse_path): Use scm_string_split to do the work.
4251 (scm_init_load_path): Use scm_parse_path instead of
4252 scm_internal_parse_path.
4253 (scm_search_path): Rewritten string handling part of the code in
4254 terms of scm_to_locale_stringbuf and so that it is thread safe.
4255
4256 * error.c (scm_error_scm): Throw directly instead of calling
4257 scm_error, this avoids the back and forth conversion of SUBR and
4258 MESSAGE and also plugs a memory leak.
4259 (scm_error): Call scm_error_scm.
241d9cea 4260
02573e4c
MV
4261 * backtrace.c: Replaced SCM_STRINGP with scm_is_string.
4262 (display_header): Print FNAME when it is true, not
4263 merely when it is a string.
4264
4265 * strings.h (SCM_SET_STRING_LENGTH, SCM_SET_STRING_CHARS): Removed
4266 unceremoniously. They were unused by Guile itself, and external
4267 use should stop immediately.
241d9cea 4268
02573e4c 4269
409eb4e5
MV
42702004-08-10 Marius Vollmer <mvo@zagadka.de>
4271
4272 * numbers.h, number.c, deprecated.h, deprecated.c (scm_round,
4273 scm_truncate): Renamed to scm_c_round and scm_c_truncate;
4274 deprecated versions installed in deprecated.h and deprecated.c.
4275 Changed all uses.
241d9cea 4276
a00eaf19
RB
42772004-08-06 Rob Browning <rlb@defaultvalue.org>
4278
4279 * net_db.c (scm_resolv_error): don't cause an exception while
4280 trying to throw an exception -- call scm_misc_error with correct
4281 arguments. The previous arguments needed a format escape that
4282 wasn't in any of the format strings.
4283
bcb88c93
KR
42842004-08-06 Kevin Ryde <user42@zip.com.au>
4285
8f094b97
KR
4286 * ramap.c (scm_array_fill_x): For byvect char fill, force signed char
4287 so as not to depend on signedness of plain char. For byvect range
4288 check, throw out-of-range rather than wrong-type-arg.
4289
bcb88c93
KR
4290 * unif.c (scm_uniform_vector_ref, scm_array_set_x): For byvect, force
4291 signed byte range checks by using scm_to_schar and scm_from_schar,
4292 don't want to depend on signedness of C char.
4293
29e61124
KR
42942004-08-05 Kevin Ryde <user42@zip.com.au>
4295
4296 * arbiters.c (scm_try_arbiter): Use scm_i_misc_mutex instead of
4297 SCM_DEFER_INTS.
4298 (scm_release_arbiter): Use scm_i_misc_mutex so return value can be
4299 guaranteed if multiple threads compete to unlock.
4300 Update docstrings per doc/ref/api-scheduling.texi.
4301
99de794f
KR
4302 * filesys.c (scm_copy_file): Use fstat on the input fd rather than
4303 stat on the filename, to be certain a file rename can't mean we get
4304 info on one filesystem object but open another. This fstat usage is
4305 similar to Emacs copy-file.
241d9cea 4306
29e61124
KR
4307 * posix.c (scm_setgroups): Enhance docstring, per doc/ref/posix.texi.
4308
4309 * simpos.c (scm_system_star): Change scm_from_long to scm_from_int on
4310 SIGINT and SIGQUIT, since those values are ints.
4311
759aa8f9
MV
43122004-08-03 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4313
7241f213
MV
4314 * num2integral.i.c, num2float.i.c: Removed.
4315 * Makefile.am (noinst_HEADERS): Updated.
4316
f9656a9f
MV
4317 * numbers.h. numbers.c (scm_make_ratio): Renamed to
4318 scm_i_make_ratio and made static, replaced uses with scm_divide.
96d8c217
MV
4319 (scm_complex_p): New, export as "complex?" to Scheme.
4320 (scm_number_p): Export as "number?" to Scheme.
4321 (scm_is_complex, scm_is_number): New.
4322 (scm_c_make_rectangular, scm_c_make_polar): New.
4323 (scm_make_rectangular, scm_make_polar): Use above.
4324 (scm_c_real_part, scm_c_imag_part, scm_c_magnitude, scm_c_angle):
4325 New.
4326 (scm_make_complex): Discouraged by moving to discouraged.h and
4327 discouraged.c. Replaced all uses with scm_c_make_rectangular.
241d9cea 4328
759aa8f9
MV
4329 * discouraged.h, discouraged.c, numbers.c, numbers.h
4330 (scm_is_rational): New.
4331 (scm_i_short2big, scm_i_int2big, scm_i_uint2big, scm_i_size2big,
4332 scm_i_ptrdiff2big, scm_i_long_long2big, scm_i_ulong_long2big):
4333 Removed prototypes.
4334 (scm_make_real, scm_num2dbl, scm_float2num, scm_double2num):
4335 Discouraged by moving to discouraged.h and discouraged.c.
4336 Replaced all uses with scm_from_double.
4337 (scm_num2float, scm_num2double): Discouraged by moving prototype
4338 to discouraged.h and rewriting in terms of scm_to_double.
4339 Replaced all uses with scm_to_double.
4340 (scm_to_double): Do not implement in terms of scm_num2dbl, use
4341 explicit code.
4342 (scm_from_double): Do not implement in terms of scm_make_real, use
4343 explicit code.
241d9cea 4344
531bf3e6
MV
43452004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4346
759aa8f9
MV
4347 * init.c (scm_init_guile_1): Call scm_i_init_discouraged.
4348
531bf3e6
MV
4349 * gen-scmconfig.h.in (SCM_I_GSC_ENABLE_DISCOURAGED): New.
4350 * gen-scmconfig.c (SCM_ENABLE_DISCOURAGED): Emit based on above.
4351
4352 * eval.c (SCM_EVALIM, SCM_EVALIM2, SCM_XEVAL, SCM_XEVALCAR):
4353 Renamed to SCM_I_* in order to avoid collisions with the versions
4354 defined in deprecated.h.
4355
4356 * discouraged.h, discouraged.c: New files.
4357
4358 * deprecated.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP, SCM_EQ_P,
4359 SCM_NEGATE_BOOL, SCM_BOOL, SCM_BOOT_NOT): Promoted from being
4360 deprecated to being discouraged by moving to discouraged.h.
4361
4362 * numbers.h, numbers.c, discouraged.h, discouraged.c
4363 (scm_short2num, scm_ushort2num, scm_int2num, scm_uint2num,
4364 scm_long2num, scm_ulong2num, scm_size2num, scm_ptrdiff2num,
4365 scm_num2short, scm_num2ushort, scm_num2int, scm_num2uint,
4366 scm_num2long, scm_num2ulong, scm_num2size, scm_num2ptrdiff,
4367 scm_long_long2num, scm_ulong_long2num, scm_num2long_long,
4368 scm_num2ulong_long): Discouraged by moving to discouraged.h and
4369 discouraged.c and reimplementing in terms of scm_from_* and
4370 scm_to_*. Changed all uses to the new scm_from_* and scm_to_*
4371 functions.
4372
4373 * numbers.h, numbers.c: Removed GUILE_DEBUG code.
4374 (scm_i_short2big, scm_i_ushort2big, scm_i_int2big, scm_i_uint2big,
4375 scm_i_size2big, scm_i_ptrdiff2big): Removed.
241d9cea 4376 (scm_i_long2big, scm_i_ulong2big): New, explicit definitions.
531bf3e6
MV
4377 * conv-integer.i.c, conv-uinteger.i.c: Use them instead of
4378 explicit code.
4379
5ec82e96
KR
43802004-08-02 Kevin Ryde <user42@zip.com.au>
4381
4382 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Add comments about past
4383 and current usage and migration.
4384
58f28989
KR
43852004-07-31 Kevin Ryde <user42@zip.com.au>
4386
4387 * error.c (scm_strerror): Use scm_i_misc_mutex around strerror since
4388 it's not thread safe.
4389 (scm_syserror): Use scm_strerror rather than SCM_I_STRERROR, to take
4390 advantage of this.
4391 * fports.c (scm_open_file): Use scm_strerror likewise.
4392 * filesys.c (scm_stat, scm_lstat): Ditto.
4393
4394 * filesys.c (scm_copy_file): Avoid fd leak when destination file
4395 cannot be opened.
4396
4397 * symbols.c (scm_gensym): Use scm_i_misc_mutex around gensym_counter
4398 update, for thread safety.
4399 (gensym_counter): Move into scm_gensym which is its only user.
4400 (scm_init_symbols): No need to explicitly initialize gensym_counter.
4401
03696aab
MV
44022004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4403
51fdb325
MV
4404 * numbers.h (scm_to_schar, scm_to_uchar, scm_to_char,
4405 scm_to_short, scm_to_ushort, scm_to_int, scm_to_uint, scm_to_long,
4406 scm_to_ulong, scm_to_long_long, scm_to_ulong_long, scm_to_intmax,
4407 scm_to_uintmax, scm_to_size_t, scm_to_ssize_t scm_from_schar,
4408 scm_from_uchar, scm_from_char, scm_from_short, scm_from_ushort,
4409 scm_from_int, scm_from_uint, scm_from_long, scm_from_ulong,
4410 scm_from_long_long, scm_from_ulong_long, scm_from_intmax,
4411 scm_from_uintmax, scm_from_size_t, scm_from_ssize_t): No longer
4412 defined in terms of scm_to_signed_integer, etc, but in terms of
4413 scm_to_int8, etc.
4414
4415 * gen-scmconfig.c (SCM_SIZEOF_INTMAX, SCM_SIZEOF_SIZE_T): New.
4416
03696aab
MV
4417 * gen-scmconfig.h.in: Removed SCM_I_GSC_*_LIMITS macros, they are
4418 no longer used.
4419
4420 * __scm.h (SCM_I_UTYPE_MAX, SCM_I_TYPE_MAX, SCM_I_TYPE_MIN,
4421 SCM_I_SIZE_MAX, SCM_I_SSIZE_MIN, SCM_I_SSIZE_MAX): New.
4422
4423 * __scm.h, gen-scmconfig.c (SCM_I_LLONG_MAX, SCM_I_LLONG_MIN,
4424 SCM_I_ULLONG_MAX, SCM_T_INT8_MIN, SCM_T_INT8_MAX, SCM_T_UINT8_MAX,
4425 SCM_T_INT16_MIN, SCM_T_INT16_MAX, SCM_T_UINT16_MAX,
4426 SCM_T_INT32_MIN, SCM_T_INT32_MAX, SCM_T_UINT32_MAX,
4427 SCM_T_INT64_MIN, SCM_T_INT64_MAX, SCM_T_UINT64_MAX,
4428 SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX, SCM_T_UINTMAX_MAX): Moved
4429 definition into __scm.h, using new SCM_I_TYPE_MIN, etc.
241d9cea 4430
03696aab
MV
4431 * conv-integer.i.c, conv-uinteger.i.c: New files, used to generate
4432 the functions below.
4433
4434 * Makefile.am (noinst_HEADERS): Added conv-integer.i.c and
4435 conv-uinteger.i.c.
4436
4437 * numbers.c, numbers.h (scm_to_int8, scm_to_uint8, scm_to_int16,
4438 scm_to_uint16, scm_to_int32, scm_to_uint32, scm_to_int64,
4439 scm_to_uint64, scm_from_int8, scm_from_uint8, scm_from_int16,
4440 scm_from_uint16, scm_from_int32, scm_from_uint32, scm_from_int64,
4441 scm_from_uint64): Turned from macros into proper functions.
4442 (scm_to_signed_integer, scm_to_unsigned_integer,
4443 scm_from_signed_integer, scm_from_unsigned_integer): Generate via
4444 conv-integer.i.c and conv-uinteger.i.c, as well.
241d9cea 4445
03696aab
MV
4446 * number.h (scm_to_ssize_t, scm_to_size_t): Use the new
4447 SCM_I_SSIZE_MIN, SCM_I_SSIZE_MAX, and SCM_I_SIZE_MAX macros for
4448 the limits. Those are always defined.
241d9cea 4449
1f15779e
KR
44502004-07-29 Kevin Ryde <user42@zip.com.au>
4451
4452 * posix.c (scm_ttyname): Use scm_i_misc_mutex for thread safety.
4453
48360eb3
KR
44542004-07-28 Kevin Ryde <user42@zip.com.au>
4455
4456 * posix.c (scm_ctermid): Use an L_ctermid buf on the stack, for thread
4457 safety.
4458
c3f3c841
KR
4459 * unif.c (scm_array_set_x): For svect, use scm_num2short for
4460 consistency with other vector types and to get arg and func name into
4461 error message.
4462
c82f8ed6
MV
44632004-07-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4464
4465 * deprecated.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP, SCM_BOOL):
4466 Reimplement using scm_is_false, scm_is_true, scm_is_bool, and
4467 scm_from_bool, respectively.
4468 (SCM_NINUMP): Added.
241d9cea 4469
c82f8ed6
MV
4470 * tags.h, deprecated.h (SCM_EQ_P): Deprecated by moving it into
4471 deprecated.h. Replaced all uses with scm_is_eq.
4472
317b4c4a
KR
44732004-07-24 Kevin Ryde <user42@zip.com.au>
4474
4475 * threads.c, threads.h (scm_i_misc_mutex): New SCM_GLOBAL_MUTEX.
4476 * posix.c (scm_crypt): Use it to protect static data in crypt().
4477
e11e83f3
MV
44782004-07-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4479
4480 * deprecated.h, deprecated.c, numbers.h (SCM_INUMP, SCM_NINUMP,
c82f8ed6 4481 SCM_INUM): Deprecated by renaming them to SCM_I_INUMP,
e11e83f3
MV
4482 SCM_I_NINUMP and SCM_I_INUM, respectively and adding deprecated
4483 versions to deprecated.h and deprecated.c. Changed all uses to
4484 either use the SCM_I_ variants or scm_is_*, scm_to_*, or
4485 scm_from_*, as appropriate.
4486
4487 * dynwind.c (scm_i_dowinds): Removed unused code that would call
4488 the unexisting scm_cross_dynwind_binding_scope for inums on the
4489 windlist.
241d9cea 4490
a55c2b68
MV
44912004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4492
4493 * socket.c (ipv6_net_to_num, scm_from_ipv6): Renamed
e11e83f3 4494 ipv6_net_to_num to scm_from_ipv6, for converting from an IPv6
a55c2b68
MV
4495 byte-wise address to a SCM integer. Changed all uses.
4496 (ipv6_num_to_net, scm_to_ipv6): Renamed ipv6_num_to_net to
4497 scm_to_ipv6 and added type and range checking, for converting from
4498 an IPv& byte-wise address to a SCM integer. Changed all uses.
4499 (bignum_in_ipv6_range_p, VALIDATE_INET6): Removed, their function
4500 is now done by scm_to_ipv6.
241d9cea 4501
a55c2b68
MV
4502 * numbers.c (scm_to_signed_integer, scm_to_unsigned_integer): dot
4503 not accept inexact integers.
4504
4505 * validate.h, deprecated.h (SCM_VALIDATE_INUM,
4506 SCM_VALIDATE_INUM_COPY, SCM_VALIDATE_BIGINT,
4507 SCM_VALIDATE_INUM_MIN, SCM_VALIDATE_INUM_MIN_COPY,
4508 SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
4509 SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
4510 SCM_VALIDATE_INUM_RANGE_COPY): Deprecated because they make the
4511 fixnum/bignum distinction visible. Changed all uses to
4512 scm_to_size_t or similar.
4513
45142004-07-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4515
4516 * cpp_cnvt.awk: Use scm_from_int instead of SCM_MAKINUM.
4517
48a06bd5
KR
45182004-07-10 Kevin Ryde <user42@zip.com.au>
4519
4520 * hash.c (scm_hashq, scm_hashv, scm_hash): Restrict to size>=1 rather
4521 than size>=0, since 0<=hash<size cannot be satisfied for size==0, and
4522 such a size causes divide-by-zeros in scm_hasher.
4523
052fbfd9
KR
4524 * regex-posix.c (scm_make_regexp): Free rx on error, to avoid memory
4525 leak.
4526
43240c9c
MV
45272004-07-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4528
4529 * numbers.c (scm_is_signed_integer, scm_is_unsigned_integer):
4530 Rewritten using the same logic as scm_to_signed_integer and
4531 scm_to_unsigned_integer, respectively, which is better(tm). Also,
4532 use CHAR_BIT instead of hardcoding 8.
4533 (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Removed and used
4534 SCM_I_LLONG_MIN etc. instead.
241d9cea 4535
43240c9c
MV
4536 * numbers.h (SCM_MAKINUM, SCM_I_MAKINUM): Renamed SCM_MAKINUM to
4537 SCM_I_MAKINUM and changed all uses.
4538 * deprecated.h, deprecated.c (SCM_MAKINUM): Newly deprecated.
4539
a3de8e7b
MV
4540 * gen-scmconfig.c (SCM_I_LLONG_MIN, SCM_I_LLONG_MAX,
4541 SCM_I_ULLONG_MAX): Instead of hard-coding the numbers, compute
43240c9c
MV
4542 them by assuming twos-complement.
4543
c9eb03bb
MV
45442004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4545
4546 * gen-scmconfig.h.in: Added all the new SCM_I_GSC_*_LIMITS that
4547 configure now produces.
4548 * gen-scmconfig.c: Use them to output SCM_T_INT8_MIN, etc
4549 definitions, giving the limits of the integer types defined by
4550 Guile. Also, output a hard coded SCM_I_LLONG_MIN, etc since
4551 LLONG_MIN or LONG_LONG_MIN is hard to get at.
4552
4553 * numbers.h (scm_to_short, scm_to_ushort): It's SHRT_MIN, etc, not
4554 SHORT_MIN.
4555 (scm_to_size_t): Use SIZE_MAX instead of cooking our own.
4556 (scm_to_long_long, scm_to_ulong_long, scm_to_int8, scm_to_uint8,
4557 scm_to_int16, scm_to_uint16, scm_to_int32, scm_to_uint32,
4558 scm_to_int64, scm_to_uint64, scm_to_intmax, scm_to_uintmax,
4559 scm_from_long_long, scm_from_ulong_long, scm_from_int8,
4560 scm_from_uint8, scm_from_int16, scm_from_uint16, scm_from_int32,
4561 scm_from_uint32, scm_from_int64, scm_from_uint64, scm_from_intmax,
4562 scm_from_uintmax): New.
241d9cea 4563
7888309b
MV
45642004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4565
4566 * tags.h (scm_is_eq): New.
4567
4568 * deprecated.h, boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,
4569 SCM_NEGATE_BOOL, SCM_BOOLP): Deprecated by moving into
4570 "deprecated.h". Replaced all uses with scm_is_false, scm_is_true,
4571 scm_from_bool, and scm_is_bool, respectively.
4572
4573 * boolean.h (scm_is_bool): Fix bug in prototype.
4574 (scm_from_bool): The argument is "x" not "f", stupid.
4575
4576 * boolean.c (scm_is_bool): Fix typo.
4577
4578 * numbers.h, numbers.c (scm_is_integer, scm_is_signed_integer,
4579 scm_is_unsigned_integer, scm_to_signed_integer,
4580 scm_to_unsigned_integer, scm_to_schar, scm_to_uchar, scm_to_char,
4581 scm_to_short, scm_to_ushort, scm_to_long, scm_to_ulong,
4582 scm_to_size_t, scm_to_ssize_t, scm_from_schar, scm_from_uchar,
4583 scm_from_char, scm_from_short, scm_from_ushort, scm_from_int,
4584 scm_from_uint, scm_from_long, scm_from_ulong, scm_from_size_t,
4585 scm_from_ssize_t, scm_is_real, scm_to_double, scm_from_double):
4586 New.
241d9cea 4587
800570a6
MV
45882004-07-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4589
4590 * boolean.h, boolean.c (scm_is_true, scm_is_false, scm_from_bool,
4591 scm_to_bool): New.
4592
9fcf3cbb
DH
45932004-06-27 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4594
4595 * backtrace.c (display_expression, display_frame): Call
4596 scm_i_unmemoize_expr for unmemoizing a memoized object holding a
4597 single memoized expression.
4598
4599 * debug.c (memoized_print): Don't try to unmemoize the memoized
4600 object, since we can't know whether it holds a single expression
4601 or a body.
4602
4603 (scm_mem_to_proc): Removed check for lambda expression, since it
4604 was moot anyway. Whoever uses these functions for debugging
4605 purposes should know what they do: Creating invalid memoized code
4606 will cause crashes, independent of whether this check is present
4607 or not.
4608
4609 (scm_proc_to_mem): Take the closure's code as it is and don't
4610 append a SCM_IM_LAMBDA isym. To allow easier debugging, the
4611 memoized code should not be modified.
4612
4613 * debug.[ch] (scm_unmemoize, scm_i_unmemoize_expr): Removed
4614 scm_unmemoize from public use, but made scm_i_unmemoize_expr
4615 available as a guile internal function instead. However,
4616 scm_i_unmemoize_expr will only work on memoized objects that hold
4617 a single memoized expression. It won't work with bodies.
4618
4619 * debug.c (scm_procedure_source), macros.c (macro_print), print.c
4620 (scm_iprin1): Call scm_i_unmemocopy_body for unmemoizing a body,
4621 i. e. a list of expressions.
4622
4623 * eval.c (unmemoize_exprs): Drop internal body markers from the
4624 output during unmemoization.
4625
4626 * eval.[ch] (scm_unmemocopy, scm_i_unmemocopy_expr,
4627 scm_i_unmemocopy_body): Removed scm_unmemocopy from public use,
4628 but made scm_i_unmemocopy_expr and scm_i_unmemocopy_body available
4629 as guile internal functions instead. scm_i_unmemoize_expr will
4630 only work on a single memoized expression, while
4631 scm_i_unmemocopy_body will only work on bodies.
4632
90df793f
DH
46332004-06-21 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4634
4635 * eval.c (unmemoize_exprs): Handle semi-memoized code.
4636
4637 (scm_cons_source, scm_primitive_eval): Prefer higher level
4638 predicate SCM_FALSEP over SCM_IMP.
4639
8048c00b
RB
46402004-06-15 Rob Browning <rlb@defaultvalue.org>
4641
4642 * script.c (scm_shell_usage): minor phrasing change.
4643
4644 * gc_os_dep.c: update ifdefery for macosx.
4645 (scm_get_stack_base): separate result initialization from
4646 declaration to slience warnings with macosx and hp-ux using gcc
9a5fa6e9 4647 3.3. Thanks to Andreas Vögele.
8048c00b 4648
d93294d4
HWN
46492004-06-13 Han-Wen Nienhuys <hanwen@xs4all.nl>
4650
4651 * eval.c (unmemoize_exprs): use SCM_CONSP for the loop condition.
4652
212e58ed
DH
46532004-06-06 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4654
4655 * list.[ch] (scm_i_finite_list_copy): New internal function to
4656 copy lists that are known to be finite (though not necessarily
4657 proper).
4658
4659 * debug.c (scm_procedure_source): Don't have scm_unmemocopy treat
4660 a closure's argument list like an expression of a body.
4661
4662 * eval.c (unmemoize_expression, unmemoize_exprs, unmemoize_and,
4663 unmemoize_begin, unmemoize_case, unmemoize_cond, unmemoize_delay,
4664 unmemoize_do, unmemoize_if, unmemoize_lambda, unmemoize_let,
4665 unmemoize_letrec, unmemoize_letstar, unmemoize_or,
4666 unmemoize_set_x, unmemoize_apply, unmemoize_atcall_cc,
241d9cea 4667 unmemoize_at_call_with_values, unmemoize_future, sym_atslot_ref,
212e58ed
DH
4668 unmemoize_atslot_ref, sym_atslot_set_x, unmemoize_atslot_set_x,
4669 unmemoize_builtin_macro): New static functions and symbols.
4670
4671 (scm_unmemocopy): Rewritten in terms of the above. scm_unmemocopy
4672 now has a slightly different meaning: The memoized form that is
4673 receives as its argument is now interpreted as a sequence of
4674 expressions from a body.
4675
4676 (unmemocar, scm_unmemocar): Since the whole functionality of
4677 unmemocar and scm_unmemocar is not needed any more, scm_unmemocar
4678 has its old content back and is deprecated, while unmemocar has
4679 been removed.
4680
4681 (SCM_BIT7): Removed.
4682
4683 (CEVAL): For unmemoizing a single expression, call
4684 unmemoize_expression instead of scm_unmemocopy, which now expects
4685 a sequence of body expressions. Eliminated unnecessary empty
4686 environment frame when executing let* forms. Eliminated
4687 unmemoization step from evaluator.
4688
9ccea370
MV
46892004-06-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4690
4691 * eval.c (scm_macroexp, macroexp): Renamed scm_macroexp to
4692 macroexp and made static. Added new version of scm_macroexp that
4693 emits a deprecation warning and then calls macroexp.
4694 (scm_m_undefine): Issue deprecation warning.
241d9cea 4695
57d23e25
DH
46962004-05-30 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4697
4698 * eval.c (lookup_global_symbol, literal_p, try_macro_lookup):
4699 Modified to make set! work on symbols that represent syntactic
4700 keywords.
4701
141521ad
HWN
47022004-05-26 Han-Wen Nienhuys <hanwen@xs4all.nl>
4703
4704 * gc.h (SCM_CELL_OBJECT_LOC): use SCM_GC_CELL_OBJECT to prevent
4705 compound expression as lvalue errors.
4706
7c2f56a4
MV
47072004-05-24 Marius Vollmer <mvo@zagadka.de>
4708
4709 * dynwind.c (winder_mark): Use SCM_PACK to correctly convert the
4710 WINDER_DATA to a SCM.
4711
366ecaec
DH
47122004-05-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4713
4714 * goops.c (compute_getters_n_setters, create_standard_classes,
4715 scm_add_slot): Compute closures by calling scm_i_eval_x on a
4716 lambda expression rather than creating them with scm_closure.
4717
26ecfa39
DH
47182004-05-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4719
4720 * eval.c (s_macro_keyword, scm_m_set_x): Remove checking for
4721 misplaced syntactic keywords. This will not work unless guile's
4722 defmacro feature is deprecated.
4723
4724 (scm_m_case): Fixed a bug that caused the list of labels to grow
4725 with every case form.
4726
f865229a
KR
47272004-05-19 Kevin Ryde <user42@zip.com.au>
4728
4729 * numbers.c (scm_round_number): For inum and big, just return x. For
4730 real, use scm_round for 2^54-1 etc problems covered there.
4731
4732 * numbers.c (trunc): Remove #define to scm_truncate when the C library
4733 doesn't provide trunc. This was for when `truncate' was done as a
4734 scm_tc7_dsubr, no longer required.
4735
4736 * threads.c (scm_threads_mark_stacks) [SCM_STACK_GROWS_UP]: Correction
4737 to stack marking call, two parameters and no cast on t->base.
4738
63947c7a
MV
47392004-05-18 Marius Vollmer <mvo@zagadka.de>
4740
4741 * hashtab.c (rehash_after_gc): Bug fix: properly link the
4742 processed hashtables back into the weak_hashtables list. Thanks
4743 to Bill Schottstaedt!
4744
e7313a9d
DH
47452004-05-16 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4746
4747 * eval.c (unmemoize_quote): New static function.
4748
4749 (scm_m_quote, scm_m_atslot_ref, SCM_CEVAL): Changed the byte code
4750 representation of 'quote' and '@slot-ref' to an improper list.
4751 This reduces execution time, the number of cells used to hold the
4752 memoized code, and thus also reduces garbage collection time.
4753
4754 (scm_unmemocopy): Use unmemoize_quote for quote expressions.
4755
4756 (SCM_CEVAL): Changed macro handling to also work with macros that
4757 return improper lists. Added an assertion, that the code returned
4758 by a macro transformer will not lead to cycles in the memoized
4759 code.
4760
e5156567
DH
47612004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4762
4763 No functional change, just rearrangements of functions within the
4764 file.
4765
4766 * eval.c (scm_ilookup, scm_unbound_variable_key,
4767 error_unbound_variable, scm_lookupcar1, scm_lookupcar): Moved to
4768 the definitions used for execution, since that's where they will
4769 belong to later.
4770
651f07f8
DH
47712004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4772
4773 * numbers.h (SCM_SLOPPY_FRACTIONP): Removed. It was not used
4774 throughout guile, has not been part of an official release yet,
4775 and the concept of sloppy predicates has never been a good idea.
4776
4777 (SCM_FRACTION_NUMERATOR, SCM_FRACTION_DENOMINATOR,
4778 SCM_FRACTION_SET_NUMERATOR, SCM_FRACTION_SET_DENOMINATOR):
4779 Simplified.
4780
770e048f
DH
47812004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4782
4783 * throw.c (SETJBJMPBUF, SCM_SETJBDFRAME): Add cast to scm_t_bits
4784 to make explicit what happens.
4785
2ff08405
DH
47862004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4787
4788 * dynl.c (SET_DYNL_HANDLE): Add cast to scm_t_bits to make
4789 explicit what happens.
4790
4791 * guardians.c (TCONC_IN): Use SCM_SET_CELL_OBJECT_x rather than
4792 SCM_SET_CELL_WORD_x when writing scheme objets to cell elements.
4793
89afb9cd
MV
47942004-05-11 Marius Vollmer <mvo@zagadka.de>
4795
4796 * scmsigs.c (scm_sigaction_for_thread): Validate that the handler
4797 is indeed a procedure when it isn't a number.
4798
3d5ebfa9
MV
47992004-05-10 Marius Vollmer <mvo@zagadka.de>
4800
4801 Convert floating point numbers into strings with an arbitrary
4802 radix. Thanks to Richard Todd!
241d9cea 4803
3d5ebfa9
MV
4804 * numbers.c (FLOBUFLEN): Increase so that radix 2 strings will
4805 fit.
4806 (fx): Removed.
4807 (scm_dblprec, fx_per_radix, init_dblprec, init_fx_radix,
4808 number_chars): New, to support variable radices.
4809 (idbl2str): Use above instead of the old base-10 only tables.
4810 (iflo2str): Pass on new RADIX argument to idbl2str.
4811 (scm_number_to_string): Pass radix to iflo2str.
4812 (scm_print_real, scm_print_complex): Explicitly pass radix 10 to
4813 iflo2str.
4814 (scm_init_numbers): Call init_dblprec and init_fx_radix for all
4815 possible radices.
4816
3ae69bb4
KR
48172004-05-10 Kevin Ryde <user42@zip.com.au>
4818
4819 * numbers.c (scm_logbit_p): Correction to test above the end of an
4820 inum. Reported by Jan Konecny.
4821
27968825
MV
48222004-05-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4823
4824 * gc.h (scm_t_cell): Fields are now of type SCM instead of
4825 scm_t_bits. Updated all users.
4826 (SCM_GC_CARD_SIZE_MASK): Use SCM_GC_SIZEOF_CARD instead of
4827 duplicating the code.
4828 (SCM_CELL_OBJECT_LOC): New.
4829 (SCM_CARLOC, SCM_CDRLOC): Use it instead of SCM_CELL_WORD_LOC.
4830 (SCM_CELL_WORD_LOC): Moved to "deprecated.h".
4831
4832 * smob.h (SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, SCM_SMOB_FLAGS,
4833 SCM_SET_SMOB_DATA_2, SCM_SET_SMOB_DATA_3, SCM_SET_SMOB_FLAGS,
4834 SCM_SMOB_OBJECT, SCM_SMOB_OBJECT_2, SCM_SMOB_OBJECT_3,
4835 SCM_SET_SMOB_OBJECT, SCM_SET_SMOB_OBJECT_2, SCM_SET_SMOB_OBJECT_3,
4836 SCM_SMOB_OBJECT_LOC, SCM_SMOB_OBJECT_2_LOC,
4837 SCM_SMOB_OBJECT_3_LOC): New.
4838 * smob.c (scm_i_set_smob_flags): New function.
4839
4840 * dynl.c, dynwind.c, eval.h, fluids.h, futures.h, hashtab.h,
4841 hooks.h, keywords.h, macros.h, macros.c, mallocs.c, mallocs.h,
4842 random.h, regex-posix.h, root.h, srcprop.h, srcprop.c, threads.h:
4843 Use SCM_SMOB_* instead of SCM_CELL_* as appropriate. Use
4844 SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS instead of accessing the
4845 zeroth word directly. Use SCM_SMOB_PREDICATE as appropriate.
4846
4847 * numbers.h (SCM_I_BIG_MPZ): Use SCM_CELL_OBJECT_LOC instead of
4848 taking the address of SCM_CELL_WORD_1, the latter being no longer
4849 an lvalue.
4850
4851 * variable.h (SCM_VARIABLE_LOC): Use SCM_CELL_OBJECT_LOC instead
4852 of casting SCM_CELL_WORD_LOC.
4853
3cf17ef0
KR
48542004-05-02 Kevin Ryde <user42@zip.com.au>
4855
37026925 4856 * eval.c (scm_macroexp): Add prototype, since it's not in eval.h under
9a5fa6e9 4857 --disable-deprecated. Reported by Andreas Vögele.
37026925 4858
3cf17ef0 4859 * filesys.c (_POSIX_C_SOURCE): Define to 199506L to get readdir_r (in
9a5fa6e9 4860 particular on HP-UX). Reported by Andreas Vögele.
3cf17ef0 4861
c5854598
KR
4862 * list.c (varargs.h): Remove, leave just stdarg.h which is all the
4863 code has support for. Fixes building with AIX cc, which is ansi but
4864 doesn't define __STDC__. Reported by Keith Crane.
4865 (var_start): Remove macro, this variation no longer required.
4866 (scm_list_n): Use va_start directly.
4867
f26c1a32
KR
48682004-05-01 Kevin Ryde <user42@zip.com.au>
4869
4870 * continuations.c (scm_dynthrow): Use >= instead of SCM_PTR_GE which
9a5fa6e9 4871 is now gone. Reported by Andreas Vögele.
f26c1a32 4872
dfa6017e
KR
48732004-04-28 Kevin Ryde <user42@zip.com.au>
4874
4875 * backtrace.c (display_frame_expr), numbers.c (XDIGIT2UINT,
4876 mem2uinteger, mem2decimal_from_point, mem2ureal): Cast char to int for
4877 ctype.h tests, to avoid warnings from gcc on HP-UX about char as array
9a5fa6e9 4878 subscript. Reported by Andreas Vögele.
dfa6017e
KR
4879 Also cast through unsigned char to avoid passing negatives to those
4880 macros if input contains 8-bit values.
4881
4882 * num2integral.i.c (NUM2INTEGRAL): Under non-BIGMPZ_FITSP case,
4883 corrections to range check for signed numbers. Remove
4884 scm_remember_upto_here_1(num) from these checks, since num is used
4885 subsequently anyway.
4886
4887 * num2integral.i.c (NUM2INTEGRAL): Test BIGMPZ_FITSP with "!= 0" to
4888 avoid warning from gcc 3.4. Reported by Hyperdivision.
241d9cea 4889
dfa6017e
KR
4890 * numbers.c (scm_bit_extract): Use min instead of MIN.
4891 (MIN): Remove, this conflicts with similar macro defined by limits.h
9a5fa6e9 4892 on HP-UX. Reported by Andreas Vögele.
dfa6017e
KR
4893
4894 * stime.c (_POSIX_C_SOURCE): Define to 199506L to get gmtime_r (in
9a5fa6e9 4895 particular on HP-UX). Reported by Andreas Vögele.
dfa6017e 4896
a0d06a00 4897 * threads.c (scm_threads_mark_stacks): Correction sizet -> size_t.
9a5fa6e9 4898 Reported by Andreas Vögele.
a0d06a00 4899
dfa6017e
KR
4900 * threads-plugin.h (SCM_MUTEX_MAXSIZE): Increase to 25*sizeof(long),
4901 for the benefit of hpux11 where pthread_mutex_t is 88 bytes. Reported
9a5fa6e9 4902 by Andreas Vögele.
dfa6017e 4903
36245b66
DH
49042004-04-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4905
4906 * eval.c (s_macro_keyword): New static identifier.
4907
4908 (scm_m_define): Change order to first create binding and
4909 evaluating the expression afterwards.
4910
4911 (scm_m_set_x): Memoize complete set! expression. Only leave
4912 symbols if no binding exists at memoization time. Throw error if
4913 assigning to a syntactic keyword.
4914
4915 (lazy_memoize_variable): New function.
4916
4917 (CEVAL): When execution set!, perform lazy memoization if
4918 unmemoized symbol is detected.
4919
4920 * modules.c (module_variable): Return variables with unbound
4921 value.
4922
4923 * tags.h: Fix comment.
4924
4d81111e
KR
49252004-04-25 Kevin Ryde <user42@zip.com.au>
4926
da8bcb2f
KR
4927 * chars.c (scm_char_upcase, scm_char_downcase, scm_c_upcase,
4928 scm_c_downcase): Use ctype.h toupper and tolower. This will be useful
4929 in 8-bit locales, and ensures consistency with char-upper-case? and
4930 char-lower-case? which already use ctype.h.
4931 (scm_c_upcase_table, scm_c_downcase_table, scm_lowers, scm_uppers):
4932 Remove.
4933 * chars.c, chars.h, init.c (scm_tables_prehistory): Remove.
4934
4d81111e
KR
4935 * socket.c (VALIDATE_INET6): Correction to bignum_in_ipv6_range_p
4936 call. Reported by Hyperdivision.
4937
4938 * threads.c (scm_yield): Correction, actually call scm_thread_yield.
4939 Reported by Hyperdivision.
4940
4941 * unif.c (s_scm_make_uve): Remove unused local variable. Reported by
4942 Hyperdivision.
4943
7e6e6b37
DH
49442004-04-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4945
4946 Hide the implementation of ilocs and isyms in eval.c.
4947
4948 * deprecated.h (SCM_IFRINC, SCM_ICDR, SCM_IFRAME, SCM_IDIST,
4949 SCM_ICDRP), eval.c (SCM_IFRINC, SCM_ICDR, SCM_IFRAME, SCM_IDIST,
4950 SCM_ICDRP), eval.h (SCM_ICDR, SCM_IFRINC, SCM_IFRAME, SCM_IDIST,
4951 SCM_ICDRP): Deprecated and added to deprecated.h. Moved from
4952 eval.h to eval.c.
4953
4954 * deprecated.c (scm_isymnames), deprecated.h (scm_isymnames,
4955 SCM_ISYMNUM, SCM_ISYMCHARS), eval.c (SCM_ISYMNUM, isymnames,
4956 scm_unmemocopy, CEVAL), print.c (scm_isymnames), tags.h
4957 (SCM_ISYMNUM, scm_isymnames, SCM_ISYMCHARS): Deprecated
4958 scm_isymnames, SCM_ISYMNUM and SCM_ISYMCHARS and added to
4959 deprecated.[hc]. Moved scm_isymnames from print.c to eval.c and
4960 renamed to isymnames. Moved SCM_ISYMNUM from tags.h to eval.c and
4961 renamed to ISYMNUM.
4962
4963 * eval.c (scm_i_print_iloc, scm_i_print_isym), eval.h
4964 (scm_i_print_iloc, scm_i_print_isym), print.c (scm_iprin1):
4965 Extracted printing of ilocs and isyms to guile internal functions
4966 scm_i_print_iloc, scm_i_print_isym of eval.c.
4967
caab294f
KR
49682004-04-22 Kevin Ryde <user42@zip.com.au>
4969
7aaf4758
KR
4970 * numbers.c (scm_bit_extract): Use SCM_SRS for signed right shift.
4971
caab294f
KR
4972 * numbers.c (scm_round): Test for x already an integer, to avoid bad
4973 rounding in x+0.5 when x is a big value already an integer. In
4974 certain hardware rounding cases x+0.5 can give an adjacent integer,
4975 leading to that as the result, when we really just wanted x itself.
241d9cea 4976
b1cb24ff
DH
49772004-04-19 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4978
4979 * eval.c (scm_unmemocopy): Fixed unmemoization of let*.
4980
4981 (deval_args, CEVAL): Minor improvements: Reduced variable scopes,
4982 added const qualifiers, cast intentionally unused expressions to
4983 void for emphasis, improved comment.
4984
5065b40d
DH
49852004-04-18 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
4986
4987 * tags.h (scm_tags, scm_tc8_tags, scm_tc9_flag, scm_tc8_flag,
4988 scm_tc8_isym): Renamed scm_tags to scm_tc8_tags. Renamed
4989 scm_tc9_flag to scm_tc8_flag. Introduced new identifier
4990 scm_tc8_isym. Defined tc8-tags relative to scm_tc3_imm24.
4991 Defined the tc8-tag for flags to be 0x04, which will mean that
4992 SCM_BOOL_F will also have the value 0x04 instead of 0x013c. Due
4993 to the reduced number of bits and the simpler bit pattern for
4994 SCM_BOOL_F, certain machines may be able to use more efficient
4995 processor instructions to deal with SCM_BOOL_F.
4996
4997 (SCM_ITAG9, SCM_MAKE_ITAG9, SCM_ITAG9_DATA): Removed. These have
4998 never been defined in a released version, thus no need to
4999 deprecate them.
5000
5001 (SCM_IFLAGP, SCM_MAKIFLAG, SCM_IFLAGNUM): Flags now use tc8
5002 instead of tc9 tags.
5003
5004 (SCM_ISYMP, SCM_MAKISYM, SCM_ISYMNUM): Isyms now use tc8 instead
5005 of tc9 tags.
5006
5007 (SCM_MAKSPCSYM): Removed. It is almost impossible that user code
5008 could have used this definition.
5009
5010 (SCM_IM_AND, SCM_IM_BEGIN, SCM_IM_CASE, SCM_IM_COND, SCM_IM_DO,
5011 SCM_IM_IF, SCM_IM_LAMBDA, SCM_IM_LET, SCM_IM_LETSTAR,
5012 SCM_IM_LETREC, SCM_IM_OR, SCM_IM_QUOTE, SCM_IM_SET_X): Now encoded
5013 as isyms, as special isyms don't exist any more.
5014
9fa6c119
KR
50152004-04-18 Kevin Ryde <user42@zip.com.au>
5016
e08d2eee
KR
5017 * filesys.c (scm_readdir): Use readdir_r when available, for thread
5018 safety.
5019
9fa6c119
KR
5020 * numbers.c (scm_max, scm_min): For big/real, use SCM_SWAP rather than
5021 explicit swapping code.
5022
c9cdd396
KR
50232004-04-15 Kevin Ryde <user42@zip.com.au>
5024
5025 * cpp_sig_symbols.in: Add SIGSYS.
241d9cea 5026
c9cdd396
KR
5027 * list.c (scm_append_x): Use iterative style, to avoid non-tail
5028 recursion.
5029
5030 * numbers.c (scm_max, scm_min): For inum/frac, frac/inum, big/frac,
5031 frac/big and frac/frac, use scm_less_p for exact comparison.
5032
83ac9c59
KR
5033 * numbers.c (scm_gcd): For inum/big, use mpz_gcd_ui by sharing code
5034 with big/inum.
5035
84a4be9a
KR
5036 * numbers.c (xisinf): Add a comment about solaris 7 lacking isinf.
5037
84fad130
HWN
50382004-04-06 Han-Wen Nienhuys <hanwen@xs4all.nl>
5039
6b69393d
HWN
5040 * inline.h (scm_cell): use SCM_GC_CELL_WORD for checking tag.
5041
84fad130 5042 * chars.h (scm_init_chars): change scm_{upcase,downcase} to
241d9cea 5043 scm_c_{up,down}case.
84fad130 5044 (SCM_MAKE_CHAR): add (unsigned char) cast. This prevents havoc
241d9cea 5045 when hi-bit ASCII is subjected to SCM_MAKE_CHAR().
84fad130 5046
c3110a30
KR
50472004-04-06 Kevin Ryde <user42@zip.com.au>
5048
0b288f36
KR
5049 * numbers.c (scm_ash): Remove stray "}" in docstring.
5050
ea2508c8
KR
5051 * numbers.c (scm_make_ratio): For inum/bignum integer detection, use
5052 x==SCM_MOST_NEGATIVE_FIXNUM explicitly, for clarity and to avoid
5053 calling mpz_cmp_ui in most cases.
5054
c3110a30
KR
5055 * numbers.c (scm_quotient, scm_remainder): In inum/big, use mpz_cmp_ui
5056 for big == abs(most-negative-fixnum) special case.
5057 (abs_most_negative_fixnum): Remove, no longer used.
5058
5059 * scmsigs.c (scm_sigaction_for_thread): Correction to signum range
5060 test, avoids SCM_VECTOR_REF outside bounds of signal_handlers on
5061 calling (sigaction NSIG).
5062
5063 * simpos.c (scm_system_star): Fix execargv memory leak, merge parent
5064 and fork error cases to do this.
5065
dec40cd2
DH
50662004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5067
5068 * eval.c (CEVAL): Don't distinguish between short and long
5069 instructions when dispatching - just always dispatch on the
5070 instruction code, which is common for short and long instructions.
5071 Further, removed unnecessary goto statements and added comment.
5072
0e7bb795
DH
50732004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5074
5075 * eval.c (scm_unmemocopy): Don't distinguish between short and
5076 long instructions when dispatching - just always dispatch on the
5077 instruction code, which is common for short and long instructions.
5078 Further, removed unnecessary goto statements, fixed indentation
5079 and replaced SCM_IMP predicates by SCM_NULLP.
5080
f9986767
DH
50812004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5082
5083 * eval.c (scm_lookupcar1, CEVAL): Use SCM_ILOCP instead of
5084 comparison with SCM_ILOC00. In CEVAL, eliminate goto-label
5085 'checkmacro'.
5086
fbc42231
KR
50872004-03-31 Kevin Ryde <user42@zip.com.au>
5088
5089 * simpos.c: Include <signal.h> for SIG_IGN and friends.
5090
434f2f7a
DH
50912004-03-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5092
5093 Introduce scm_debug_mode_p as a replacement for scm_debug_mode and
5094 SCM_DEBUGGINGP:
5095
5096 * debug.h (scm_debug_mode_p, scm_debug_mode, SCM_DEBUGGINGP),
5097 eval.c (scm_debug_mode_p): Deprecated scm_debug_mode and
5098 SCM_DEBUGGINGP. Provided scm_debug_mode_p instead, to have one
5099 single interface that also matches the naming conventions.
5100 Probably scm_debug_mode_p should be part of the private interface
5101 anyway.
5102
5103 * debug.h (scm_debug_mode_p), backtrace.c (display_error_body),
5104 eval.c (SCM_APPLY, scm_trampoline_0, scm_trampoline_1,
5105 scm_trampoline_2): Change uses of scm_debug_mode or SCM_DEBUGGINGP
5106 to scm_debug_mode_p.
5107
5108
5109 Deprecate direct access to scm_ceval, scm_deval and scm_ceval_ptr:
5110
5111 * eval.h (scm_ceval, scm_deval, scm_ceval_ptr), debug.h
5112 (scm_ceval_ptr): Deprecated. Moved declaration of scm_ceval_ptr
5113 from debug.h to eval.h.
5114
5115 * debug.h (SCM_RESET_DEBUG_MODE): Don't access scm_ceval_ptr any
5116 more, just leave it with setting scm_debug_mode_p, which is
5117 equivalent for practical purposes.
5118
5119 * deprecated.h (SCM_XEVAL, SCM_XEVALCAR): Call scm_i_eval_x
5120 instead of *scm_ceval_ptr. Leave all evaluating to scm_i_eval_x.
5121
5122 * gdbint.c (gdb_eval): Call scm_i_eval_x instead of scm_ceval.
5123
5124 * eval.c (ceval, deval, scm_ceval, scm_deval): Made scm_ceval
5125 static and renamed it to ceval throughout. Provide a new exported
5126 but deprecated function scm_ceval as a wrapper for backwards
5127 compatibility. The same is done for the deval/scm_deval pair of
5128 functions.
5129
5130 * eval.c (CEVAL, SCM_CEVAL): Renamed SCM_CEVAL to CEVAL
5131 throughout. Defined CEVAL to ceval or deval, based on compilation
5132 phase.
5133
5134 * eval.c (SCM_XEVAL, SCM_XEVALCAR): Dispatch on scm_debug_mode_p
5135 to ceval and deval instead of calling *scm_ceval_ptr.
5136
5137 * eval.c (dispatching_eval): New deprecated static function.
5138
5139 * eval.c (scm_ceval_ptr): Initialized to dispatching_eval in order
5140 to emulate its old behaviour as closely as possible.
5141
5142
5143 Change the evaluator such that only expressions for which pair? is
5144 true are passed to CEVAL, and such that all other expressions are
5145 evaluated outside of CEVAL:
5146
5147 * eval.c (EVAL): New, provided in analogy to EVALCAR. Evaluate an
5148 expression that is assumed to be memoized already. All but
5149 expressions of the form '(<form> <form> ...)' are evaluated inline
5150 without calling an evaluator.
5151
5152 * eval.c (SCM_XEVAL, SCM_XEVALCAR, EVALCAR): Evaluate all but
5153 expressions of the form '(<form> <form> ...)' inline without
5154 calling an evaluator.
5155
5156 * eval.c (scm_i_eval_x, scm_i_eval, scm_ceval, scm_deval): Handle
5157 the special case of unmemoized symbols passed on the top level.
5158
5159 * eval.c (CEVAL): Change calls to CEVAL to EVAL, except where it
5160 is known that the expression passed to CEVAL is of the form
5161 '(<form> <form> ...)'. Remove handling of the tc7-objects, since
5162 now it is known that the input expression of CEVAL is a pair.
5163
51642004-03-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5fb64383
DH
5165
5166 * eval.c (is_self_quoting_p): New static function.
5167
5168 (scm_m_quote): Use is_self_quoting_p.
5169
5170 (copy_tree): Corrected typo in comment.
5171
702551e6
HWN
51722004-03-28 Han-Wen Nienhuys <hanwen@xs4all.nl>
5173
bfefbf18
HWN
5174 * eval.c (s_scm_copy_tree): idem.
5175
5176 * list.c (s_scm_filter): remove "pointer" from doc string.
5177
702551e6
HWN
5178 * gc.h (SCM_GC_CELL_TYPE): SCM_GC_CELL_TYPE uses SCM_GC_CELL_OBJECT.
5179
5180 * goops.h (SCM_NUMBER_OF_SLOTS): don't SCM_UNPACK the result.
5181
5182 * backtrace.c ("display_backtrace_body"): SCM_PACK before SCM_EQ_P
5183 (display_frame): idem.
5184 (display_backtrace_file_and_line): idem.
5185
5186 * tags.h (SCM_UNPACK): stricter typechecking on SCM_UNPACK
5187 arguments.
5188
3cd23214
KR
51892004-03-26 Kevin Ryde <user42@zip.com.au>
5190
88a7ae1f
KR
5191 * filesys.c (scm_getcwd, scm_readlink): Avoid memory leak on errors.
5192
3cd23214
KR
5193 * numbers.c (scm_modulo): For inum/big and big/big, remove test of
5194 big==0 since that never occurs.
5195
5196 * numbers.c, numbers.h (scm_modulo_expt): Renamed from
5197 scm_modular_expt, matching scheme level name `modulo-expt'.
5198
5199 * numbers.c (scm_modular_expt): Return a negative remainder for a
5200 negative divisor, the same as `modulo' does.
5201
52022004-03-26 Eric Hanchrow <offby1@blarg.net>
5203
5204 * numbers.c, numbers.h (scm_modular_expt): New function.
5205
2926035a
KR
52062004-03-25 Kevin Ryde <user42@zip.com.au>
5207
5208 * numbers.c (scm_min, scm_max): Correction to big/real and real/big,
5209 return inexact as required by r5rs.
5210
62360b89
DH
52112004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
5212
5213 * eval.c: Separated some definitions relevant for execution from
5214 the memoization part of the file.
5215
5216 (copy_tree): New static function
5217
5218 (scm_copy_tree): Rewritten to fix two kinds or bugs: First, cyclic
5219 structures are detected now and will lead to an exception instead
5220 of forcing guile to run in an endless loop, using up all the
5221 system's memory. Second, arrays in the cdr of an improper list
5222 are now copied. See the new test cases in eval.test.
5223
52242004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
b28f5b3c
DH
5225
5226 * posix.c (scm_gethostname): Make sure len is initialised before
5227 it is used. Restructured to (hopefully) represent possible
5228 configurations more clearly in the code. Added unwind handler.
5229
3bd3bae8
KR
52302004-03-23 Kevin Ryde <user42@zip.com.au>
5231
5232 * posix.c (scm_gethostname): Use sysconf(_SC_HOST_NAME_MAX) and/or
5233 MAXHOSTNAMELEN when available.
5234
254bf78d
MV
52352004-03-21 Marius Vollmer <mvo@zagadka.de>
5236
5237 * read.c (skip_scsh_block_comment): Also recognize '\r' as a line
5238 terminator. Rewritten the logic as a state machine, I must have
5239 been doing too much VHDL lately...
5240
5241 * eval.c (scm_ceval, scm_deval): Explicitely evaluate ports to
5242 themselves. Thanks to Han-Wen Nienhuys!
5243
5244 * list.c: Changed docstrings so that they no longer talk about
5245 returning 'pointers' to something.
5246
009c34a2
HWN
52472004-03-20 Han-Wen Nienhuys <hanwen@xs4all.nl>
5248
5249 * gc.c: remove set_debug_cell_accesses! when
5250 SCM_DEBUG_CELL_ACCESSES is not defined. Scheme source code should
5251 use (if (defined? 'set-debug-cell-accesses!) .. ) to switch on
5252 debugging conditionally.
241d9cea 5253
54733c95
KR
52542004-03-21 Kevin Ryde <user42@zip.com.au>
5255
5256 * stime.c (scm_gmtime): Use gmtime_r when available, for thread safety.
5257
bbaf8747
KR
52582004-03-20 Kevin Ryde <user42@zip.com.au>
5259
5260 * posix.c (scm_gethostname): Preserve errno across free() call.
5261
726f82e7
HWN
52622004-03-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
5263
5264 * gc-card.c (sweep_card): use SCM_GC_SET_CELL_WORD for setting
5265 free cells.
5266
e1350d6a
KR
52672004-03-14 Kevin Ryde <user42@zip.com.au>
5268
5269 * stime.c: Define _GNU_SOURCE for strptime prototype from glibc.
5270 (strptime): Use HAVE_DECL_STRPTIME for when to give own prototype.
5271
62055253
KR
52722004-03-07 Kevin Ryde <user42@zip.com.au>
5273
5274 * stime.c (scm_gmtime): Return bd_time->tm_zone when available, rather
5275 than "GMT" always.
5276 (filltime): Make zname parameter "const".
5277
92e64b87
MD
52782004-03-03 Mikael Djurfeldt <mdj@chunk.mit.edu>
5279
5280 * threads.c, threads.h (scm_c_scm2thread): New function.
5281
004ad931
KR
52822004-02-29 Kevin Ryde <user42@zip.com.au>
5283
5284 * numbers.c (guile_ieee_init): Use C99 INFINITY and NAN when
5285 available. Test HAVE_DINFINITY and HAVE_DQNAN for those globals, in
5286 particular don't assume "defined (__alpha__) && ! defined (linux)"
5287 means OSF. Remove "SCO" code, which was not really SCO specific and
5288 which John W. Eaton advises should be long past being needed.
5289
5290 * posix.c (scm_execl, scm_execlp, scm_execle): Avoid memory leak under
5291 error throw.
5292
72ea45ac
KR
52932004-02-24 Kevin Ryde <user42@zip.com.au>
5294
5295 * posix.c (scm_cuserid): Use a private result buffer, for thread safe.
5296
2af0602e
KR
52972004-02-22 Kevin Ryde <user42@zip.com.au>
5298
5299 * numbers.c (scm_max, scm_min): For one arg, dispatch to generic for
5300 complex, same as for two args. (Handle only inum, big, real, frac).
5301
b114eafe
KR
53022004-02-21 Kevin Ryde <user42@zip.com.au>
5303
5304 * posix.c (scm_crypt): Use new HAVE_CRYPT.
5305 (<crypt.h>): Remove HAVE_LIBCRYPT condition.
db752bb5 5306 Reported by Andreas Voegele.
b114eafe 5307
1e55d288
NJ
53082004-02-20 Neil Jerram <neil@ossau.uklinux.net>
5309
5310 * list.c (scm_list_n): Add #if SCM_DEBUG_CELL_ACCESSES_P around
5311 validation.
5312
5313 * read.c (scm_lreadparen): Removed.
5314 (scm_lreadparen1): Renamed scm_i_lreadparen.
5315
eb741d98
HWN
53162004-02-20 Han-Wen Nienhuys <hanwen@xs4all.nl>
5317
5318 * list.c (scm_list_n): validate non-immediate arguments;
5319 this will catch forgotten a SCM_UNDEFINED.
5320
4e28ba5e
MV
53212004-02-18 Marius Vollmer <mvo@zagadka.de>
5322
5323 * gc.h (scm_gc_cells_collected): Removed duplicated declaration.
5324 Thanks to Bill Schottstaedt!
241d9cea 5325
4e28ba5e
MV
5326 * socket.h (scm_gethost): Removed prototype it is already in
5327 "net_db.h". Thanks to Bill Schottstaedt!
241d9cea 5328
ef861ead
KR
53292004-02-18 Kevin Ryde <user42@zip.com.au>
5330
5331 * num2integral.i.c (INTEGRAL2BIG): WORDS_BIGENDIAN not right for word
5332 order parameter to mpz_import, in fact with just one word there's no
5333 order to worry about at all.
5334
5335 * numbers.c (scm_num_eq_p): For real==frac, complex==frac, frac==real
5336 and frac==complex, make an exact comparison rather than converting
5337 with fraction2double.
5338
5339 * posix.c, putenv.c, stime.c (environ): Use _NSGetEnviron in Darwin
5340 shared library, since environ is not directly available there.
5341
5342 * script.c (scm_shell_usage): Print to stdout for --help, per GNU
5343 standard.
5344
5345 * stime.c (scm_localtime, scm_gmtime, scm_mktime): Provide a default
5346 errno EINVAL in case localtime and gmtime don't set it.
5347 (scm_mktime, scm_strptime): Forcibly use errno EINVAL for our
5348 SCM_SYSERROR, since mktime and strptime generally don't set errno.
5349
ae43d08e 53502004-02-16 Kevin Ryde <kevin@swox.se>
292dfa7f 5351
c9ea6462
KR
5352 * gc-malloc.c (scm_done_malloc, scm_done_free): Allow negative sizes,
5353 which were permitted in the past for these.
5354
292dfa7f
KR
5355 * num2float.i.c (NUM2FLOAT): Expand isfinite to !xisinf, as per
5356 previous change to numbers.c.
5357
ae43d08e
KR
5358 * script.c (scm_shell_usage): Print bug-guile email address, as per
5359 GNU standard. Reported by Han-Wen Nienhuys.
5360
711a9fd7
MD
53612004-02-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5362
5363 * unif.c (scm_make_uve): Removed local variable and simplified
5364 code in order to avoid compiler used uninitialized warnings.
5365
5366 * hashtab.c, hashtab.h (scm_hash_map_to_list): Renamed from
5367 scm_hash_map.
5368 (scm_hash_fold): Use scm_call_3 directly in the call to
5369 scm_internal_hash_fold instead of going via fold_proc (which is
5370 now removed).
5371 (scm_hash_for_each): Use a trampoline +
5372 scm_internal_hash_for_each_handle.
5373 (scm_internal_hash_for_each_handle, scm_hash_for_each_handle): New
5374 functions.
5375
3da7f6b2
KR
53762004-02-12 Kevin Ryde <user42@zip.com.au>
5377
344a212f
KR
5378 * ports.c (scm_port_line): In docstring, note first line is 0.
5379 (scm_set_port_line_x): In docstring, note first line is 0.
5380 (scm_port_column): In docstring, there's no default to current input
5381 port, and remove shared port-line @defun.
5382 (scm_set_port_column_x): In docstring, there's no default to current
5383 input port, note first column is 0, remove shared set-port-line!
5384 @defun.
5385
3da7f6b2
KR
5386 * ramap.c (scm_array_fill_x): For fvect and dvect, use scm_num2dbl to
5387 convert args the same way that array-set! does.
5388
5389 * unif.c (scm_make_uve, scm_array_p): Allow fraction 1/3 as prototype
5390 for dvect.
5391 (scm_array_p): Add missing "break"s in switch, fix llvect test look
5392 for "l" not "s", fix dvect to be false for singp(prot) since such a
5393 value is for fvect.
5394 (scm_array_prototype): Return 1/3 for dvect, rather than 0.33..33.
88531a74
KR
5395 (exactly_one_third): New variable.
5396 (scm_init_unif): Initialize it.
3da7f6b2 5397
cd21f5eb
NJ
53982004-02-10 Neil Jerram <neil@ossau.uklinux.net>
5399
5400 * read.c (scm_read_opts): Change `escaped-parens' to
5401 `elisp-strings'.
5402
16353acc
NJ
54032004-02-08 Neil Jerram <neil@ossau.uklinux.net>
5404
5405 * read.c (scm_read_opts): New opts `elisp-vectors' and
5406 `escaped-parens'.
5407 (s_vector): New.
5408 (scm_lreadr): Use scm_lreadparen1 instead of scm_lreadparen. Make
5409 handling of elisp vector syntax dependent on SCM_ENABLE_ELISP and
5410 `elisp-vectors' option instead of SCM_ELISP_READ_EXTENSIONS.
5411 Allow "\(" and "\)" in strings when SCM_ENABLE_ELISP defined and
5412 `escaped-parens' option set.
5413 (scm_read_token): If elisp vector syntax active, disallow [ and ]
5414 in tokens.
5415 (scm_lreadparen): Rewrite as interface to scm_lreadparen1.
5416 (scm_lreadparen1): New.
5417
5418 * read.h: Remove conditionally compiled last arg to
5419 scm_lreadparen.
5420 (SCM_ELISP_VECTORS_P, SCM_ESCAPED_PARENS_P): New.
241d9cea 5421
f62b9dff
HWN
54222004-01-23 Han-Wen Nienhuys <hanwen@xs4all.nl>
5423
5424 * eval.c (m_expand_body): remove stray variable new_body.
5425
ef5b6b61
MV
54262004-01-22 Marius Vollmer <mvo@zagadka.de>
5427
5428 * eval.c (m_expand_body): Rewrite the expression in place (by
5429 overwriting FORMS) also when a letrec is constructed, not only
5430 when no definitions are found. Do not return rewritten expression
5431 to emphasize the in-place rewriting. Changed all users.
5432
7eec4c37
HWN
54332004-01-19 Han-Wen Nienhuys <hanwen@xs4all.nl>
5434
5435 * gc.c: add protected_object_count, a number that is dumped from
5436 gc_stats()
5437
25ffbdac
MV
54382004-01-11 Marius Vollmer <mvo@zagadka.de>
5439
5440 * dynwind.h, dynwind.c (scm_frame_unwind,
5441 scm_frame_unwind_handler): Renamed and changed all uses.
5442 (scm_frame_rewind, scm_frame_rewind_handler): Likewise.
241d9cea 5443
08568c95
KR
54442004-01-11 Kevin Ryde <user42@zip.com.au>
5445
5446 * unif.c (scm_bit_count, scm_bit_position, s_scm_bit_set_star_x,
5447 s_scm_bit_count_star, s_scm_bit_invert_x): Clarify docstrings, as per
5448 changes made to scheme-compound.texi.
5449
5565749c
MV
54502004-01-10 Marius Vollmer <mvo@zagadka.de>
5451
25ffbdac
MV
5452 * print.c (scm_print_symbol_name): Handle #{`foo}#, #{,foo}#,
5453 #{.}#, and all numeric strings specially. Thanks to Paul Jarc!
5454
5455 * guile-snarf.in: Use mkdir to create a unique temporary directory
5456 that we can safely use. Thanks to Stefan Nordhausen!
5565749c 5457
fc6bb283
MV
54582004-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5459
7ebccde8
MV
5460 * dynwind.h, dynwind.c (scm_i_dowinds): Removed 'explicit'
5461 argument since it is always zero now. Changed all callers.
5462 Removed code for handling fluids.
96e3b2f8
MV
5463
5464 * fluids.c (scm_c_with_fluids): Use frames instead of adding to
5465 the wind chain explicitely. Use scm_c_with_fluid for the common
5466 case of only one fluid.
5467 (scm_with_fluid): New.
5468 (scm_c_with_fluid): Use frames instead of scm_c_with_fluids.
241d9cea 5469
fc6bb283 5470 * fluids.h, fluids.c (scm_frame_fluid): New.
96e3b2f8
MV
5471 (scm_with_fluid): New.
5472 (scm_i_swap_fluids, scm_i_swap_fluids_reverse): Removed.
fc6bb283
MV
5473
5474 * dynwind.c (scm_frame_end): Do not use scm_i_dowinds. Instead,
5475 do the unwinding directly. It is simple enough.
241d9cea 5476
fc6bb283
MV
5477 * dynwind.h, dynwind.c: Did the following renamings:
5478 scm_begin_frame -> scm_frame_begin,
5479 scm_end_frame -> scm_frame_end,
5480 scm_on_unwind -> scm_frame_unwind,
5481 scm_on_rewind -> scm_frame_rewind,
5482 scm_on_unwind_with_scm -> scm_frame_unwind_with_scm,
5483 scm_on_rewind_with_scm -> scm_frame_rewind_with_scm.
5484 Changed all uses.
5485
5486 * aync.h, async.c: Did the follwing renamings:
5487 scm_with_blocked_asyncs -> scm_frame_block_asyncs,
5488 scm_with_unblocked_asyncs -> scm_frame_unblock_asyncs.
5489 Changed all uses.
241d9cea 5490
fc6bb283
MV
5491 * ports.h, ports.c: Did the follwing renamings:
5492 scm_with_current_input_port -> scm_frame_current_input_port,
5493 scm_with_current_output_port -> scm_frame_current_output_port,
5494 scm_with_current_error_port -> scm_frame_current_error_port.
5495 Changed all uses.
5496
298ab996
KR
54972004-01-07 Kevin Ryde <user42@zip.com.au>
5498
5499 * numbers.c (s_bignum): Remove, not used since gmp bignums.
5500 Reported by Richard Todd.
5501
ba40113e
KR
5502 * threads-plugin.h (SCM_MUTEX_MAXSIZE): Increase to 12*sizeof(long),
5503 for the benefit of powerpc-apple-darwin5.5. Reported by Richard Todd.
5504
298ab996
KR
5505 * unif.c (scm_aind): Test SCM_CONSP rather than !SCM_NULLP while
5506 traversing the args list, fixes segv if an improper list is given.
5507 Reported by Rouben Rostamian.
5508
aacff585
MV
55092004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5510
5511 * ports.c (swap_ports, scm_with_current_foo_port): Do not allocate
5512 swap_data on stack, use a 'malloc obj'.
5513
5514 * fluids.h, fluids.c (scm_make_initial_fluids, scm_copy_fluids,
5515 scm_swap_fluids, scm_swap_fluids_reverse): Renamed to
5516 scm_i_... since they are internal. Changed all uses.
5517
5518 * dynwind.c (frame_print): Removed, use the default printer.
5519 (WINDER_F_MARK, WINDER_MARK_P, winder_mark): New.
5520 (scm_on_unwind_with_scm, scm_on_rewind_with_scm): New. Use above
5521 to protect SCM values.
241d9cea 5522
aacff585
MV
5523 * dynwind.h (SCM_F_WIND_EXPLICITELY,
5524 SCM_F_WIND_EXPLICITLY): It's "explicitly" not "explicitely", damn.
5525 Changed all uses.
5526 (scm_on_unwind_with_scm, scm_on_rewind_with_scm): New.
241d9cea 5527
49c00ecc
MV
55282004-01-05 Marius Vollmer <mvo@zagadka.de>
5529
5530 * ports.h, ports.c (scm_with_current_input_port,
5531 scm_with_current_output_port, scm_with_current_error_port): New.
5532
5533 * async.h, async.c (scm_with_blocked_asyncs,
5534 scm_with_unblocked_asyncs): New.
5535
dab514a8
MV
55362004-01-03 Marius Vollmer <mvo@zagadka.de>
5537
5538 * dynwind.h, scm_dynwind.c (scm_t_frame_flags, scm_t_wind_flags,
5539 scm_begin_frame, scm_end_frame, scm_on_unwind, scm_on_rewind):
5540 New.
5541 (scm_dowinds, scm_i_dowinds): scm_dowinds has been renamed to
5542 scm_i_dowinds and extended to handle frames and to invoke a 'turn'
5543 function when the outermost wind point has been reached. The
5544 latter is used to copy a continuation stack at the right time.
5545 scm_dowinds remains available.
5546 (SCM_GUARDSP, SCM_BEFORE_GUARD, SCM_AFTER_GUARD, SCM_GUARD_DATA,
5547 tc16_guard, guards_print): Removed.
5548 (scm_internal_dynamic_wind): Reimplemented using frames.
5549
5550 * continuations.c (copy_stack): New, do only the stack copying
5551 part of copy_stack_and_call.
5552 (copy_stack_and_call): Copy the stack after unwinding and before
5553 rewinding.
5554 (scm_dynthrow): Do not call scm_dowinds, this is now done by
5555 copy_stack_and_call.
241d9cea 5556
441a25d9
KR
55572004-01-04 Kevin Ryde <user42@zip.com.au>
5558
5559 * numbers.c (scm_less_p): Don't convert frac to float for compares,
dab514a8 5560 can give bad results due to rounding.
241d9cea 5561
e0499207
KR
5562 * stime.c (scm_current_time, scm_gettimeofday): Add a comment about
5563 setzone/restorezone protection for DOS.
5564
89fcf1b4
MV
55652003-12-26 Marius Vollmer <mvo@zagadka.de>
5566
5567 * gen-scmconfig.h.in, gen-scmconfig.c: Arrange for scm_t_intmax
5568 and scm_t_uintmax to be defined in scmconfig.h
5569
caff34d4
KR
55702003-12-03 Kevin Ryde <user42@zip.com.au>
5571
5572 * numbers.c (scm_less_p): Remove spurious xisnan from frac+big case.
5573
5574 * numbers.c (scm_make_ratio): Check for numerator equal to
5575 SCM_MOST_NEGATIVE_FIXNUM and bignum denominator the negative of that,
5576 giving integer -1.
5577
5578 * numbers.c (scm_real_part): Return fraction unchanged rather than
5579 converting to flonum.
5580
2d0b85ac
DH
55812003-11-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
5582
5583 * modules.c (module_variable): Fixed (and thus simplified) the
5584 definition of SCM_BOUND_THING_P to reflect the fact that since
5585 after the 1.4 series of guile, obarrays only hold variable
5586 objects.
5587
2297981d
MV
55882003-11-30 Marius Vollmer <mvo@zagadka.de>
5589
5590 * numbers.c (scm_logand): It's "#b...", not "#\b...".
5591
5592 From Paul Jarc:
5593
5594 * read.c (scm_lreadr): Signal an error for invalid escape
5595 sequences in strings. Code cleanups too.
5596
5597 * print.c (scm_iprin1): use \xNN hexadecimal sequences when
5598 writing control characters in strings.
5599
56002003-11-21 Marius Vollmer <mvo@zagadka.de>
5601
5602 * ports.c (scm_drain_input): Bug fix: only access the port after
5603 checking that it indeed is one.
5604
5c264007
DH
56052003-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
5606
5607 * eval.c (s_bad_define): New static identifier.
5608
5609 (m_body): Fixed comment.
5610
5611 (scm_m_define): Don't generate memoized code for definitions that
5612 are not on the top level. As a consequence, no memoized code at
5613 all is generated for definitions any more: Top level definitions
5614 are executed immediately during memoization and internal
5615 definitions are handled separately in m_expand_body.
5616
5617 (scm_unmemocopy, unmemocopy): Removed code for unmemoizing
5618 definitions. Consequently, there is no unmemoizing code any more
5619 that might modify the environment. Thus, the old scm_unmemocopy
5620 is removed and the old unmemocopy is renamed to scm_unmemocopy.
5621
5622 (SCM_CEVAL): The SCM_IM_DEFINE keyword can no longer occur in
5623 memoized code. Call EVALCAR for continuations. Prefer !SCM_NULLP
5624 over SCM_NIMP in places, where the argument is known to be part of
5625 a proper list.
5626
018d4730
KR
56272003-11-21 Kevin Ryde <user42@zip.com.au>
5628
5629 * numbers.c (scm_abs): Allocate a new real only for negatives, as done
5630 for bignums.
5631
5632 * numbers.c (scm_bit_extract): Use mpz functions, rearrange inum case
5633 to share some shifting.
5634
5635 * numbers.c (scm_integer_expt): Don't mpz_init after scm_i_clonebig or
5636 scm_i_mkbig, since they do so already. Don't mpz_clear a bignum SCM,
5637 since gc does this.
5638
4bca30d8
MV
56392003-11-19 Marius Vollmer <mvo@zagadka.de>
5640
fb16d26e
MV
5641 * numbers.c (scm_make_ratio): Rewritten to have a simpler
5642 structure. Previously, not all cases with a negative denominator
5643 were covered.
5644
4bca30d8
MV
5645 * numbers.c (mem2decimal_from_point): use scm_divide instead of
5646 scm_divide2real when forming the fractional part. This allows
5647 "#e1.2" to yield 6/5.
5648
5649 * numbers.c (scm_i_fraction_equalp): Do not treat the return value
5650 of scm_equal_p as a C boolean, use SCM_FALSEP. Previously, all
5651 fractions were equal to each other regardless of value. Ooops.
5652
5653 * numbers.c (scm_rationalize): Return an inexact result when given
5654 inexact arguments.
5655
5656 * numbers.c (scm_exact_p, scm_inexact_p): Throw error for
5657 non-numbers.
5658
bdf26b60
MV
56592003-11-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5660
5661 Support for exact fractions from Bill Schottstaedt! Thanks!
241d9cea 5662
bdf26b60
MV
5663 * print.c (scm_iprin1): Handle fractions.
5664
5665 * objects.h (scm_class_fraction): New.
241d9cea 5666 * objects.c (scm_class_fraction): New.
bdf26b60 5667 (scm_class_of): Handle fractions.
241d9cea 5668
bdf26b60
MV
5669 * hash.c (scm_hasher): Handle fractions.
5670
5671 * numbers.c: New code for handling fraction all over the place.
5672 (scm_odd_p, scm_even_p): Handle inexact integers.
5673 (scm_rational_p): New function, same as scm_real_p.
5674 (scm_round_number, scm_truncate_number, scm_ceiling, scm_floor):
5675 New exact functions that replace the inexact 'dsubr'
5676 implementations.
5677 (scm_numerator, scm_denominator): New.
5678
5679 * numbers.h (SCM_NUMP): Recognize fractions.
5680 (SCM_FRACTIONP, SCM_SLOPPY_FRACTIONP, SCM_FRACTION_NUMERATOR,
5681 SCM_FRACTION_DENOMINATOR, SCM_FRACTION_SET_NUMERATOR,
5682 SCM_FRACTION_SET_DENOMINATOR, SCM_FRACTION_REDUCED_BIT,
5683 SCM_FRACTION_REDUCED_SET, SCM_FRACTION_REDUCED_CLEAR,
5684 SCM_FRACTION_REDUCED): New.
5685 (scm_floor, scm_ceiling, scm_truncate_number, scm_round_number):
5686 New prototypes.
5687 (scm_make_ratio, scm_rationalize, scm_numerator, scm_denominator,
5688 scm_rational_p): New prototypes.
5689 (scm_i_dbl2num, scm_i_fraction2double, scm_i_fraction_equalp,
5690 scm_i_print_fraction): New prototypes.
241d9cea 5691
bdf26b60
MV
5692 * goops.c (create_standard_classes): Create "<fraction>" class.
5693
5694 * gc-mark.c (scm_gc_mark_dependencies): Handle fractions.
5695
5696 * gc-card.c (scm_i_sweep_card): Include scm_tc16_fraction as a
5697 case in the switch, but do nothing for now.
5698
5699 * eval.c (SCM_CEVAL, SCM_APPLY, call_dsubr_1): Convert fractions
5700 to doubles when calling 'dsubr' functions.
5701
5702 * eq.c (scm_eqv_p, scm_equal_p): Handle fractions.
5703
28fda544
RB
57042003-11-18 Rob Browning <rlb@defaultvalue.org>
5705
5706 * gen-scmconfig.c (main): remove public definition of
5707 SCM_SIZEOF___INT64 and SCM_SIZEOF_UNSIGNED___INT64 and add
5708 direct typedef of long_long and ulong_long inside deprecated block
5709 when appropriate.
5710
5711 * deprecated.h: move long_long and ulong_long definitions to
5712 gen-scmconfig.c so that we don't need to add SCM_SIZEOF___INT64
5713 and SCM_SIZEOF_UNSIGNED___INT64 to the public namespace.
5714
b58e7420
MV
57152003-11-17 Marius Vollmer <mvo@zagadka.de>
5716
9a1d7d7c
MV
5717 * hash.c (scm_string_hash): New hashing algorithm that takes the
5718 complete string into account.
5719
b58e7420
MV
5720 * eval.c (scm_m_generalized_set_x): Macroexpand the target when it
5721 is a list. This allows (@ ...) to work with set!.
9a1d7d7c
MV
5722 (scm_m_generalized_set_x): Use ASSERT_SYNTAX_2 instead of
5723 SCM_ASSYNT.
b58e7420
MV
5724
5725 * script.c (scm_compile_shell_switches): Use scm_c_read_string for
5726 the "-e" option instead of scm_str2symbol. This allows things
5727 like (@ ...) to be specified for the entry point.
5728
461bffb1
DH
57292003-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
5730
5731 * eval.c (scm_m_letstar): Create memoized code in place to
5732 minimize consing.
5733
6f81708a
DH
57342003-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
5735
5736 * eval.c (s_splicing): Commented and reformulated.
5737
5738 (lookup_global_symbol, lookup_symbol): New static functions.
5739
5740 (s_test, s_bindings, s_duplicate_bindings, s_variable): Removed.
5741
5742 (try_macro_lookup, literal_p): Use lookup_symbol instead of
5743 creating a temporary pair for scm_lookupcar.
5744
5745 (scm_unmemocar, unmemocar): Renamed scm_unmemocar to unmemocar,
5746 created deprecated wrapper function scm_unmemocar.
5747
5748 (SCM_VALIDATE_NON_EMPTY_COMBINATION, scm_sym_else,
5749 scm_sym_unquote, scm_sym_uq_splicing, scm_sym_enter_frame,
5750 scm_sym_apply_frame, scm_sym_exit_frame, scm_sym_trace, f_apply,
5751 undefineds, sym_three_question_marks): Moved around without
5752 modifications.
5753
5754 * eval.c, eval.h (scm_macroexp, scm_unmemocar): Deprecated.
5755
910b5125
DH
57562003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5757
5758 * eval.c (try_macro_lookup, expand_user_macros, is_system_macro_p,
5759 m_expand_body, scm_m_expand_body): Grouped together with m_body.
5760 No further modifications.
5761
c86c440b
DH
57622003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
5763
5764 * eval.c (s_mixed_body_forms): New static identifier.
5765
5766 (canonicalize_define, scm_m_define): The check for a bad
5767 expression is performed in canonicalize_define now.
5768
5769 (try_macro_lookup, expand_user_macros, is_system_macro_p): New
5770 static helper functions for m_expand_body.
5771
5772 (m_expand_body): Use ASSERT_SYNTAX to signal syntax errors. Only
5773 expand user defined macros. Fixed handling of the definition/
5774 expression boundary. Fixed handling of definitions grouped with
5775 'begin. Use canonicalize_define to expand definitions.
5776
3890131a
MV
57772003-11-13 Marius Vollmer <mvo@zagadka.de>
5778
b58e7420
MV
5779 * read.c (scm_lreadr): detect EOF after backslash, and interpret
5780 \xNN hexadecimal sequences. From Paul Jarc, thanks!
5781
5df36eac
MV
5782 * snarf.h (SCM_SMOB, SCM_GLOBAL_SMOB, SCM_SMOB_MARK,
5783 SCM_GLOBAL_SMOB_MARK, SCM_SMOB_FREE, SCM_GLOBAL_SMOB_FREE,
5784 SCM_SMOB_PRINT, SCM_GLOBAL_SMOB_PRINT, SCM_SMOB_EQUALP,
5785 SCM_GLOBAL_SMOB_EQUALP, SCM_SMOB_APPLY, SCM_GLOBAL_SMOB_APPLY):
5786 New macros from Paul Jarc. Thanks!
5787
3890131a
MV
5788 * gc_os_dep.c (scm_get_stack_base): Provide a definition that
5789 return NULL when the machine type is unknown. Previously,
5790 gc_os_dep.c would refuse to compile.
5791
430b8401
DH
57922003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
5793
5794 * eval.c (scm_m_body, m_body, scm_m_lambda, memoize_named_let,
5795 scm_m_let, scm_m_letrec, m_expand_body): Renamed static function
5796 scm_m_body to m_body.
5797
328dc9a3
DH
57982003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
5799
5800 * eval.c, eval.h (scm_m_expand_body, m_expand_body): Deprecated
5801 public use of scm_m_expand_body in eval.h. In eval.c, renamed
5802 scm_m_expand_body to m_expand_body and made it static. Added
5803 deprecated wrapper scm_m_expand_body.
5804
5805 (scm_eval_body, SCM_CEVAL, SCM_APPLY): Use m_expand_body instead
5806 of scm_m_expand_body.
5807
c2337a61
KR
58082003-11-09 Kevin Ryde <user42@zip.com.au>
5809
5810 * dynl.c (scm_dynamic_unlink): Need scm_list_1 on error message
5811 argument. Reported by Mike Gran.
5812
ced8edb0
DH
58132003-11-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
5814
5815 * eval.c (s_missing_body_expression): New static identifier.
5816
5817 (s_body): Removed.
5818
5819 (scm_m_expand_body): Fixed core dump when passing a body with
5820 defines, but without expressions (see additions to syntax.test).
5821 Use ASSERT_SYNTAX to signal syntax errors.
5822
0f572ba7
DH
58232003-11-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
5824
5825 * eval.c (canonicalize_define): New static helper function.
5826
5827 (memoize_define, canonicalize_define): Extract handling of
5828 function currying to canonicalize_define.
5829
2510c810
DH
58302003-11-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
5831
5832 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
5833 Make sure that error checking in debug mode is not worse than in
5834 standard mode.
5835
34adf7ea
DH
58362003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
5837
5838 * eval.c (scm_m_body, scm_m_lambda): Documentation strings are not
5839 handled in scm_m_body any more, but rather in scm_m_lambda.
5840
5841 (scm_m_body, memoize_named_let, scm_m_let, scm_m_letstar,
5842 scm_m_letrec, scm_m_expand_body): Check for validity is done by
5843 calling functions of scm_m_body.
5844
5845 (scm_m_lambda): Avoid unnecessary consing when creating the
5846 memoized code.
5847
89bff2fc
DH
58482003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
5849
5850 * eval.c (s_expression): Added comment.
5851
5852 (s_empty_combination, error_unbound_variable): New static
5853 identifiers.
5854
5855 (SCM_VALIDATE_NON_EMPTY_COMBINATION, SCM_EVALIM2, scm_lookupcar1):
5856 Use ASSERT_SYNTAX, syntax_error or error_unbound_variable to
5857 signal syntax errors.
5858
5859 (SCM_CEVAL): Separated handling of evaluator bytecodes and other
5860 scheme objects.
5861
60a49842
DH
58622003-10-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
5863
5864 * eval.c (unmemocar, sym_three_question_marks, scm_unmemocar):
5865 Grouped together with unmemocopy, without modifications.
5866
5867 (build_binding_list, unmemocopy): Renamed names of list arguments
5868 and variables to reflect the actual order of the list elements.
5869
70c1c108
DH
58702003-10-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
5871
5872 * eval.c (s_defun): New static identifier.
5873
5874 (scm_m_nil_cond, scm_m_atfop, scm_m_undefine): Add comments. Use
5875 ASSERT_SYNTAX to signal syntax errors. Avoid unnecessary consing
5876 when creating the memoized code.
5877
0ee39677
KR
58782003-10-19 Kevin Ryde <user42@zip.com.au>
5879
5880 * numbers.c (scm_ash): Revise docstring as per recent update to manual.
5881
5882 * numbers.c (scm_i_big2dbl): Rewrite, carefully rounding to "closest"
5883 in accordance with R5RS, which just mpz_get_d doesn't really give.
5884
9a848baf
DH
58852003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5886
5887 * eval.c (s_bad_slot_number): New static identifier.
5888
5889 (scm_m_atslot_ref, scm_m_atslot_set_x): Use ASSERT_SYNTAX to
5890 signal syntax errors. Avoid unnecessary consing when creating the
5891 memoized code.
5892
da48db62
DH
58932003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5894
5895 * eval.c (scm_m_cont, scm_m_at_call_with_values,
5896 scm_m_generalized_set_x): Use ASSERT_SYNTAX to signal syntax
5897 errors. Avoid unnecessary consing when creating the memoized
5898 code.
5899
5900 (scm_m_generalized_set_x): Let scm_m_set_x handle the R5RS
5901 standard case. Make sure line and file information are copied to
5902 every created expression.
5903
82b3e2c6
DH
59042003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5905
5906 * eval.c (scm_m_set_x, scm_m_apply, scm_m_atbind): Use
5907 ASSERT_SYNTAX to signal syntax errors. Avoid unnecessary consing
5908 when creating the memoized code.
5909
5910 (scm_m_atbind): Reversed the order, in which the init expressions
5911 are stored and executed. The order of execution is now equal to
5912 the order in which the initializers of the let-forms are executed.
5913 Use check_bindings and transform_bindings.
5914
5915 (SCM_CEVAL): Eliminated SCM_NIMP in favor of more appropriate
5916 !SCM_NULLP. Added some comments.
5917
21628685
DH
59182003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5919
5920 * eval.c: Sorted include files alphabetically.
5921
5922 (scm_m_begin): Added comment.
5923
5924 (scm_m_or): Use ASSERT_SYNTAX to signal syntax errors. Avoid
5925 unnecessary consing when creating the memoized code.
5926
5927 (iqq, scm_m_quasiquote, scm_m_quote): Use ASSERT_SYNTAX to signal
5928 syntax errors. Be more specific about the kind of error that was
5929 detected.
5930
5931 (scm_m_quote, unmemocopy): As an optimization, vector constants
5932 are now inserted unquoted into the memoized code. During
5933 unmemoization the quotes are added again to provide syntactically
5934 correct code.
5935
d6754c23
DH
59362003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5937
5938 * eval.c (scm_m_let, scm_m_letstar, scm_m_letrec,
5939 scm_m_expand_body, check_bindings): Extracted syntax checking of
5940 bindings to new static function check_bindings.
5941
5942 (scm_m_let, memoize_named_let): Extracted handling of named let to
5943 new static function memoize_named_let.
5944
5945 (transform_bindings, scm_m_let, scm_m_letstar, scm_m_letrec): Use
5946 ASSERT_SYNTAX to signal syntax errors. Be more specific about the
5947 kind of error that was detected. Avoid use of SCM_CDRLOC. Avoid
5948 unnecessary consing when creating the memoized code.
5949
03a3e941
DH
59502003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
5951
5952 * eval.c (s_bad_formals, s_bad_formal, s_duplicate_formal): New
5953 static identifiers.
5954
5955 (s_clauses, s_formals, s_duplicate_formals): Removed.
5956
5957 (scm_m_lambda): Use ASSERT_SYNTAX to signal syntax errors. Be more
5958 specific about the kind of error that was detected. Prepare for
5959 easier integration of changes for separated memoization.
5960
da48db62 59612003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
4610b011
DH
5962
5963 * eval.c (s_duplicate_binding): New static identifier.
5964
5965 (scm_m_case): Call scm_c_memq instead of implementing it inline.
5966
5967 (scm_m_define): Added comment about how we check for duplicate
5968 formals.
5969
5970 (scm_m_do): Added check for duplicate bindings.
5971
5972 (scm_m_if): Use ASSERT_SYNTAX to signal syntax errors. Avoid
5973 unnecessary consing when creating the memoized code.
5974
5975 (scm_c_improper_memq, c_improper_memq, scm_m_lambda): Renamed
5976 scm_c_improper_memq to c_improper_memq, since it is not exported.
5977
5978 (transform_bindings): Call scm_c_memq rather than
5979 scm_c_improper_memq.
5980
5981 (SCM_CEVAL): Simplified handling of SCM_IM_IF forms.
5982
da48db62 59832003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
a954ce1d
DH
5984
5985 * eval.c (s_bad_bindings, s_bad_binding, s_bad_exit_clause): New
5986 static identifiers.
5987
5988 (scm_m_do): Use ASSERT_SYNTAX to signal syntax errors. Be more
5989 specific about the kind of error that was detected. Avoid use of
5990 SCM_CDRLOC. Avoid unnecessary consing when creating the memoized
5991 code, this way also making sure that file name, line number
5992 information etc. remain available.
5993
da48db62 59942003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
8ae95199
DH
5995
5996 * eval.c (memoize_as_thunk_prototype): New static function.
5997
5998 (scm_m_delay, scm_m_future): Use memoize_as_thunk_prototype.
5999 Avoid unnecessary consing when creating the memoized code.
6000
9b9a35b6
KR
60012003-10-12 Kevin Ryde <user42@zip.com.au>
6002
6003 * list.c (scm_append): Track argument number and use in error.
6004
cc56ba80
DH
60052003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
6006
6007 * eval.c (s_missing_expression, s_bad_variable): New static
6008 identifiers.
6009
6010 (scm_m_define): Use ASSERT_SYNTAX to signal syntax errors. Prefer
6011 R5RS terminology for the naming of variables. Be more specific
6012 about the kind of error that was detected. Make sure file name,
6013 line number etc. are added to all freshly created expressions.
6014 Avoid unnecessary consing when creating the memoized code.
6015
609a8b86
DH
60162003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
6017
6018 * eval.c (s_extra_expression, s_misplaced_else_clause,
6019 s_bad_cond_clause, s_missing_recipient): New static identifiers.
6020
6021 (s_extra_case_clause): Removed.
6022
6023 (scm_m_case, scm_m_cond): If a clause appears after an else
6024 clause, report a misplaced else clause.
6025
6026 (scm_m_cond): Use ASSERT_SYNTAX to signal syntax errors. Be more
6027 specific about the kind of error that was detected. Handle bound
6028 'else and '=>. Avoid unnecessary consing when creating the
6029 memoized code.
6030
6031 (scm_m_cond, unmemocopy, SCM_CEVAL): Use SCM_IM_ELSE to memoize
6032 the syntactic keyword 'else and SCM_IM_ARROW to memoize the
6033 syntactic keyword '=>.
6034
58a2510b
DH
60352003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
6036
6037 * eval.c (scm_m_case): Allow empty lists of case labels.
6038
2a6f7afe
DH
60392003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
6040
6041 * tags.h (SCM_IM_ELSE, SCM_IM_ARROW): New memoizer codes.
6042
6043 * print.c (scm_isymnames): Add names for the new memoizer codes.
6044
6045 * eval.c (s_missing_clauses, s_bad_case_clause,
6046 s_extra_case_clause, s_bad_case_labels, s_duplicate_case_label,
6047 literal_p): New static identifiers.
6048
6049 (scm_m_case): Use ASSERT_SYNTAX to signal syntax errors. Be more
6050 specific about the kind of error that was detected. Check for
6051 duplicate case labels. Handle bound 'else. Avoid unnecessary
6052 consing when creating the memoized code.
6053
6054 (scm_m_case, unmemocopy, SCM_CEVAL): Use SCM_IM_ELSE to memoize
6055 the syntactic keyword 'else.
6056
e6729603
DH
60572003-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
6058
6059 * eval.c (s_bad_expression, syntax_error_key, syntax_error,
6060 ASSERT_SYNTAX, ASSERT_SYNTAX_2): New static identifiers.
6061
6062 (scm_m_and): Use ASSERT_SYNTAX to signal syntax errors. Avoid
6063 unnecessary consing when creating the memoized code.
6064
9ddeb776
KR
60652003-10-09 Kevin Ryde <user42@zip.com.au>
6066
6067 * numbers.c (scm_inexact_to_exact): Don't depend on what double->long
6068 cast gives for values bigger than a long, or for nan or inf.
6069
df5af69a
DH
60702003-10-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
6071
6072 * smob.h (scm_make_smob_type): Made the declaration match the
6073 definition.
6074
da0e6c2b
MV
60752003-10-07 Marius Vollmer <mvo@zagadka.de>
6076
6077 * goops.c, objects.h, smob.c, smob.h: Make type names char
6078 const * instead of char *. Thanks to Paul Jarc!
6079
591924eb
KR
60802003-10-02 Kevin Ryde <user42@zip.com.au>
6081
ff6ea7b9 6082 * strports.c (scm_call_with_output_string): scm_get_output_string
591924eb
KR
6083 rather than scm_strport_to_string, so as to guard against the port
6084 having been closed by the called procedure. Reported by Nic Ferrier.
6085
f03314f9
DH
60862003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
6087
6088 * numbers.h (SCM_INEXACTP): Removed uses of SCM_TYP16S.
6089
6090 * tags.h, deprecated.h (SCM_TYP16S): Deprecated and moved from
6091 tags.h to deprecated.h.
6092
534c55a9
DH
60932003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
6094
6095 This set of patches introduces a new tc7 code scm_tc7_number for
6096 numbers. Bignums, reals and complex numbers are turned from smobs
6097 into subtypes of scm_tc7_number.
6098
6099 * tags.h (scm_tc7_number): New.
6100
6101 * eq.c (scm_equal_p), eval.c (SCM_CEVAL), evalext.c
6102 (scm_self_evaluating_p), gc-card.c (scm_i_sweep_card), gc-mark.c
6103 (scm_gc_mark_dependencies), goops.c (create_smob_classes), hash.c
6104 (scm_hasher), numbers.c, numbers.h (SCM_NUMP), objects.c
6105 (scm_class_of), print.c (scm_iprin1), smob.c
6106 (scm_smob_prehistory): Don't handle bignums, reals and complex
6107 numbers as subtypes of scm_tc7_smob any more.
6108
6109 * numbers.h, tags.h (scm_tc16_big, scm_tc16_real,
6110 scm_tc16_complex): Moved definitions from tags.h to numbers.h.
6111
29c4382a
DH
61122003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
6113
6114 * numbers.c (scm_make_complex), gc-card.c (scm_i_sweep_card): Use
6115 sizeof (scm_t_complex) to determine the memory size of the
6116 malloc'd area for complex numbers.
6117
47ae1f0e
DH
61182003-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
6119
6120 * numbers.c (scm_bigequal): Fixed.
6121
859b6b2f
MV
61222003-09-16 Marius Vollmer <mvo@zagadka.de>
6123
6124 * stime.c (scm_current_time): 'time' does not set errno so don't
6125 use SCM_SYSERROR for reporting errors.
6126
e17d318f
DH
61272003-09-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
6128
6129 This set of patches eliminates the dependency between the
6130 implementation of evaluator specific memoization codes and special
6131 constants like #f, '() etc. ('flags'), which are not evaluator
6132 specific. The goal is to remove definitions of evaluator
6133 memoization codes completely from the public interface. This will
6134 make it possible to experiment more freely with optimizations of
6135 guile's internal representation of memoized code.
6136
6137 * objects.c (scm_class_of): Eliminate dependency on SCM_ISYMNUM.
6138
6139 * print.c (iflagnames): New array, holding the printed names of
6140 guile's special constants ('flags').
6141
6142 (scm_isymnames): Now holds only the printed names of the
6143 memoization codes.
6144
6145 (scm_iprin1): Separate the handling of memoization codes and
6146 guile's special constants.
6147
6148 * tags.h (scm_tc9_flag, SCM_ITAG9, SCM_MAKE_ITAG9, SCM_ITAG9_DATA,
6149 SCM_IFLAGNUM): new
6150
6151 (scm_tc8_char, scm_tc8_iloc, SCM_BOOL_F, SCM_BOOL_T,
6152 SCM_UNDEFINED, SCM_EOF_VAL, SCM_EOL, SCM_UNSPECIFIED, SCM_UNBOUND,
6153 SCM_ELISP_NIL, SCM_IM_DISPATCH, SCM_IM_SLOT_REF,
6154 SCM_IM_SLOT_SET_X, SCM_IM_DELAY, SCM_IM_FUTURE,
6155 SCM_IM_CALL_WITH_VALUES, SCM_IM_NIL_COND, SCM_IM_BIND): Changed
6156 values.
6157
6158 (SCM_IFLAGP): SCM_IFLAGP now only tests for flags.
6159
6160 (SCM_IFLAGP, SCM_MAKIFLAG, SCM_IFLAGNUM): Generalized to use the
6161 tc9 macros and scm_tc9_flag.
6162
eecac806
MV
61632003-09-15 Marius Vollmer <mvo@zagadka.de>
6164
6165 * posix.c (scm_setgroups): Check that the gid list is not too
6166 long. Thanks to Paul Jarc!
6167
22f2cf2d
DH
61682003-09-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
6169
6170 * tags.h: Reduced the number of short instructions from 14 to 13.
6171 The typecode of the former 14th short instruction is now used to
6172 represent long instructions. Changed some comments to reflect
6173 this fact.
6174
6175 (SCM_MAKISYM): ISYMs get a new tc7 code, namely the one that was
6176 previously used by SCM_IM_DEFINE.
6177
6178 (SCM_IM_DEFINE): Turned into a long instruction.
6179
6180 * eval.c (unmemocopy, SCM_CEVAL): Treat SCM_IM_DEFINE as a long
6181 instruction.
6182
6183 * eval.c (SCM_CEVAL): Since characters and iflags have now a tc7
6184 code that is separate from all instructions, one level of dispatch
6185 for long instructions can be eliminated.
6186
6187 * print.c (scm_isymnames): Removed some commented code.
6188
62f548e1
MV
61892003-09-12 Marius Vollmer <mvo@zagadka.de>
6190
97a61c5f
MV
6191 * __scm.h (SCM_FENCE): Use __memory_barrier with the Intel
6192 compiler on IA64.
6193
50e0ba57
MV
6194 * hashtab.h (scm_tc16_hashtable): Added "extern" declaration.
6195
6196 * modules.c (scm_module_reverse_lookup): Check that the obarray
6197 really is a hashtable and do nothing if not.
6198
62f548e1
MV
6199 * inline.h: Use "extern inline" only with GCC. Use "static
6200 inline" else.
6201
0d5e3480
DH
62022003-09-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6203
6204 * numbers.h (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Removed uses
6205 of SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
6206
6207 * numbers.h, deprecated.h (SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP,
6208 SCM_SLOPPY_COMPLEXP): Deprecated and moved from numbers.h to
6209 deprecated.h.
6210
6b412e91
DH
62112003-09-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6212
6213 * eq.c (scm_eqv_p, scm_equal_p): Removed uses of
6214 SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
6215
6216 * eq.c (scm_eqv_p, scm_equal_p): Reordered comparisons from
6217 0.0==some_expression to some_expression==0.0. The latter is
6218 better readable. The former is preferred by some people, since it
6219 leads to a compiler error when confusing == with =. However, when
6220 using gcc, a warning will be issued if in an if-statement an
6221 assigment appears. Since many Guile developers are using gcc,
6222 such errors will not remain unnoticed anyway. We can therefore
6223 focus on better readability.
6224
7e3b25bf
DH
62252003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6226
6227 * tags.h: Added description of Guile's type system. Removed some
6228 old and misleading comments.
6229
3ea39242
DH
62302003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6231
6232 * unit.c (scm_cvref): Eliminate unnecessary uses of SCM_NIMP,
6233 SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
6234
5d7d39ff
DH
62352003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6236
6237 * numbers.h (SCM_MAKINUM): Define in terms of scm_tc2_int.
6238
6239 (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Define in terms of the
6240 respective SLOPPY macro.
6241
baa84a20
DH
62422003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6243
6244 * eq.c (scm_equal_p): Use SCM_TYP7 to check if an object is of
6245 type string, not SCM_TYP7S.
6246
ba15f500
KR
62472003-09-03 Kevin Ryde <user42@zip.com.au>
6248
6249 * numbers.c (scm_lognot): Correction to docstring, ones-complement not
6250 2s-complement.
6251
53bb8782
KR
6252 * stime.c (scm_strptime): Add comment about glibc strptime %s and
6253 current timezone requiring SCM_DEFER_INTS.
6254
defdc4b4
NJ
62552003-08-30 Neil Jerram <neil@ossau.uklinux.net>
6256
6257 * script.c (scm_compile_shell_switches): Make -s switch optional
6258 if file to be loaded does not begin with a `-'. (Thanks to Aaron
6259 VanDevender for the patch!)
6260
0f008a15
KR
62612003-08-30 Kevin Ryde <user42@zip.com.au>
6262
6263 * numbers.c (scm_lognot): Rewrite using ~ and mpz_com, for directness
6264 and to have non-integer types rejected as per other logical funcs.
241d9cea 6265
438a3ba1
KR
62662003-08-28 Kevin Ryde <user42@zip.com.au>
6267
6268 * gc.h (scm_remember_upto_here_1): Revise comments on the asm form.
6269
98dceb37
KR
62702003-08-23 Kevin Ryde <user42@zip.com.au>
6271
6272 * simpos.c (scm_system): Remove SCM_DEFER_INTS, system() should be
6273 thread safe, and could take a long time too.
6274
1fa79a38
KR
62752003-08-22 Kevin Ryde <user42@zip.com.au>
6276
6277 * numbers.c (scm_difference): Correction to bignum - negative inum.
6278
d97f9b42
KR
62792003-08-14 Kevin Ryde <user42@zip.com.au>
6280
6281 * gc.h (scm_remember_upto_here_1, scm_remember_upto_here_2)
6282 [__GNUC__]: Use volatile asm macros rather than a function call.
6283 * gc.c (scm_remember_upto_here_1, scm_remember_upto_here_2): Undefine
6284 macros while defining functions.
6285
6286 * simpos.c (getenv): Use <stdlib.h> for prototype.
6287 (scm_system): In docstring, refer to status:exit-val rather than
6288 "functions above".
6289
b9052fcc
KR
62902003-08-09 Kevin Ryde <user42@zip.com.au>
6291
6292 * srcprop.c (scm_source_properties): Return plist from hash if it's a
6293 list set by source-properties! rather than an SRCPROPS object,
6294
8e5b4b9e
KR
62952003-07-29 Kevin Ryde <user42@zip.com.au>
6296
6297 * properties.c (scm_primitive_property_ref): In docstring, note
6298 parameters to not-found-proc, use hyphens rather than underscores for
6299 that parameter name.
6300 (scm_primitive_property_set_x): In docstring, VAL is the value
6301 parameter not CODE.
241d9cea 6302
20703ac4
MV
63032003-07-27 Marius Vollmer <mvo@zagadka.de>
6304
c6ccee34
MV
6305 * print.c (scm_print_symbol_name): handle more weird characters by
6306 escaping the symbol name properly. Thanks to Paul Jarc!
6307
2f4931bf
MV
6308 * posix.h (scm_setgroups): New prototype.
6309 * posix.c (scm_setgroups): New. Thanks to Paul Jarc!
6310 (scm_getgroups): Handle groups ids that don't fit into a fixnum.
6311 Don't use SCM_WRITABLE_VELTS.
241d9cea 6312
265c456f
MV
6313 * gc.h (SCM_GC_SET_CELL_BVEC): New.
6314 * gc-card.c (scm_i_init_card_freelist): Use it. Thanks to
6315 Matthias Koeppe!
6316
20703ac4
MV
6317 * __scm.h (SCM_C_INLINE_KEYWORD): New.
6318 * numbers.c: Use it in place of SCM_C_INLINE so that the code
6319 compiles when SCM_C_INLINE is undefined.
6320
59c4bb82
DH
63212003-07-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
6322
6323 * __scm.h: Reformulated the architecture and compiler properties
6324 in terms of properties of scm_t_bits and SCM variables rather than
6325 in terms of c standard types. This is since it is not known which
6326 of the standard types scm_t_bits and SCM variables will be defined
6327 to.
6328
d7850c8d
KR
63292003-07-24 Kevin Ryde <user42@zip.com.au>
6330
6331 * numbers.c (scm_angle): Use scm_flo0 for non-negative inum, bignum
6332 and real.
6333
8a0c514f
KR
63342003-07-18 Kevin Ryde <user42@zip.com.au>
6335
6336 * numbers.c (scm_product): In complex * bignum, correction to
6337 REAL/IMAG fetch, x is the complex, not y.
6338
0aacf84e
MD
63392003-07-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6340
6341 * numbers.c (scm_odd_p, scm_even_p): Bugfix: Treat result of
6342 scm_inf_p test as Scheme values.
6343 (scm_sum): Bugfix: Normalize bignum created from a negative bignum
6344 and a positive inum.
6345 Use GNU indentation style.
6346
192de9a4
DH
63472003-07-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
6348
6349 * values.c (scm_values): Build lists of length 1 by using
6350 scm_list_1 instead of using scm_cons.
6351
bbb4438a
KR
63522003-07-10 Kevin Ryde <user42@zip.com.au>
6353
b58c85ce
KR
6354 * deprecation.c (scm_c_issue_deprecation_warning_fmt): Add va_end.
6355 * list.c (scm_list_n): Ditto.
6356
bbb4438a
KR
6357 * gc-malloc.c (scm_gc_realloc): Define "ptr" at start of function.
6358
287f8ad1
KR
63592003-07-08 Matthias Koeppe <mkoeppe@merkur.math.uni-magdeburg.de>
6360
6361 * tags.h (scm_t_bits, scm_t_signed_bits, etc): Avoid solaris empty
6362 defines of INTPTR_MAX and UINTPTR_MAX, combine conditionals for
6363 scm_t_bits and scm_t_signed_bits to avoid any chance of one and not
6364 the other using intptr_t.
6365
005d2366
KR
63662003-07-08 Kevin Ryde <user42@zip.com.au>
6367
0aacf84e 6368 * numbers.c (scm_make_polar): Use sincos, when available.
005d2366
KR
6369 (scm_magnitude): Use hypot.
6370
6371 * ports.c (scm_char_ready_p, scm_peek_char): In docstrings, don't use
6372 @footnote since it doesn't go through to guile-procedures.txt.
6373
6374 * threads.c (scm_call_with_new_thread): In docstring, use "( )"
6375 outside @var to quieten makeinfo, and use @code.
6376
cbfe8e62
HWN
63772003-07-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6378
6379 * gc-malloc.c (decrease_mtrigger): new function
6380 (increase_mtrigger): new function, separate debug registering and
6381 mtrigger administration.
6382 (scm_gc_realloc): bugfix: do mtrigger administration before the
6383 actual realloc, for the realloc might invalidate a GC-d segment of
6384 memory. Thanks to Sam Hocevar for pointing this out.
6385 (scm_gc_realloc): use scm_malloc_reregister instead of
6386 unregistering and registering in sequence.
6387
aeb4c2e1
HWN
63882003-07-03 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6389
241d9cea 6390 * __scm.h (SCM_ASSERT): change "else" expansion to "do { } while (0)"
aeb4c2e1 6391
4c27f8d2
HWN
63922003-07-02 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6393
6394 * __scm.h (SCM_ASRTGO): add "else" to macro expansions with if
6395 clauses.
241d9cea 6396
983e697d
MV
63972003-06-29 Marius Vollmer <mvo@zagadka.de>
6398
6399 * deprecated.h (SCM_OPDIRP, scm_fport, scm_option, scm_srcprops,
6400 scm_srcprops_chunk, scm_info_frame, scm_stack, scm_array,
6401 scm_array_dim, SCM_ARRAY_CONTIGUOUS, SCM_FUNC_NAME, SCM_WTA,
6402 RETURN_SCM_WTA, SCM_VALIDATE_NUMBER_COPY,
6403 SCM_VALIDATE_NUMBER_DEF_COPY, SCM_VALIDATE_OPDIR): Re-added from
6404 the release_1_6 branch.
6405
78b6566e
SJ
64062003-06-25 Stefan Jahn <stefan@lkcc.org>
6407
6408 * continuations.c: Redeclaration of getcontext() via the
6409 __asm__ ("getcontext") directive.
6410
241d9cea 6411 * continuations.h: Include <ucontext.h> instead of
78b6566e
SJ
6412 <sys/ucontext.h>.
6413
1ebb8497
KR
64142003-06-21 Kevin Ryde <user42@zip.com.au>
6415
6416 * numbers.c (_GNU_SOURCE): #define, to get C99 things.
6417 (scm_asinh, scm_acosh, scm_atanh, scm_truncate, $asinh, $acosh,
6418 $atanh, truncate): Use C library asinh, acosh, atanh and trunc, when
6419 available.
6420 (scm_inexact_to_exact): Expand isfinite to its definition !xisinf.
6421 (isfinite): Remove, conflicts with C99 isfinite().
6422
fbf85ba4
MV
64232003-06-19 Marius Vollmer <mvo@zagadka.de>
6424
6425 * deprecated.h, deprecated.c (scm_strhash, scm_sym2ovcell_soft,
6426 scm_sym2ovcell, scm_intern_obarray_soft, scm_intern_obarray,
6427 scm_symbol_value0, scm_string_to_obarray_symbol scm_intern_symbol,
6428 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
6429 scm_symbol_bound_p, scm_symbol_set_x, scm_gentemp): Re-added from
6430 the release_1_6 branch.
6431
fcc5d734
SJ
64322003-06-14 Stefan Jahn <stefan@lkcc.org>
6433
6434 * threads.h: Redefined scm_getspecific() and scm_setspecific()
6435 to be functions instead of macros.
6436
6437 * threads.c: Conditionalized inclusion of <sys/time.h> and
6438 <unistd.h>.
6439 (scm_getspecific, scm_setspecific): Made these two function
6440 real part of the API.
6441
241d9cea 6442 * posix.c (s_scm_putenv): Added some code to make a
fcc5d734
SJ
6443 (putenv "FOO="), i.e. setting an empty string, work also on
6444 Win32 systems. Thanks to Kevin Ryde for the proposal.
6445
c3ae8e07
KR
64462003-06-12 Kevin Ryde <user42@zip.com.au>
6447
75b14838
KR
6448 * posix.c (scm_putenv): Free temporary ptr in mingw unset. Add
6449 freebsd to comment about need to use unsetenv.
c3ae8e07 6450
9d9fa092
MV
64512003-06-02 Marius Vollmer <mvo@zagadka.de>
6452
6453 * ports.c (scm_peek_char): Safe the column of the port around the
6454 getc/ungetc calls. Thanks to Dr. Peter Ivanyi!
6455
f2478375
KR
64562003-06-07 Kevin Ryde <user42@zip.com.au>
6457
6458 * tags.h: Use inttypes.h and stdint.h when available, for INTPTR_MAX
6459 and friends required by scm_t_bits setups.
6460
6375e040
DH
64612003-06-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6462
6463 * tags.h (scm_tc2_int): Added.
6464
6465 * tags.h (scm_tc3_int_1, scm_tc3_int_2): Expressed in terms of
6466 scm_tc2_int.
6467
6468 * tags.h (scm_tcs_cons_imcar, scm_tcs_cons_nimcar, scm_tcs_struct,
6469 scm_tcs_closures): Hard coded values replaced by symbolic ones.
6470
f5c6ec2f
DH
64712003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
6472
6473 * eval.c: Partially undid my patch from 2003-05-31. This patch
6474 caused the segfault referenced in the previous changelog entry.
6475
47dbd81e
DH
64762003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
6477
6478 * tags.h: Fixed comment about the immediate type code layout.
6479
6480 * eval.c: Fixed handling of non-special instructions. Without
6481 this patch, guile will segfault on (#\0) and similar instructions.
6482
3ec52c51
KR
64832003-06-05 Kevin Ryde <user42@zip.com.au>
6484
6485 * numbers.c (scm_max, scm_min): For inum, bignum and real, if other
6486 operand is NaN, then return NaN. Also avoid passing NaN to mpz_cmp_d.
6487
e418bd7c
KR
6488 * read.c (scm_input_error): Pass arg list parameter to scm_error_scm,
6489 rather than SCM_EOL. Needed by "Unknown # object" case in scm_lreadr.
241d9cea 6490
d0624e39
DH
64912003-06-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6492
6493 * __scm.h, gc-card.c (SCM_DEBUG_DEBUGGER_SUPPORT,
6494 SCM_DEBUG_DEBUGGING_SUPPORT): Renamed macro
6495 SCM_DEBUG_DEBUGGER_SUPPORT to SCM_DEBUG_DEBUGGING_SUPPORT and
6496 generalized it to apply not only to C level functions but also to
6497 scheme level functions.
6498
6499 * debug.c, debug.h, eval.c (make-iloc, scm_make_iloc, iloc?,
6500 scm_iloc_p, dbg-make-iloc, scm_dbg_make_iloc, dbg-iloc?,
6501 scm_dbg_iloc_p): Moved functions scm_make_iloc, scm_iloc_p to
6502 eval.c, made them available under SCM_DEBUG_DEBUGGING_SUPPORT == 1
6503 only and renamed them to scm_dbg_make_iloc, scm_dbg_iloc_p,
6504 respectively.
6505
6506 * deprecated.h, eval.c, eval.h (SCM_ILOC00, SCM_IDINC,
6507 SCM_IDSTMSK): Deprecated. The macro definitions are moved from
6508 eval.h into eval.c and a copy is placed into deprecated.h.
6509
6510 * eval.c, eval.h (SCM_MAKE_ILOC): Removed from eval.h and placed
6511 into eval.c. This definition was not part of the API in any
6512 officially released version of guile and thus does not need to go
6513 through a phase of deprecation.
6514
e90c3a89
DH
65152003-06-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
6516
d0624e39
DH
6517 * deprecated.c, deprecated.h, eval.c, eval.h (scm_s_expression,
6518 scm_s_test, scm_s_body, scm_s_bindings, scm_s_variable,
6519 scm_s_clauses, scm_s_formals): Deprecated. In eval.c the
e90c3a89
DH
6520 definitions are make static and renamed from scm_s_xxx to s_xxx.
6521 In deprecated.c the original definitions are copied.
6522
d0624e39
DH
6523 * deprecated.h, eval.c, eval (SCM_EVALIM2, SCM_EVALIM, SCM_XEVAL,
6524 SCM_XEVALCAR): Deprecated. The macro definitions are moved from
e90c3a89
DH
6525 eval.h into eval.c and a copy (slightly modified to work in user
6526 code) is placed into deprecated.h.
6527
6528 * eval.c: Use the local static s_xxx definitions instead of the
6529 scm_s_xxx definitions throughout.
6530
14b18ed6
DH
65312003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
6532
6533 This set of patches separates the representation of the cxr family
6534 of functions (car, cdr etc.) from the dsubr family of functions
6535 (i. e. functions that take a double precision floating point
6536 argument). Further, the algorithm for handling the cxr function
6537 is improved.
6538
6539 * eval.c (SCM_CEVAL, SCM_APPLY, scm_trampoline_1), numbers.c
6540 (scm_asinh, scm_acosh, scm_atanh, scm_truncate, scm_round, floor,
6541 ceil, sqrt, fabs, exp, log, sin, cos, tan, asin, acos, atan, sinh,
6542 cosh, tanh), objects.c (scm_class_of), procprop.c
6543 (scm_i_procedure_arity), ramap.c (scm_array_map_x), tags.h
6544 (scm_tc7_dsubr, scm_tcs_subrs): Introduce scm_tc7_dsubr as new
6545 typecode for the dsubr family of functions.
6546
6547 * ramap.c (ramap_cxr, ramap_dsubr): Renamed ramap_cxr to
6548 ramap_dsubr.
6549
6550 * eval.c (SCM_CEVAL, SCM_APPLY, call_cxr_1), pairs.c
6551 (scm_init_pairs): Make use of the (now usable) second cell element
6552 of a scm_tc7_cxr function to implement the cxr family of functions
6553 more efficiently.
6554
2ca0d207
DH
65552003-05-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
6556
6557 * eval.c (SCM_CEVAL, SCM_APPLY, scm_trampoline_0,
6558 scm_trampoline_1, scm_trampoline_2): Postpone error cases to the
6559 end of an if-else-if-sequence of checks.
6560
9a069bdd
DH
65612003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
6562
6563 * eval.c (SCM_CEVAL): Improved readability of call-with-values
6564 execution. Generalize apply_closure to apply_proc and use that
6565 for call-with-values.
6566
e910e9d2
DH
65672003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
6568
6569 * eval.c (SCM_CEVAL): Avoid one level of indirection when applying
6570 a non closure.
6571
1e498fbd
SJ
65722003-05-30 Stefan Jahn <stefan@lkcc.org>
6573
241d9cea 6574 * posix.c (s_scm_putenv): Use the new HAVE_UNSETENV
1e498fbd
SJ
6575 appropriately for mingw32 hosts.
6576
6577 * numbers.h: Defining copysign(), isnan() and finite() to
6578 be prefixed by a single '_' for mingw32 hosts.
6579
c47e2599
KR
65802003-05-30 Kevin Ryde <user42@zip.com.au>
6581
6582 * numbers.c (z_negative_one): New variable.
6583 (scm_init_numbers): Initialize it.
6584 (scm_logcount): Use it and mpz_hamdist to count zeros for negatives.
6585
2e945bcc
SJ
65862003-05-29 Stefan Jahn <stefan@lkcc.org>
6587
6588 * win32-dirent.c: Use malloc() instead of scm_malloc().
6589
6590 * stime.c (s_scm_strftime): Add a type cast to avoid compiler
6591 warning.
6592
6593 * posix.c (s_scm_putenv): Disable use of unsetenv() for the
6594 mingw32 build.
6595
6596 * modules.c (s_scm_module_import_interface): Renamed local
6597 variable interface to _interface. Seems like 'interface'
6598 is a special compiler directive for the mingw32 compiler.
6599
6600 * mkstemp.c: Provide prototype to avoid compiler warning.
6601
6602 * load.c (s_scm_search_path): Fixed absolute and relative
6603 path detections for native Windows platforms.
6604
241d9cea 6605 * gc.h, threads.h: Export some more symbols using SCM_API (necessary
2e945bcc
SJ
6606 to build on mingw32).
6607
241d9cea 6608 * gc-freelist.c ("s_scm_map_free_list",
2e945bcc
SJ
6609 "s_scm_gc_set_debug_check_freelist_x"): Fixed use of FUNC_NAME.
6610
241d9cea 6611 * fports.c (fport_fill_input): Disable use of
2e945bcc
SJ
6612 fport_wait_for_input() on Win32 platforms.
6613
6614 * filesys.c (s_scm_basename): Fixed __MINGW32__ code.
6615
6616 * Makefile.am: Modified some rules for cross compiling.
6617
ddd8f927
DH
66182003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
6619
6620 * eval.c (SCM_CEVAL): In case of an application, all checks for a
6621 proper function object and the correct number of arguments are now
6622 performed in the application part of SCM_CEVAL.
6623
6624 (scm_badformalsp): Removed.
6625
f8ba2197
DH
66262003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
6627
6628 * deprecated.c (scm_read_and_eval_x): Fixed C99-ism.
6629
79f55b7c
MD
66302003-05-22 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6631
a502595f
MD
6632 * num2integral.i.c (NUM2INTEGRAL): Avoid warning about conditional
6633 always being false by inserting preprocessor conditional. (Thanks
6634 to Bruce Korb.)
6635
79f55b7c
MD
6636 * __scm.h (SCM_STACK_PTR): New macro. (Cast argument through
6637 (void *) in order to avoid an aliasing warning; thanks to Bruce
6638 Korb.)
6639
6640 * stackchk.h (SCM_STACK_OVERFLOW_P): Use SCM_STACK_PTR.
6641
6642 * threads.c (suspend, launch_thread, scm_threads_mark_stacks): Use
6643 SCM_STACK_PTR.
6644
6645 * threads.c (scm_threads_mark_stacks): Bugfix: Changed
6646 thread->base --> t->base.
6647
6648 * eval.c (SCM_CEVAL): Don't cast argument of SCM_STACK_OVERFLOW_P.
6649
47dee228
MV
66502003-05-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6651
6652 * deprecated.h, deprecated.c (scm_makstr, scm_makfromstr,
6653 scm_variable_set_name_hint, scm_builtin_variable,
6654 scm_internal_with_fluids, scm_make_gsubr,
6655 scm_make_gsubr_with_generic, scm_create_hook, SCM_LIST0,
6656 SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5, SCM_LIST6,
6657 SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify, scm_sloppy_memq,
85494587
MV
6658 scm_sloppy_memv, scm_sloppy_member, scm_read_and_eval_x,
6659 scm_subr_entry, SCM_SUBR_DOC, scm_make_subr,
6660 scm_make_subr_with_generic, scm_make_subr_opt,
6661 scm_call_catching_errors, scm_make_smob_type_mfpe,
6662 scm_set_smob_mfpe, scm_strprint_obj, scm_read_0str, scm_eval_0str,
6663 SCM_CHARS, SCM_UCHARS, SCM_LENGTH): Re-added from the release_1_6
6664 branch. Some have been slightly rewritten.
6665 (scm_i_object_chars, scm_i_object_length): New, to support
6666 SCM_CHARS, SCM_UCHARS, and SCM_LENTH.
241d9cea 6667
e681d187
DH
66682003-05-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
6669
6670 * eval.c (scm_m_do, unmemocopy, SCM_CEVAL): Reversed order of
6671 names and inits in the memoized code of do.
6672
7e59d9d4
MD
66732003-05-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6674
6675 * c-tokenize.lex (yyget_lineno, yyget_in, yyget_out, yyget_leng,
6676 yyget_text, yyset_lineno, yyset_in, yyset_out, yyget_debug,
6677 yyset_debug, yylex_destroy): Added prototypes (otherwise we'll get
6678 a compilation error if error-on-warning is enabled).
6679
9950a42c
MV
66802003-05-17 Marius Vollmer <mvo@zagadka.de>
6681
6682 * c-tokenize.lex: Gobble up complete lines after a '#'. This
6683 removes preprocessor directives from the snarfage that might
6684 otherwise confuse us. These directives appear when compiling with
6685 "-g3", for example.
6686
0068984b
HWN
66872003-05-16 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6688
26e68795
HWN
6689 * ChangeLog: add my surname
6690
0068984b
HWN
6691 * srcprop.c (scm_finish_srcprop): use
6692 scm_gc_register_collectable_memory()
6693 (scm_make_srcprops): idem.
6694
131805f0
HWN
66952003-05-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6696
6697 * gc-malloc.c (scm_gc_register_collectable_memory): avoid
6698 wrap-around for scm_mtrigger
6699 (scm_gc_register_collectable_memory): abort on overflowing
6700 scm_mallocated().
6701
d4611024
KR
67022003-05-13 Kevin Ryde <user42@zip.com.au>
6703
6704 * numbers.c (xmpz_cmp_d): New macro, handling infs if gmp doesn't.
6705 (scm_num_eq_p, scm_less_p, scm_max, scm_min): Use it.
6706
7aaf8dc9
MD
67072003-05-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6708
dfd03fb9
MD
6709 * backtrace.c (scm_display_error_message): Introduced fancy
6710 printing with max level 7 and length 10. (Purpose: avoid printing
6711 gigantic objects in error messages.)
6712
6713 * print.c, print.h (scm_i_port_with_print_state): New function.
6714
6715 * print.c (scm_iprin1, scm_printer_apply,
6716 scm_port_with_print_state): Use scm_i_port_with_print_state.
6717 (scm_simple_format): Modified not to destroy print states.
6718 (print_state_mutex): New mutex.
6719 (scm_make_print_state, scm_free_print_state, scm_prin1):
6720 Lock/unlock print_state_mutex.
241d9cea 6721
7aaf8dc9
MD
6722 * deprecated.h (SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK):
6723 Use current names in definitions.
6724
a4d9ffa1
KR
67252003-05-10 Kevin Ryde <user42@zip.com.au>
6726
6727 * numbers.c (scm_num_eq_p, scm_less_p): Don't pass NaN to mpz_cmp_d.
6728
d25e96a4
KR
6729 * numbers.c (scm_integer_length): On negative bignums, adjust
6730 mpz_sizeinbase to account for it looking at absolute value where we
6731 want ones-complement.
6732
6733 * numbers.c (scm_gcd): In bignum/inum, don't pass yy==0 to mpz_gcd_ui
6734 since we're only using the ulong return value, and x might not fit.
6735
5bf6a6f0
DH
67362003-05-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6737
6738 * eval.c, eval.h, read.c, read.h (scm_sym_dot): Moved from eval to
6739 read. This will allow to make the definition in read.c static.
6740
f58c472a
DH
67412003-05-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
6742
6743 * eval.c, eval.h, evalext.c, evalext.h (scm_m_undefine): Moved
6744 from evalext to eval. This will allow to make some of the
6745 definitions in eval.c static.
6746
90382aeb
KR
67472003-05-06 Kevin Ryde <user42@zip.com.au>
6748
6749 * numbers.c (scm_difference): In inum - bignum, handle negative inum.
6750 (scm_logcount): Use mpz_com, not mpz_neg.
6751
3b88ed2a
DH
67522003-05-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
6753
6754 The purpose of this patch is to make guile's internal memoizers
6755 distinguishable from memoizing macros created on the scheme level
6756 or from user provided primitive memoizing macros. The reason is,
6757 that the internal memoizers are the only ones that are allowed to
6758 transform their scheme input into memoizer byte code, while all
6759 other memoizing macros may only transform scheme code into new
6760 scheme code.
6761
6762 To achieve this, a new macro type 'builtin-macro!' is introduced.
6763 Currently, 'builtin-macro!'s are handled as memoizing macros, but
6764 this will change when the memoizer and executor are separated.
6765
6766 * macros.[ch] (scm_i_makbimacro): New.
6767
6768 * macros.h (SCM_BUILTIN_MACRO_P): New.
6769
6770 * macros.c (macro_print, scm_macro_type): Support builtin-macro!s.
6771
6772 * eval.c, goops.c: All of guile's primitive memoizing macros are
6773 primitive builtin-macros now.
6774
6775 * eval.c (scm_macroexp, SCM_CEVAL): Make sure the primitive
6776 builtin-macros are handled equally to memoizing macros.
6777
b0780eb1
MV
67782003-05-04 Marius Vollmer <mvo@zagadka.de>
6779
6780 * throw.c (scm_ithrow): Remove "asm volatile" hack. It used to
6781 work around a bug in GCC 2.95.2 but is now a bug in itself.
6782
1cbf4fe9
MV
67832003-05-02 Marius Vollmer <mvo@zagadka.de>
6784
6785 * deprecated.h (scm_rstate, scm_rng, SCM_SLOPPY_CONSP,
6786 SCM_SLOPPY_NCONSP, scm_tc7_ssymbol, scm_tc7_msymbol,
6787 scm_tcs_symbols): New.
6788
1a61d41b
MV
67892003-04-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6790
096ecbaf
MV
6791 * deprecated.h, deprecated.c (scm_protect_object,
6792 scm_unprotect_object, SCM_SETAND_CAR, SCM_SETOR_CAR,
6793 SCM_SET_AND_CDR, SCM_SET_OR_CDR, SCM_FREEP, SCM_NFREEP,
6794 SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16,
6795 SCM_GCCDR, scm_remember, scm_the_root_module, scm_make_module,
6796 scm_ensure_user_module, scm_load_scheme_module, scm_port,
6797 scm_ptob_descriptor, scm_port_rw_active,
6798 scm_close_all_ports_except): New.
6799
1a61d41b
MV
6800 * ports.c (scm_c_port_for_each): New function, mostly copied from
6801 scm_port_for_each.
6802 (scm_port_for_each): Reimplemented using scm_c_port_for_each.
6803 * ports.h (scm_c_port_for_each): New prototype.
241d9cea 6804
c8e1d354
MD
68052003-04-28 Mikael Djurfeldt <djurfeldt@nada.kth.se>
6806
6807 * eval.c (scm_m_atdispatch): Removed until actually needed. (This
6808 macro was introduced in anticipation of GOOPS method compilation
6809 code.)
6810
6811 * goops.c: Removed binding of @dispatch.
6812
a4aa2134
DH
68132003-04-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
6814
6815 * eval.c, goops.c (@dispatch, @slot-ref, @slot-set!): Move the
6816 instructions that bind the macros on the scheme level back to
6817 goops.c in order to make sure again that the bindings go into the
6818 (oop goops) module and are not visible from the outside.
6819
9fbee57e
DH
68202003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
6821
6822 * eval.c: Non functional change: Separated R5RS and non-R5RS
6823 macros into different sections of the file and ordered the
6824 memoizers alphabetically.
6825
12841895
DH
68262003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
6827
6828 * eval.c (scm_ilookup): Rewritten to improve readability.
6829
6a3f13f0
DH
68302003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
6831
6832 * eval.c (scm_i_call_closure_0, call_closure_1, call_closure_2):
6833 Partially reverted patch from 2003-04-23 in oder to find a better
6834 compromise between readability and debuggability.
6835
b0c5d67b
DH
68362003-04-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
6837
6838 * eval.c, eval.h, goops.c, goops.h (scm_m_atslot_ref,
6839 scm_m_atslot_set_x, scm_m_atdispatch): Move the declarations and
6840 definitions of the special goops memoizers from goops.[ch] to
6841 eval.[ch]. Hmm... it seems that scm_m_atdispatch is not used
6842 throughout guile.
6843
b9ad392e
MD
68442003-04-24 Mikael Djurfeldt <mdj@kvast.blakulla.net>
6845
6846 * ports.c, ports.h (scm_i_port_table_mutex): New mutex.
6847
6848 * fports.c (scm_evict_ports): Lock/unlock scm_i_port_table_mutex.
6849
6850 * ports.c (scm_close_port, scm_flush_all_ports): Ditto.
6851
6852 * ioext.c (scm_fdes_to_ports): Ditto.
6853
6854 * vports.c (scm_make_soft_port): Changed SCM_DEFER/ALLOW_INTS into
6855 lock/unlock scm_i_port_table_mutex.
6856
6857 * strports.c (scm_mkstrport): Ditto.
6858
6859 * ports.c (scm_void_port, scm_port_for_each): Ditto.
6860
6861 * fports.c (scm_fdes_to_port): Ditto.
6862
d0b07b5d
DH
68632003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6864
6865 This set of patches contains no functional changes, only debatable
6866 minor stylistic ones. Still, in order to prepare a patch between
6867 my local copy and the CVS version, I decided to submit the changes
6868 below. Then, the patch will hopefully only contain relevant
6869 modifications :-)
6870
6871 * eval.c (iqq): Added const specifier.
6872
6873 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
6874 Use NULL instead of 0 to indicate that a pointer is returned.
6875 Removed some misleading 'fall through' comments.
6876
6877 * eval.c (scm_i_call_closure_0, call_closure_1, call_closure_2):
6878 Split up long expressions into smaller ones to be more debugging
6879 friendly.
6880
a98e8e98
DH
68812003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6882
6883 * eval.h (SCM_ENTER_FRAME_HDLR, SCM_APPLY_FRAME_HDLR,
6884 SCM_EXIT_FRAME_HDLR): Use SCM_PACK to convert data to a SCM value
6885 rather than casting to SCM.
6886
c178c3a6
DH
68872003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6888
6889 * sort.c, pairs.h: Removed unnecessary includes.
6890
d339981a
DH
68912003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
6892
6893 * sort.c: Replaced hand-made trampline code by the new official
6894 mechanism from eval.c. This fixes a segfault in the new test file
6895 sort.test.
6896
6897 (quicksort, compare_function, scm_restricted_vector_sort_x,
6898 scm_sorted_p, scm_merge, scm_merge_list_x, scm_merge_x,
6899 scm_merge_list_step, scm_sort_x, scm_sort, scm_merge_vector_x,
6900 scm_merge_vector_step, scm_stable_sort_x, scm_stable_sort,
6901 scm_sort_list_x, scm_sort_list): Use trampoline mechanism from
6902 eval.c.
6903
6904 (subr2less, lsubrless, closureless, applyless, scm_cmp_function,
6905 cmp_fun_t): Removed.
6906
6907 (compare_function): Added.
6908
6909 * sort.c (quicksort, SWAP, stack_node): Replaced pointer
6910 arithmetics with index arithmetics. Changed quicksort to work on
6911 an array of SCM values instead of an array of characters. Avoid
6912 bytewise copying of SCM elements. Avoid allocating memory on the
6913 stack with alloca. Fixed some comments.
6914
821f18a4
DH
69152003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6916
6917 * eval.c (EXTEND_ENV): Eliminated.
6918
6919 (unmemocopy, SCM_CEVAL, SCM_APPLY): Use SCM_EXTEND_ENV instead of
6920 EXTEND_ENV.
6921
94fb5a6e
DH
69222003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6923
6924 * __scm.h (SCM_DEBUG_DEBUGGER_SUPPORT): New compile-time option.
6925
6926 * gc.card.c (scm_gc_marked_p): Fixed compiler warning when
6927 compiling with SCM_DEBUG==1 by moving definition behind prototype.
6928
6929 * gc.card.c (scm_dbg_t_list_cell, scm_dbg_t_double_cell,
6930 scm_dbg_gc_marked_p, scm_dbg_gc_get_card, scm_dbg_gc_get_bvec,
6931 scm_t_list_cell_struct, scm_t_list_cell, scm_t_double_cell,
6932 scm_gc_marked_p, scm_gc_get_card, scm_gc_get_bvec): Fixed
6933 functions such that they check if the object is a non-immediate.
6934 Further, renamed identifiers to use the scm_dbg_ prefix and made
6935 their inclusion into the lib dependent of the
6936 SCM_DEBUG_DEBUGGER_SUPPORT compile time option.
6937
fce0b22d
DH
69382003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6939
6940 * __scm.h: Fixed comment about the SCM_DEBUG_TYPING_STRICTNESS
6941 debug option.
6942
1685446c
DH
69432003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6944
821f18a4 6945 * list.c (scm_ilength, scm_last_pair), unif.c (l2ra): Prefer
1685446c
DH
6946 !SCM_CONSP over SCM_NCONSP. Now, guile itself does not include
6947 any calls to SCM_NCONSP any more.
6948
6949 * unif.c (l2ra): Eliminate redundant check.
6950
9ff1720f
DH
69512003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6952
6953 * list.c (scm_cons_star), ramap.c (scm_ra_sum, scm_ra_product,
6954 scm_array_map_x), unif.c (l2ra): Prefer !SCM_NULLP over
6955 SCM_NNULLP. Now, guile itself does not include any calls to
6956 SCM_NNULLP any more.
6957
05b15362
DH
69582003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6959
6960 * eval.c (unmemocopy, SCM_APPLY, scm_map, scm_for_each,
6961 scm_copy_tree): Place assignment expressions which are part of
6962 other expressions into an expression of their own.
6963
0c88d7df
DH
69642003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6965
6966 * goops.c (TEST_CHANGE_CLASS, scm_sys_initialize_object): Don't
6967 compare SCM values with !=.
6968
5cb22e96
DH
69692003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6970
6971 * eval.c, eval.h, evalext.c, evalext.h (scm_sym_setter,
6972 scm_m_generalized_set_x, scm_init_evalext): Move the declaration
6973 and definition of the memoizer for the generalized set! macro from
6974 evalext.[ch] to eval.[ch]. Use the SCM_SYNTAX snarfer macro to
6975 define the macro object.
6976
6977 * eval.c, eval.h (s_set_x, scm_s_set_x, scm_m_set_x,
6978 scm_m_generalized_set_x): Since now scm_s_set_x is only used in
6979 eval.c, it is made static and renamed to s_set_x.
6980
6981 * evalext.c (scm_defined_p, scm_m_undefine): Prefer !SCM_<foo>
6982 over SCM_N<foo>.
6983
a44a9715
DH
69842003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6985
6986 * eval.c, root.h (scm_undefineds, SCM_NUM_PROTECTS, undefineds,
6987 scm_init_eval): Made scm_undefineds static in eval.c, renamed it
6988 to undefineds and registered the object as a permanent object.
6989
6990 * eval.c, eval.h (scm_f_apply, scm_init_eval): Made scm_f_apply
6991 static in eval.c, renamed it to f_apply and registered the object
6992 as a permanent object.
6993
1b43d24c
DH
69942003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
6995
5cb22e96 6996 * eval.c (SCM_BIT7, SCM_BIT8, unmemocopy, SCM_CEVAL): Renamed
1b43d24c
DH
6997 file-local macro SCM_BIT8 to SCM_BIT7, which is more appropriate.
6998
aec16f99
DH
69992003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
7000
7001 * numbers.c (scm_logtest): Fixed argument bug in the call to
7002 mpz_and, which showed up when compiling with SCM_DEBUG defined.
7003
f96460ce
DH
70042003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
7005
7006 * gc-card.c (scm_i_sweep_card, scm_i_init_card_freelist): Fixed
7007 type errors that showed up when compiling with SCM_DEBUG defined.
7008
d0f6ceb8
DH
70092003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
7010
7011 * continuations.c, continuations.h, eval.c, eval.h, extensions.c,
7012 gsubr.c, guile.c, init.c, read.c, root.c, root.h, stackchk.h,
7013 throw.c: Removed uses of DEBUG_EXTENSIONS and DYNAMIC_LINKING to
7014 fix compile errors with --disable-deprecated.
7015
19a7a089
RB
70162003-04-17 Rob Browning <rlb@defaultvalue.org>
7017
7018 * numbers.c (scm_integer_expt): fix case where we were declaring
7019 vars in the middle of a statement block. Thanks to Thamer
7020 Al-Harbash.
7021
47cd67db
MD
70222003-04-17 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7023
0fd7dcd3
MD
7024 * goops.c (TEST_CHANGE_CLASS): Update variable class after class
7025 change.
7026
47cd67db
MD
7027 * eq.c (scm_eqv_p): Turned into a primitive generic.
7028
3b8b889c
RB
70292003-04-16 Rob Browning <rlb@defaultvalue.org>
7030
312006bb
RB
7031 * gc_os_dep.c: Added patch for UnixWare and OpenUNIX support.
7032 Thanks to Boyd Gerber.
7033 Added check for __arm__ in addition to arm for LINUX and copied
7034 __s390__ defines from upstream libgc. Thanks to James Treacy for
7035 reporting the problems.
c7ef2ea1 7036
3b8b889c
RB
7037 * numbers.c (PTRDIFF_MIN): use SCM_CHAR_BIT.
7038
7039 * socket.c: use SCM_CHAR_BIT.
7040
7041 * random.c (scm_c_random_bignum): use SCM_CHAR_BIT.
7042
7043 * num2integral.i.c (NUM2INTEGRAL): use SCM_CHAR_BIT.
7044
43261b39
MD
70452003-04-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7046
7047 * feature.c (scm_init_feature): Always add threads feature.
7048
58241edc
MD
70492003-04-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7050
7051 * goops.c (scm_sys_fast_slot_ref): Use SCM_SLOT instead of
7052 scm_at_assert_bound_ref. (We don't want the unbound check. See
7053 oop/goops/active-slot.scm.)
7054
94e91275
RB
70552003-04-14 Rob Browning <rlb@defaultvalue.org>
7056
7057 * tags.h: scm_t_intptr should have been intptr_t.
7058
3071ea27
RB
70592003-04-13 Rob Browning <rlb@defaultvalue.org>
7060
7061 * __scm.h (SCM_FLUSH_REGISTER_WINDOWS): don't just rely on "sparc"
7062 test. Instead use
7063 #if defined (sparc) || defined (__sparc__) || defined (__sparc)
7064 as gc_os_dep.c suggests is appropriate.
7065
7066 * goops.c (prep_hashsets): make static to match prototype.
7067 (scm_sym_args): SCM_SYMBOL -> SCM_GLOBAL_SYMBOL. Thanks to Albert
7068 Chin.
241d9cea 7069
3071ea27
RB
7070 * c-tokenize.lex: remove trailing comma from enum. Thanks to
7071 Albert Chin.
7072
7073 * gc_os_dep.c: add NetBSD powerpc config info. Thanks to Thomas
7074 Klausner.
7075
21ab2aeb
MD
70762003-04-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7077
7078 * goops.c (scm_sys_prep_layout_x): Instance allocation is now
7079 indicated through extra fields in getters-n-setters.
7080 (scm_add_slot): Adapted to new format of getters_n_setters slot.
7081 (Thanks to Andy Wingo.)
7082
dff96e95
HWN
70832003-02-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7084
7085 * gc-segment.c: add comment
7086
07921c76
RB
70872003-04-07 Rob Browning <rlb@defaultvalue.org>
7088
b5331f10
RB
7089 * debug.h: change "id" arg name to "info_id" to avoid objective-c
7090 clash.
7091
07921c76
RB
7092 * num2integral.i.c (NUM2INTEGRAL): fix bug pointed out by Mikael
7093 and add regression test to standalone/.
7094
70952003-04-06 Rob Browning <rlb@defaultvalue.org>
7096
7097 * strings.c (scm_mem2string): use memcpy rather than by-hand loop.
7098 Thanks to Dale P. Smith.
7099
7100 * random.c: #include gmp.h.
7101 (scm_c_random_bignum): normalize result on return.
7102
7103 * init.c: #include gmp.h.
7104
7105 * numbers.h: remove the gmp.h #include (not needed now).
7106
7107 * posix.h: change occurences of "id" to something else so we don't
7108 cause trouble when included via objective-c (can't hurt, might
7109 help). Still have usage in debug.h, though.
7110
938f6b7c
MD
71112003-04-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7112
372691d8
MD
7113 * random.c (scm_c_random_bignum): Don't generate a random number
7114 equal to m (the second argument of scm_c_random_bignum); only
7115 generate numbers in the range 0 <= r < m.
c5f268f8
MD
7116 (scm_c_default_rstate): Use SCM_VARIABLE_REF to access
7117 scm_var_random_state.
372691d8 7118
938f6b7c
MD
7119 * num2integral.i.c (INTEGRAL2BIG): Put negation of n inside then
7120 clause.
7121
6cdb8c3f
RB
71222003-04-05 Rob Browning <rlb@defaultvalue.org>
7123
938f6b7c 7124 * modules.c (scm_module_import_interface): move declaration of
6cdb8c3f
RB
7125 uses before any code.
7126
15635be5
MD
71272003-04-05 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7128
1ecfd013
MD
7129 * Makefile.am (scmconfig.h): Look for config.h in top_builddir,
7130 not top_srcdir.
7131
15635be5
MD
7132 * hashtab.c (rehash_after_gc): Clear to_rehash list before
7133 processing it in order to avoid an infinite loop.
7134
7135 * print.c (scm_prin1): Remember old state of pstate->writingp.
7136
73be1d9e
MV
71372003-04-05 Marius Vollmer <mvo@zagadka.de>
7138
7139 * Changed license terms to the plain LGPL thru-out.
7140
ad815c06
RB
71412003-04-04 Rob Browning <rlb@defaultvalue.org>
7142
7143 * socket.c (FLIPCPY_NET_HOST_128): new macro.
7144 (ipv6_net_to_num, ipv6_num_to_net, bignum_in_ipv6_range_p):
7145 rewrite to handle GMP bignums.
7146
7147
7148 * random.c (scm_c_random_bignum): rewrite to handle GMP bignums.
7149
7150 * ports.c (scm_getc): minor tweak.
7151
7152 * numbers.h: remove SCM_BIGDIG conditionals, reorganize, and
7153 rewrite to handle GMP bignums.
7154
7155 * numbers.c: rewrite *many* functions to handle GMP bignums.
7156
7157 * num2integral.i.c (NUM2INTEGRAL, INTEGRAL2NUM, INTEGRAL2BIG):
7158 handle GMP bignums.
7159
7160 * num2float.i.c (NUM2FLOAT): handle GMP bignums.
7161
7162 * init.c (check_config): remove SCM_BIGDIG conditionals.
7163 (scm_init_guile_1): test to make sure mpz_t fits in a double_cell.
7164
7165 * gc-card.c ("sweep_card"): handle new mpz_t bignums.
7166
7167 * eval.c: remove SCM_BIGDIG conditionals.
7168
7169 * eq.c (s_scm_eqv_p): scm_i_bigcomp -> scm_i_bigcmp.
7170
6cdb8c3f
RB
71712003-03-31 Rob Browning <rlb@defaultvalue.org>
7172
7173 * Makefile.am (scmconfig.h): change srcdir to builddir. (Thanks
7174 to Kevin Ryde.)
7175
71762003-03-27 Rob Browning <rlb@defaultvalue.org>
7177
7178 * threads.h: fix various preprocessor usages of new public
7179 symbols to expect 0 or 1 values rather than 1 or undefined.
7180 i.e. change #ifdef to #if, etc.
7181
7182 * threads.c: fix various preprocessor usages of new public
7183 symbols to expect 0 or 1 values rather than 1 or undefined.
7184 i.e. change #ifdef to #if, etc.
7185
7186 * tags.h: fix various preprocessor usages of new public
7187 symbols to expect 0 or 1 values rather than 1 or undefined.
7188 i.e. change #ifdef to #if, etc.
7189
7190 * stacks.c: fix various preprocessor usages of new public
7191 symbols to expect 0 or 1 values rather than 1 or undefined.
7192 i.e. change #ifdef to #if, etc.
7193
7194 * stackchk.h: fix various preprocessor usages of new public
7195 symbols to expect 0 or 1 values rather than 1 or undefined.
7196 i.e. change #ifdef to #if, etc.
7197
7198 * stackchk.c: fix various preprocessor usages of new public
7199 symbols to expect 0 or 1 values rather than 1 or undefined.
7200 i.e. change #ifdef to #if, etc.
7201
7202 * sort.c: fix various preprocessor usages of new public
7203 symbols to expect 0 or 1 values rather than 1 or undefined.
7204 i.e. change #ifdef to #if, etc.
7205
7206 * read.c: fix various preprocessor usages of new public
7207 symbols to expect 0 or 1 values rather than 1 or undefined.
7208 i.e. change #ifdef to #if, etc.
7209
7210 * random.c: fix various preprocessor usages of new public
7211 symbols to expect 0 or 1 values rather than 1 or undefined.
7212 i.e. change #ifdef to #if, etc.
7213
7214 * print.c: fix various preprocessor usages of new public
7215 symbols to expect 0 or 1 values rather than 1 or undefined.
7216 i.e. change #ifdef to #if, etc.
7217
7218 * objects.c: fix various preprocessor usages of new public
7219 symbols to expect 0 or 1 values rather than 1 or undefined.
7220 i.e. change #ifdef to #if, etc.
7221
7222 * numbers.h: fix various preprocessor usages of new public
7223 symbols to expect 0 or 1 values rather than 1 or undefined.
7224 i.e. change #ifdef to #if, etc.
7225
7226 * null-threads.c: fix various preprocessor usages of new public
7227 symbols to expect 0 or 1 values rather than 1 or undefined.
7228 i.e. change #ifdef to #if, etc.
7229
7230 * lang.c: fix various preprocessor usages of new public
7231 symbols to expect 0 or 1 values rather than 1 or undefined.
7232 i.e. change #ifdef to #if, etc.
7233
7234 * lang.h: fix various preprocessor usages of new public
7235 symbols to expect 0 or 1 values rather than 1 or undefined.
7236 i.e. change #ifdef to #if, etc.
7237
7238 * iselect.h: fix various preprocessor usages of new public
7239 symbols to expect 0 or 1 values rather than 1 or undefined.
7240 i.e. change #ifdef to #if, etc.
7241
7242 * init.c: fix various preprocessor usages of new public
7243 symbols to expect 0 or 1 values rather than 1 or undefined.
7244 i.e. change #ifdef to #if, etc.
7245
7246 * gh_data.c: fix various preprocessor usages of new public
7247 symbols to expect 0 or 1 values rather than 1 or undefined.
7248 i.e. change #ifdef to #if, etc.
7249
7250 * gh.h: fix various preprocessor usages of new public
7251 symbols to expect 0 or 1 values rather than 1 or undefined.
7252 i.e. change #ifdef to #if, etc.
7253
7254 * gen-scmconfig.c: change most new public symbols to be defined to
7255 0 or 1 rather than being either 1 or undefined.
7256
7257 * gc_os_dep.c: fix various preprocessor usages of new public
7258 symbols to expect 0 or 1 values rather than 1 or undefined.
7259 i.e. change #ifdef to #if, etc.
7260 (STACK_GROWS_DOWN): define to 0 or 1 rather than 1 or undef.
7261
7262 * gc.h: fix various preprocessor usages of new public
7263 symbols to expect 0 or 1 values rather than 1 or undefined.
7264 i.e. change #ifdef to #if, etc.
7265
7266 * gc-card.c: fix various preprocessor usages of new public
7267 symbols to expect 0 or 1 values rather than 1 or undefined.
7268 i.e. change #ifdef to #if, etc.
7269
7270 * gc-mark.c: fix various preprocessor usages of new public
7271 symbols to expect 0 or 1 values rather than 1 or undefined.
7272 i.e. change #ifdef to #if, etc.
7273
7274 * feature.c: fix various preprocessor usages of new public
7275 symbols to expect 0 or 1 values rather than 1 or undefined.
7276 i.e. change #ifdef to #if, etc.
7277
7278 * evalext.c: fix various preprocessor usages of new public
7279 symbols to expect 0 or 1 values rather than 1 or undefined.
7280 i.e. change #ifdef to #if, etc.
7281
7282 * eval.h: fix various preprocessor usages of new public
7283 symbols to expect 0 or 1 values rather than 1 or undefined.
7284 i.e. change #ifdef to #if, etc.
7285
7286 * eval.c: fix various preprocessor usages of new public
7287 symbols to expect 0 or 1 values rather than 1 or undefined.
7288 i.e. change #ifdef to #if, etc.
7289
7290 * eq.c: fix various preprocessor usages of new public
7291 symbols to expect 0 or 1 values rather than 1 or undefined.
7292 i.e. change #ifdef to #if, etc.
7293
7294 * coop.c: fix various preprocessor usages of new public
7295 symbols to expect 0 or 1 values rather than 1 or undefined.
7296 i.e. change #ifdef to #if, etc.
7297
7298 * coop-threads.c: fix various preprocessor usages of new public
7299 symbols to expect 0 or 1 values rather than 1 or undefined.
7300 i.e. change #ifdef to #if, etc.
7301
7302 * coop-pthreads.c: fix various preprocessor usages of new public
7303 symbols to expect 0 or 1 values rather than 1 or undefined.
7304 i.e. change #ifdef to #if, etc.
7305
7306 * coop-defs.h: fix various preprocessor usages of new public
7307 symbols to expect 0 or 1 values rather than 1 or undefined.
7308 i.e. change #ifdef to #if, etc.
7309
7310 * convert.i.c: fix various preprocessor usages of new public
7311 symbols to expect 0 or 1 values rather than 1 or undefined.
7312 i.e. change #ifdef to #if, etc.
7313
7314 * continuations.c: fix various preprocessor usages of new public
7315 symbols to expect 0 or 1 values rather than 1 or undefined.
7316 i.e. change #ifdef to #if, etc.
7317
7318 * _scm.h: fix various preprocessor usages of new public symbols to
7319 expect 0 or 1 values rather than 1 or undefined. i.e. change
7320 #ifdef to #if, etc.
7321
d11d697a
MV
73222003-03-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
7323
9686f86d
MV
7324 * init.c (scm_init_guile_1): Call scm_i_init_deprecated.
7325
7326 * deprecated.c, deprecated.h: New files, to collect deprecated
7327 things in one place.
7328 * Makefile.am: Added them in all the right places.
7329
d11d697a
MV
7330 * Makefile.am (EXTRA_DIST): Added "scmconfig.h.top".
7331 (scmconfig.h): Get "scmconfig.h.top" from $(srcdir) so that VPATH
7332 builds work.
9686f86d
MV
7333 (DOT_X_FILES): Removed "iselect.x".
7334 (DOT_DOC_FILES): Removed "iselect.doc".
241d9cea 7335
e3c0c3b9
RB
73362003-03-25 Rob Browning <rlb@defaultvalue.org>
7337
7338 * win32-socket.h: #include "libguile/__scm.h". Replace usage of
7339 HAVE_WINSOCK2_H with SCM_HAVE_WINSOCK2_H.
7340
7341 * win32-socket.c: #include <config.h> if HAVE_CONFIG_H.
7342
7343 * vports.c: #include <config.h> if HAVE_CONFIG_H.
7344
7345 * unif.c: #include <config.h> if HAVE_CONFIG_H. Replace usage of
7346 HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7347
7348 * threads.h: replace usage of struct timespect with
7349 scm_t_timespec. Replace usage of USE_PTHREAD_THREADS with
7350 SCM_USE_PTHREAD_THREADS. Remove typedef for struct timespec in
7351 favor of scm_t_timespec from scmconfig.h.
7352
7353 * threads.c: move libguile/_scm.h include to the top so we pick up
7354 any critical defines like _GNU_SOURCE early. Replace usage of
7355 struct timespect with scm_t_timespec. Replace usage of
7356 STACK_GROWS_UP with SCM_STACK_GROWS_UP. Replace usage of
7357 USE_PTHREAD_THREADS with SCM_USE_PTHREAD_THREADS.
7358
7359 * threads-plugin.h: replace usage of struct timespect with
7360 scm_t_timespec.
7361
7362 * threads-plugin.c: #include <config.h> if HAVE_CONFIG_H. Replace
7363 usage of struct timespect with scm_t_timespec.
7364
7365 * tags.h: move HAVE_STDINT_H handling to scmconfig.h. Move
7366 HAVE_INTTYPES_H handling to scmconfig.h. #include
7367 "libguile/__scm.h". Rework handling for scm_t_bits,
7368 scm_t_signed_bits, SCM_T_BITS_MAX, SCM_T_SIGNED_BITS_MAX,
7369 SCM_T_SIGNED_BITS_MIN, and SIZEOF_SCM_T_BITS to use scm_t_intptr,
7370 scm_t_uintptr, SCM_SIZEOF_INTPTR_T, and SCM_SIZEOF_UINTPTR_T, and
7371 SCM_SIZEOF_UNSIGNED_LONG. Rename usage of HAVE_ARRAYS to
7372 SCM_HAVE_ARRAYS.
7373
7374 * symbols.c: #include <config.h> if HAVE_CONFIG_H.
7375
7376 * struct.c: #include <config.h> if HAVE_CONFIG_H.
7377
7378 * strports.c: #include <config.h> if HAVE_CONFIG_H.
7379
7380 * strop.c: #include <config.h> if HAVE_CONFIG_H.
7381
7382 * stime.h: move handling of time related headers to scmconfig.h.
7383
7384 * stime.c: #include <config.h> if HAVE_CONFIG_H.
7385
7386 * stacks.c: replace usage of STACK_GROWS_UP with
7387 SCM_STACK_GROWS_UP.
7388
7389 * sort.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
7390 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7391
7392 * socket.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
7393 of uint32 and HAVE_UINT_32 with scm_t_int32.
7394
7395 * smob.c: #include <config.h> if HAVE_CONFIG_H.
7396
7397 * simpos.c: #include <config.h> if HAVE_CONFIG_H.
7398
7399 * script.c: #include <config.h> if HAVE_CONFIG_H.
7400
7401 * scmsigs.c: #include <config.h> if HAVE_CONFIG_H.
7402
7403 * scmconfig.h.top: new file -- preamble for scmconfig.h.
7404
7405 * rw.c: #include <config.h> if HAVE_CONFIG_H.
7406
7407 * regex-posix.c: #include <config.h> if HAVE_CONFIG_H.
7408
7409 * read.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7410
7411 * rdelim.c: #include <config.h> if HAVE_CONFIG_H.
7412
7413 * random.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
7414 of LONG32, LONG64, SIZEOF_LONG, and HAVE_LONG_LONGS with
7415 scm_t_int32, scm_t_int64, and SCM_HAVE_T_INT64. Rename usage of
7416 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7417
7418 * ramap.c: replace usage of HAVE_LONG_LONGS with
7419 "SCM_SIZEOF_LONG_LONG != 0".
7420
7421 * putenv.c: #include <config.h> if HAVE_CONFIG_H. #include
7422 "libguile/scmconfig.h".
7423
7424 * pthread-threads.c: #include <config.h> if HAVE_CONFIG_H.
7425
7426 * print.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7427 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7428
7429 * posix.c: #include <config.h> if HAVE_CONFIG_H.
7430
7431 * ports.c: #include <config.h> if HAVE_CONFIG_H.
7432
7433 * objects.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7434
7435 * numbers.h: replace usage of HAVE_FLOATINGPOINT_H with
7436 SCM_HAVE_FLOATINGPOINT_H. Replace usage of HAVE_IEEEFP_H with
7437 SCM_HAVE_IEEEFP_H. Replace usage of HAVE_NAN_H with
7438 SCM_HAVE_NAN_H. Replace usage of STDC_HEADERS with
7439 SCM_HAVE_STDC_HEADERS. Replace usage of ptrdiff_t with
7440 scm_t_ptrdiff. Replace usage of HAVE_LONG_LONGS with
7441 "SCM_SIZEOF_LONG_LONG != 0".
7442
7443 * numbers.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
7444 of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0". Replace
7445 usage of ptrdiff_t with scm_t_ptrdiff. Replace usage of
7446 SIZEOF_PTRDIFF_T with SCM_SIZEOF_SCM_T_PTRDIFF.
7447
7448 * num2integral.i.c: #include <config.h> if HAVE_CONFIG_H.
7449
7450 * null-threads.h: replace usage of struct timespect with
7451 scm_t_timespec.
7452
7453 * net_db.c: #include <config.h> if HAVE_CONFIG_H.
7454
7455 * mkstemp.c: #include <config.h> if HAVE_CONFIG_H. #include
7456 "libguile/__scm.h". Remove definition of gcc_uint64_t in favor of
7457 scm_t_uint64 and rename usages.
7458
7459 * mallocs.c: #include <config.h> if HAVE_CONFIG_H.
7460
7461 * load.c: #include <config.h> if HAVE_CONFIG_H.
7462
7463 * iselect.h: move handling of time related headers to scmconfig.h.
7464 Rename usage of HAVE_SYS_SELECT_H to SCM_HAVE_SYS_SELECT_H.
7465 Rename usage of HAVE_WINSOCK2_H to SCM_HAVE_WINSOCK2_H. Rename
7466 usage of USE_COOP_THREADS to SCM_USE_COOP_THREADS.
7467
7468 * iselect.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7469 of USE_COOP_THREADS to SCM_USE_COOP_THREADS. Rename usage of
7470 USE_NULL_THREADS to SCM_USE_NULL_THREADS.
7471
7472 * ioext.c: #include <config.h> if HAVE_CONFIG_H.
7473
7474 * inline.h: #include "libguile/__scm.h" at the top. Change code
7475 to use SCM_C_INLINE and SCM_INLINE_C_INCLUDINT_INLINE_H to decide
7476 what to do instead of creating a new public #define. Rename usage
7477 of USE_COOP_THREADS to SCM_USE_COOP_THREADS. Rename usage of
7478 USE_NULL_THREADS to SCM_USE_NULL_THREADS. Rename usage of
7479 USE_COPT_THREADS to SCM_USE_COPT_THREADS.
7480
7481 * inline.c: rearrange handling -- now we just #define
7482 SCM_INLINE_C_INCLUDING_INLINE_H to 1 and #include
7483 "libguile/inline.h". scmconfig.h will define SCM_C_INLINE as
7484 appropriate, and we use that in inline.h along with the above
7485 define to determine how to respond.
7486
7487 * init.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
7488 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7489
7490 * guile.c: #include <config.h> if HAVE_CONFIG_H.
7491
7492 * gh_data.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7493 of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7494
7495 * gh.h: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7496
7497 * gen-scmconfig.h.in: new file -- see gen-scmconfig.c for details.
7498
7499 * gen-scmconfig.c: new file -- see comments in file for details.
7500
7501 * gdbinit.c: #include <config.h> if HAVE_CONFIG_H.
7502
7503 * gc_os_dep.c: #include <config.h> if HAVE_CONFIG_H. Replace
7504 usage of STACK_GROWS_UP with SCM_STACK_GROWS_UP.
7505
7506 * gc.h: replace usage of SIZEOF_LONG with
7507 SCM_SIZEOF_UNSIGNED_LONG. Replace usage of USE_PTHREAD_THREADS
7508 with SCM_USE_PTHREAD_THREADS. Remove SCM_SIZEOF_LONG definition
7509 since we handle that in scmconfig.h now.
7510
7511 * gc.c: #include <config.h> if HAVE_CONFIG_H.
7512
7513 * gc-mark.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7514 of HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of
7515 HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7516
7517 * gc-malloc.c: #include <config.h> if HAVE_CONFIG_H.
7518
7519 * gc-card.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7520 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7521
7522 * fports.c: #include <config.h> if HAVE_CONFIG_H.
7523
7524 * filesys.c: #include <config.h> if HAVE_CONFIG_H.
7525
7526 * feature.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7527 of USE_NULL_THREADS to SCM_USE_NULL_THREADS.
7528
7529 * extensions.c: #include <config.h> if HAVE_CONFIG_H.
7530
7531 * evalext.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7532 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
7533
7534 * eval.c: #include <config.h> if HAVE_CONFIG_H. #include
7535 "libguile/__scm.h" rather than scmconfig.h. Rename usage of
7536 HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS
7537 with "SCM_SIZEOF_LONG_LONG != 0".
7538
7539 * error.c: #include <config.h> if HAVE_CONFIG_H.
7540
7541 * eq.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
7542 HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS
7543 with "SCM_SIZEOF_LONG_LONG != 0".
7544
7545 * deprecation.c: #include <config.h> if HAVE_CONFIG_H.
7546
7547 * coop.c: replace usage of struct timespect with scm_t_timespec.
7548 #include <config.h> if HAVE_CONFIG_H.
7549
7550 * coop-threads.c: #include "libguile/_scm.h" early. Replace
7551 usage of struct timespect with scm_t_timespec. Replace usage of
7552 STACK_GROWS_UP with SCM_STACK_GROWS_UP.
7553
7554 * coop-pthreads.c: #include "libguile/_scm.h" early. Replace
7555 usage of struct timespect with scm_t_timespec. Replace usage of
7556 STACK_GROWS_UP with SCM_STACK_GROWS_UP.
7557
7558 * coop-defs.h: move handling of time related headers to
7559 scmconfig.h. Add #include "libguile/__scm.h". Rename usage of
7560 HAVE_WINSOCK2_H to SCM_HAVE_WINSOCK2_H. Replace usage of struct
7561 timespect with scm_t_timespec.
7562
7563 * convert.i.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7564
7565 * convert.h: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7566
7567 * convert.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
7568 of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
7569
7570 * continuations.c: move libguile/_scm.h include to the top so we
7571 pick up any critical defines like _GNU_SOURCE early.
7572
7573 * backtrace.c: #include <config.h> if HAVE_CONFIG_H.
7574
7575 * async.c: #include <config.h> if HAVE_CONFIG_H.
7576
7577 * alloca.c: #include <config.h> if HAVE_CONFIG_H.
7578
7579 * _scm.h: #include <config.h> if HAVE_CONFIG_H.
7580 Rename usage of USE_PTHREAD_THREADS to SCM_USE_PTHREAD_THREADS.
7581
7582 * __scm.h: move libguile/scmconfig.h include up to the top, so
7583 we're sure to pick up any critical defines like _GNU_SOURCE early.
7584 #include <limits.h> removed in favor of scmconfig.h inclusion when
7585 appropriate. STDC_HEADERS based inclusion of stdlib.h,
7586 sys/types.h, stddef.h, and sys/stdtypes.h removed in favor of
7587 scmconfig.h inclusion when appropriate. Various Win32 related
7588 definitions removed in favor of scmconfig.h inclusion when
7589 appropriate.
7590 (HAVE_UINTPTR_T): definition removed (see NEWS).
7591 (SIZEOF_PTRDIFF_T): definition removed (see NEWS).
7592 (HAVE_LONG_LONGS): definition removed (see NEWS).
7593 (HAVE_LONG_LONG): definition removed (see NEWS).
7594 (HAVE_PTRDIFF_T): definition removed (see NEWS).
7595
7596 * Makefile.am: scmconfig.h is now generated by building and
7597 running gen-scmconfig.h and capturing its output. gen-scmconfig
7598 uses config.h and the configure.in generated gen-scmconfig.h to
7599 decide what to output. See gen-scmconfig.c for details.
7600 (noinst_PROGRAMS): add gen-scmconfig.
7601 (gen_scmconfig_SOURCES): new variable.
7602 (gen-scmconfig.$(OBJEXT)): new target - be careful to handle
7603 cross-compiling right.
7604 (scmconfig.h): build scmconfig.h from gen-scmconfig's output.
7605 (BUILT_SOURCES): add scmconfig.h.
7606
25e0bf97
MV
76072003-03-19 Marius Vollmer <mvo@zagadka.de>
7608
7609 * gc_os_dep.c: Added defines for sparc-unknown-netbsdelf1.5 from
7610 Adrian Bunk. Thanks!
7611
74b6d6e4
MD
76122003-03-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7613
7614 * goops.c (make_class_from_template): New fourth arg:
7615 applicablep.
7616 (scm_class_extended_generic_with_setter, scm_class_self): Fixed
7617 cpls.
7618
7619 * smob.c (scm_set_smob_apply): Call scm_i_inherit_applicable.
7620
7621 * goops.c, objects.c, objects.h (scm_make_extended_class): New
7622 second arg: applicablep.
7623 (scm_i_inherit_applicable): New function.
7624
7625 * goops.c, goops.h (scm_class_applicable,
7626 scm_class_extended_accessor): New classes.
7627
5c9e7dad
DH
76282003-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
7629
7630 * procs.c (scm_procedure_documentation): Removed redundant
7631 SCM_NIMP test and replaced other calls to SCM_IMP by more explicit
7632 predicates.
7633
f8af5c6d
MD
76342003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7635
c614a00b
MD
7636 * list.c, list.h (scm_filter, scm_filter_x): New functions.
7637
109c2c9f
MD
7638 * modules.c (scm_module_import_interface): New function.
7639
f8af5c6d
MD
7640 * goops.c, goops.h (scm_class_accessor_method): Renamed from
7641 scm_class_accessor.
7642 (scm_class_accessor): New class.
7643
a48d60b1
MD
76442003-03-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7645
7646 * goops.c (scm_primitive_generic_generic): Enable primitive
7647 generic if not enabled.
7648 (scm_sys_goops_loaded): Setup unextended primitive generics.
7649
7650 * goops.c, goops.h (scm_c_extend_primitive_generic): New function.
7651
7652 * snarf.h (SCM_PRIMITIVE_GENERIC, SCM_PRIMITIVE_GENERIC_1): New
7653 snarf macros.
7654
7655 * numbers.c (scm_abs): Use SCM_PRIMITIVE_GENERIC. (This is only a
7656 testing example. All uses of SCM_GPROC should be converted.)
7657
7658 * procprop.c (scm_stand_in_scm_proc): Use scm_assq instead of
7659 scm_assoc.
7660
7661 * eq.c (scm_equal_p): Turned into a primitive generic.
7662
84edc049
RB
76632003-02-27 Rob Browning <rlb@defaultvalue.org>
7664
7665 * Makefile.am (scmconfig.h): new target -- generate file from
7666 ../config.h.
7667 (modinclude_HEADERS): remove version.h.
7668 (nodist_modinclude_HEADERS): add version.h.
7669
ea5c9285
MD
76702003-02-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7671
b4a1358c
MD
7672 This fixes a serious GC bug, introduced during the latest
7673 reorganization of the GC, which disabled freeing of structs and
7674 GOOPS objects:
7675
7676 * struct.c (scm_struct_prehistory): Init scm_i_structs_to_free to
7677 SCM_EOL.
53af8255
MD
7678 (scm_struct_prehistory): Move scm_free_structs to
7679 scm_before_mark_c_hook.
ea5c9285 7680
b4a1358c
MD
7681 * gc-card.c (sweep_card): Check that we haven't swept structs on
7682 this card before. That can happen if scm_i_sweep_all_segments has
7683 been called from some other place than scm_igc.
7684
c35738c1
MD
76852003-02-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7686
231a4ea8
MD
7687 * environments.c (DEFAULT_OBARRAY_SIZE): Changed from 137 to 31
7688 (since hash tables now adapt their size).
7689
7690 * modules.c (scm_modules_prehistory): Changed from 2001 to 1533
7691 (current number of prehistory bindings; hashtable code will select
7692 a prime which is greater than this value).
7693
7694 * symbols.c (scm_symbols_prehistory): Changed from 1009 to 2139
7695 (current number of initial symbols).
7696
7697 * properties.c (scm_init_properties): Don't specify size of
7698 scm_properties_whash.
7699
7700 * objprop.c (scm_init_objprop): Don't specify size of
7701 scm_object_whash.
7702
7703 * keywords.c (scm_init_keywords): Don't specify a hash table size.
7704
c35738c1
MD
7705 * hooks.c (scm_c_hook_add): Fixed bug in append mode.
7706
7707 The following changes introduce the use of resizable hash tables
7708 throughout Guile. It also renames the old *-hash-table* functions
7709 to *-alist-vector* and places them, together with the rest of the
7710 weak vector support, in the module (ice-9 weak-vector). We should
7711 probably introduce a new, better, API for weak references, for
7712 example "weak pairs" a la MIT-Scheme. (In Chez scheme, they even
7713 look like and are used like ordinary pairs.)
7714
7715 * environments.c (obarray_enter, obarray_retrieve, obarray_remove,
7716 leaf_environment_fold, obarray_remove_all): Use hashtable
7717 accessors.
7718
7719 * gc.c (scm_init_storage): Moved hook initialization to
7720 scm_storage_prehistory.
7721 (scm_storage_prehistory): New function.
7722 (scm_igc): Added commentary about placement of
7723 scm_after_sweep_c_hook.
7724
7725 * gc-mark.c (scm_mark_all): Use hashtable accessors.
7726 (scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
7727 SCM_WVECT_WEAK_VALUE_P.
7728
7729 * hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
7730 functions.
7731 (scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
7732 Removed.
7733 (scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
7734 scm_make_doubly_weak_hash_table): Moved here from weaks.c.
7735
7736 * init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
7737 calls to scm_storage_prehistory and scm_hashtab_prehistory.
7738
7739 * modules.c (module-reverse-lookup): Use hashtable accessors.
7740
7741 * symbols.c, symbols.h (scm_i_hash_symbol): New function.
7742
7743 * weaks.c, weaks.h (scm_make_weak_key_alist_vector,
7744 scm_make_weak_value_alist_vector,
7745 scm_make_doubly_weak_alist_vector): New functions.
7746
7747 * weaks.c (scm_init_weaks_builtins): New function.
7748
7749 * weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
7750 SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
7751 SCM_WVECT_NOSCAN_P): New macros.
7752
7753 * weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
7754 and SCM_WVECT_WEAK_VALUE_P.
7755
7756 * weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
7757 allocate_weak_vector and exported.
7758
0a4c1355
MD
77592003-02-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7760
7761 * hashtab.c: Undid thread safety. (We decided that it's better to
7762 let the user explicitly protect the tables (or not) according what
7763 is suitable for the application.)
7764
87ca11ff
MD
77652003-02-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7766
7767 * hashtab.c (scm_hash_fn_remove_x, scm_internal_hash_fold): Made
7768 thread safe and handle resizing tables.
7769 (scm_ihashx, scm_sloppy_assx, scm_delx_x): Removed
7770 SCM_DEFER/ALLOW_INTS.
7771
f59a096e
MD
77722003-02-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7773
7774 * hashtab.c (scm_vector_to_hash_table,
7775 scm_c_make_resizing_hash_table, scm_make_hash_table): New
7776 functions.
7777 (scm_hash_fn_get_handle, scm_hash_fn_create_handle_x): Made thread
7778 safe and handle resizing tables.
7779
7780 * weaks.c (scm_make_weak_key_hash_table,
7781 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
7782 Size argument made optional. Return resizable table if not
7783 specified.
7784
4b612c5b
MD
77852003-02-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7786
7787 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
7788 Fixed formals tests for closures. (Thanks to Kevin Ryde.)
7789
b3d7f6df
MD
77902003-02-05 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7791
7792 * debug.c (scm_procedure_source): Handle all objects for which
7793 procedure? is #t. (Thanks to Bill Schottstaedt.)
7794
756414cf
MD
77952003-01-23 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7796
361d631f
MD
7797 * futures.c (mark_futures): Don't need to mark data of recycled
7798 futures.
7799 (scan_futures, cleanup_undead): Be smarter about marking
7800 futures---avoid unnecessary passes through future lists.
7801
756414cf
MD
7802 * futures.h, futures.c: New files; Introduced recycling of
7803 futures. For fine-grained threading this lifts performance to
7804 another level. We can now use parallelization in inner loops of
7805 Guile programs without impossible overhead.
7806
7807 * threads.h, threads.c: Moved futures to their own file.
7808
7809 * Makefile.am (libguile_la_SOURCES): Added futures.c.
7810 (DOT_X_FILES): Added futures.x.
7811 (DOT_DOC_FILES): Added futures.doc.
7812 (modinclude_HEADERS): Added futures.h.
7813
7814 * threads.c, threads.h (scm_i_create_thread): Renamed from
7815 create_thread and made global.
7816
7817 * futures.c (scm_make_future): New procedure.
7818
7819 * eval.c: #include "libguile/futures.h".
7820
7821 * init.c: #include "futures.h"
7822 (scm_init_guile_1): Call scm_init_futures.
7823
7824 * stime.c (SCM_TIME_UNITS_PER_SECOND): Renamed from CLKTCK.
7825
7826 * stime.h (SCM_TIME_UNITS_PER_SECOND): Definition moved here.
7827
7828 * eval.c, eval.h (scm_trampoline_0, scm_i_call_closure_0): New
7829 functions.
7830
7831 * eval.c (scm_trampoline_1): Fixed arguments test for closures.
7832
b4debead
MD
78332003-01-22 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7834
7835 * threads.c (create_thread): Don't unwind dynwind chain of parent
7836 thread before creation. Just start the new thread with an empty
7837 dynwind chain.
7838
93f26b7b
MD
78392003-01-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7840
7841 * evalext.c, evalext.h (scm_self_evaluating_p): New function.
7842
38d8927c
MD
78432003-01-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7844
41c96c32
MD
7845 * threads.c (scm_timed_wait_condition_variable): Support timed
7846 waiting also for simple condition variables.
7847
38d8927c
MD
7848 * goops.c (TEST_CHANGE_CLASS): Use scm_change_object_class instead
7849 of calling the procedure change-object-class.
7850
9cf5d9b7
MD
78512003-01-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7852
7853 * ramap.c (scm_ramapc): Typo in error message.
7854
bbf8d523
MD
78552003-01-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7856
b46fae00
MD
7857 * goops.c (scm_sys_prep_layout_x): Bugfix: Only create layout for
7858 slots with instance allocation.
241d9cea 7859
bbf8d523
MD
7860 * goops.c, goops.h (scm_class_extended_generic_with_setter): New
7861 class.
7862 (scm_compute_applicable_methods): Use scm_generic_function_methods.
7863
7864 * goops.c (scm_generic_function_methods): Support extended
7865 generic functions.
7866
ebf9b47c
MD
78672002-12-29 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7868
7869 * eval.c (unmemocopy): Bugfix: scm_sym_delay --> scm_sym_future.
2e37d6a2 7870 Thanks to Neil for pointing this out!
ebf9b47c 7871
14a9ba3f
NJ
78722002-12-29 Neil Jerram <neil@ossau.uklinux.net>
7873
7874 * lang.h: Remove declarations matching definitions removed from
7875 lang.c (just below).
7876
c6a040a8
NJ
78772002-12-28 Neil Jerram <neil@ossau.uklinux.net>
7878
6054d805
NJ
7879 * lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null,
7880 scm_m_while, scm_nil_eq): Remove definitions that were superfluous
7881 and already commented out.
7882
c6a040a8
NJ
7883 * read.h (scm_lreadparen), read.c (scm_lreadr, scm_read_token,
7884 scm_lreadparen): Support reading vectors with Elisp syntax if
7885 SCM_ELISP_READ_EXTENSIONS is defined. (SCM_ELISP_READ_EXTENSIONS
7886 is not currently defined, and there isn't even a configure switch
7887 to enable it yet.)
7888
3742c12f
MV
78892002-12-26 Marius Vollmer <mvo@zagadka.ping.de>
7890
7891 * Makefile.am (c-tokenize.o): Refer to source via $< so that vpath
7892 builds work.
7893 (EXTRA_DIST): Added version.h.in.
241d9cea 7894
fb50ef08
MD
78952002-12-21 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7896
7897 This change makes it possible for one thread to do lazy sweeping
7898 while other threads are running. Now only the mark phase need to
7899 have all threads asleep. We should look further into this issue.
7900 Presently, I've put the locking of scm_i_sweep_mutex at
7901 "conservative" places due to my current lack of knowledge about
7902 the garbage collector. Please feel free to restrict these regions
7903 further to allow for maximal parallelism!
7904
7905 * gc.c, gc.h (scm_i_sweep_mutex): New mutex.
7906
7907 * gc.c (scm_gc_for_newcell), gc-malloc.c (scm_realloc,
7908 scm_gc_register_collectable_memory): Substitute locking of
7909 scm_i_sweep_mutex for calls to scm_i_thread_put_to_sleep.
7910 (scm_igc): Lock sweep mutex here instead of in callers; Calls to
7911 scm_i_thread_put_to_sleep/scm_i_thread_wake_up used to demarkate
7912 the single-thread section (which now only contains the mark
7913 phase).
7914 (scm_gc): Don't lock sweeo mutex here since scm_igc locks it;
7915 Removed SCM_DEFER/ALLOW_INTS. Simply call scm_igc directly.
7916
7917 * threads.c (gc_section_mutex): Removed.
7918
9ed24633
MD
79192002-12-19 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7920
0d48aca5
MD
7921 * threads.c (create_thread): Clear parent field in root state in
7922 order not to unnecessarily remember dead threads.
7923
9ed24633
MD
7924 * eval.c (call_subr2o_1, call_lsubr2_2): New functions.
7925 (scm_trampoline_1, scm_trampoline_2): Use them.
7926
29717c89
MD
79272002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7928
7929 Partial introduction of real plugin interface.
7930
7931 * Makefile.am (modinclude_HEADERS): Added threads-plugin.h.
7932 (EXTRA_DIST): Added threads-plugin.c.
7933
7934 * threads-plugin.h, threads-plugin.c: New files.
7935
7936 * threads.h: #include "libguile/threads-plugin.h".
7937
7938 * threads.c: #include "libguile/threads-plugin.c".
7939
7940 * pthread-threads.c: Temporarily remove debugging functions.
7941
7942 * threads.c, threads.h (scm_yield): Added back.
7943
e29e0b09
MD
79442002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
7945
7946 * threads.c (really_launch): Detach before unlocking
7947 thread_admin_mutex in order not to risk being joined.
7948 (scm_i_thread_put_to_sleep, scm_i_thread_wake_up): Keep
7949 thread_admin_mutex locked during GC.
7950
7951 * pthread-threads.c, pthread-threads.h: Improvements to debugging
7952 functions.
7953
0b6843b1 79542002-12-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
93cd4dcd 7955
6da2dfc4
MD
7956 * pthread-threads.c, pthread-threads.h (SCM_DEBUG_THREADS): Added
7957 support for debugging mutex operations.
7958
1b92fb6b
MD
7959 * threads.c (scm_thread): Removed filed joining_threads.
7960 (thread_print): Print thread number as well as address of thread
7961 structure.
0b6843b1
MD
7962 (scm_join_thread): Bugfix.
7963 (scm_lock_mutex, scm_try_mutex, scm_unlock_mutex,
7964 scm_timed_wait_condition_variable, scm_signal_condition_variable,
7965 scm_broadcast_condition_variable): Use the low-level API.
7966 (scm_all_threads): Return copy of thread list (to prevent
7967 unintended destruction).
7968 (scm_threads_prehistory): Initialize heap_mutex of fake thread.
1b92fb6b 7969
93cd4dcd
MD
7970 * pthread-threads.c, pthread-threads.h, threads.c: Fixes to
7971 pthread "native" recursive mutex support.
7972
2ff4f181
MD
79732002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7974
28d52ebb
MD
7975 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): New definitions.
7976 Simply lock a thread C API recursive mutex.
7977 (SCM_NONREC_CRITICAL_SECTION_START,
7978 SCM_NONREC_CRITICAL_SECTION_END, SCM_REC_CRITICAL_SECTION_START,
7979 SCM_REC_CRITICAL_SECTION_END): Removed.
7980
7981 * eval.c: Replaced SOURCE_SECTION_START / SOURCE_SECTION_END with
7982 direct calls to scm_rec_mutex_lock / unlock around the three calls
7983 to scm_m_expand_body.
7984
7985 * eval.c, eval.h (promise_free): New function.
7986 (scm_force): Rewritten; Now thread-safe; Removed
7987 SCM_DEFER/ALLOW_INTS.
7988
7989 * pthread-threads.h: Added partially implemented plugin interface
7990 for recursive mutexes. These are, for now, only intended to be
7991 used internally within the Guile implementation.
7992
7993 * pthread-threads.c: New file.
7994
7995 * threads.c: Conditionally #include "pthread-threads.c".
7996
7997 * eval.c, eval.h (scm_makprom, scm_force): Rewritten to be
7998 thread-safe;
7999
8000 * snarf.h (SCM_MUTEX, SCM_GLOBAL_MUTEX, SCM_REC_MUTEX,
8001 SCM_GLOBAL_REC_MUTEX): New macros.
8002
8003 * eval.c, threads.c, threads.h, snarf.h: Rewrote critical section
8004 macros---use mutexes instead.
8005
8006 * tags.h (SCM_IM_FUTURE): New tag.
8007
8008 * eval.c (scm_m_future): New primitive macro.
8009 (SCM_CEVAL): Support futures.
8010 (unmemocopy): Support unmemoization of futures.
8011
8012 * print.c (scm_isymnames): Name of future isym.
8013
2ff4f181
MD
8014 * version.c: Unmade some changes to my private copy that got
8015 committed by mistake.
8016
392d2833
MD
80172002-12-11 Mikael Djurfeldt <mdj@kvast.blakulla.net>
8018
e200ddee
MD
8019 * gc-malloc.c, gc.h, init.c: Reverted gc-malloc change of
8020 2002-12-10.
8021
392d2833
MD
8022 * gc.c (scm_igc): Don't call scm_i_thread_invalidate_freelists.
8023
8024 * gc.c (scm_gc_sweep): Call it here instead, which is a more
8025 logical place.
8026
8027 * threads.c (create_thread): Remember root object until the handle
8028 of the new thread is on all_threads list.
8029
8030 * root.c (scm_make_root): Moved copying of fluids until after
8031 creation of root handle so that the fluids are GC protected. Also
8032 removed the critical section.
8033
c4c52ebe
MD
80342002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
8035
960c408c
MD
8036 * gc-malloc.c, gc.h (scm_gc_malloc_prehistory): New function.
8037
3cdde9d6 8038 * gc-malloc.c (malloc_mutex): New mutex.
960c408c 8039 (scm_gc_malloc_prehistory): Initialize it.
3cdde9d6
MD
8040 (scm_realloc): Serialize call to realloc
8041 (scm_calloc): Same for calloc.
8042 Thanks to Wolfgang Jaehrling!
8043 (Now we have to make sure all calls to malloc/realloc are made
8044 through scm_malloc.)
8045
960c408c
MD
8046 * init.c (scm_init_guile_1): Call scm_gc_malloc_prehistory.
8047
c4c52ebe
MD
8048 * threads.c (really_launch): Release heap (to prevent deadlock).
8049 (create_thread): Release heap before locking thread admin mutex.
8050
b0dc3d71
MD
80512002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
8052
8053 * threads.c (scm_i_thread_invalidate_freelists): New
8054 function.
8055
8056 * gc.c (scm_igc): Call scm_i_thread_invalidate_freelists.
8057
8058 * modules.c (scm_export): Inserted a return statement.
8059
06e80f59
HWN
80602002-12-10 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8061
8062 * modules.c (scm_export): new function
8063
8064 * gc-card.c: add a note about malloc()/free() overhead.
8065
a12611c3
MD
80662002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
8067
8068 * Makefile.am (c-tokenize.$(OBJEXT)): Don't look for c-tokenize.c
8069 in srcdir.
8070
c7fabadf
MD
80712002-12-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
8072
8073 These changes remove scm_ints_disabled (which hasn't has any
8074 effect in Guile for quite some time).
241d9cea 8075
c7fabadf
MD
8076 * async.c, error.h (scm_ints_disabled): Removed.
8077
8078 * gc.c (scm_gc_for_newcell), init.c (scm_init_guile_1),
8079 root.c (scm_internal_cwdr), gdbint.c (SCM_BEGIN_FOREIGN_BLOCK,
8080 SCM_END_FOREIGN_BLOCK): Don't touch scm_ints_disabled.
8081 (old_ints): Removed.
8082
8083 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Define as a recursive
8084 critical section.
8085 (SCM_REDEFER_INTS, SCM_ALLOW_INTS): Define as SCM_DEFER_INTS and
8086 SCM_ALLOW_INTS.
8087
9bc4701c
MD
80882002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
8089
52340b65
MD
8090 * threads.c (scm_mutex_lock, scm_cond_wait, scm_cond_timedwait):
8091 Removed accidental #if 0 around these functions.
8092
9bc4701c
MD
8093 These changes are the start of support for preemptive
8094 multithreading. Marius and I have agreed that I commit this code
8095 into the repository although it isn't thoroughly tested and surely
8096 introduces many bugs. The bugs should only be exposed when using
8097 threads, though. Signalling and error handling for threads is
8098 very likely broken. Work on making the implementation cleaner and
8099 more efficient is needed.
241d9cea 8100
9bc4701c
MD
8101 * __scm.h (SCM_ALLOW_INTS_ONLY): Removed.
8102 (SCM_NONREC_CRITICAL_SECTION_START,
8103 SCM_NONREC_CRITICAL_SECTION_END, SCM_REC_CRITICAL_SECTION_START,
8104 SCM_REC_CRITICAL_SECTION_END): New macros.
8105 (SCM_CRITICAL_SECTION_START/END): Defined here.
8106
8107 * eval.c: Insert SOURCE_SECTION_START / SOURCE_SECTION_END around
8108 the three calls to scm_m_expand_body.
8109
8110 * gc.h: #include "libguile/pthread-threads.h";
8111 (SCM_FREELIST_CREATE, SCM_FREELIST_LOC): New macros.
8112
8113 * gc.c (scm_i_freelist, scm_i_freelist2): Defined to be of type
8114 scm_t_key;
8115
8116 * gc.c, gc-freelist.c, inline.h: Use SCM_FREELIST_LOC for freelist
8117 access.
8118
8119 * gc-freelist.c (scm_gc_init_freelist): Create freelist keys.
8120
8121 * gc-freelist.c, threads.c (really_launch): Use
8122 SCM_FREELIST_CREATE.
8123
8124 * gc-malloc.c (scm_realloc, scm_gc_register_collectable_memory):
8125
8126 * gc.c (scm_i_expensive_validation_check, scm_gc,
8127 scm_gc_for_newcell): Put threads to sleep before doing GC-related
8128 heap administration so that those pieces of code are executed
8129 single-threaded. We might consider rewriting these code sections
8130 in terms of a "call_gc_code_singly_threaded" construct instead of
8131 calling the pair of scm_i_thread_put_to_sleep () and
8132 scm_i_thread_wake_up (). Also, we would want to have as many of
8133 these sections eleminated.
8134
8135 * init.c (scm_init_guile_1): Call scm_threads_prehistory.
8136
8137 * inline.h: #include "libguile/threads.h"
8138
8139 * pthread-threads.h: Macros now conform more closely to the
8140 pthreads interface. Some of them now take a second argument.
8141
8142 * threads.c, threads.h: Many changes.
8143
81442002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
8145
8146 * Makefile.am (version.h): Changed $^ --> $< in rule for
8147 version.h.
241d9cea 8148
b2cbe8d8
RB
81492002-12-08 Rob Browning <rlb@defaultvalue.org>
8150
8151 * version.h.in (SCM_MICRO_VERSION): use @--@ substitution now.
8152 (SCM_MINOR_VERSION): use @--@ substitution now.
8153 (SCM_MICRO_VERSION): use @--@ substitution now.
8154 (scm_effective_version): new function prototype.
8155
8156 * version.c (scm_effective_version): new function, also add
8157 effective-version.
8158
8159 * Makefile.am (schemelibdir): VERSION -> GUILE_EFFECTIVE_VERSION.
8160 (libpath.h): use GUILE_EFFECTIVE_VERSION to compute
8161 SCM_LIBRARY_DIR.
8162 (version.h): generate this here rather than configure.in. This
8163 approach tracks source edits better (i.e. more immediately).
8164 Might be worth considering for other .in files too.
8165
5441c65c
MV
81662002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
8167
8168 Reorganized thread package selection. A thread package now only
8169 implements a small set of pthread like functions and Guile
8170 implements the rest on top of that. Guile's implementation is
8171 what the "coop-pthreads" package has been previously. Support for
8172 "coop" threads has been removed until I get time to add it again.
241d9cea 8173
5441c65c
MV
8174 * Makefile.am (libguile_la_SOURCES): Removed iselect.c.
8175 (noinst_HEADERS): Removed coop-threads.c, coop-threads.h, coop.c,
8176 null-threads.c, coop-pthreads.c.
8177 (modinclude_HEADERS): Removed coop-defs.h, coop-pthreads.h. Added
8178 pthread-threads.h.
241d9cea 8179
5441c65c
MV
8180 * validate.h (SCM_VALIDATE_THREAD): Moved to threads.h.
8181
8182 * threads.h: Do not include "libguile/coop-defs.h". Include
8183 "libguile/pthread-threads.h" for USE_COPT_THREADS. Removed
8184 (previously deprecated) C level thread API prototypes. They are
8185 now in the thread package specific headers, "null-threads.h" and
8186 "pthread-threads.h".
8187 (SCM_VALIDATE_THREAD, SCM_VALIDATE_MUTEX, SCM_VALIDATE_CONDVAR):
8188 New.
8189 (scm_threads_init): Removed.
8190 (SCM_CRITICAL_SECTION_START, SCM_CRITICAL_SECTION_END,
8191 SCM_THREAD_SWITCHING_CODE, scm_i_switch_counter,
8192 SCM_I_THREAD_SWITCH_COUNT): Define here.
8193 (scm_single_thread_p): Removed.
8194 (scm_call_with_new_thread): Take two args directly instead of list
8195 of two args.
8196 (scm_i_thread_data, scm_i_set_thread_data, SCM_THREAD_LOCAL_DATA,
8197 SCM_SET_THREAD_LOCAL_DATA): Define here.
8198
8199 * threads.c: Merged with "coop-pthreads.c".
8200
8201 * null-threads.h: Implement pthread-like API as a set of macros.
8202
8203 * pthread-threads.h: New, implement pthread-like API by deferring
8204 to pthread itself.
241d9cea 8205
5441c65c
MV
8206 * init.c (scm_init_guile_1): Do not call scm_init_iselect, which
8207 has been lost in the reorganization.
8208
504d99c5
MD
82092002-12-01 Mikael Djurfeldt <mdj@linnaeus>
8210
8211 The following change makes it possible to move procedure
8212 application dispatch outside inner loops. The motivation was
8213 clean implementation of efficient replacements of R5RS primitives
8214 in SRFI-1.
8215
8216 The semantics is clear: scm_trampoline_N returns an optimized
8217 version of scm_call_N (or NULL if the procedure isn't applicable
8218 on N args).
8219
8220 Applying the optimization to map and for-each increases efficiency
8221 noticeably. For example, (map abs ls) is 8 times faster than
8222 before.
8223
8224 * eval.h (scm_t_trampoline_1, scm_t_trampoline_2): New types.
8225
8226 * eval.c, eval.h (scm_trampoline_1, scm_trampoline_2): New functions.
8227
8228 * eval.c (call_subr2_2, call_lsubr_2, call_closure_2): New functions;
8229 (map, for-each): Handle also application on two args as a special
8230 case; Use trampolines.
8231
8232 Other changes:
241d9cea 8233
504d99c5
MD
8234 * sort.c (scm_cmp_function): Choose subr2less for scm_tc7_subr_2o;
8235 (subr2oless): Removed.
8236 (scm_restricted_vector_sort_x): Use scm_return_first to keep the
8237 vector GC protected.
8238
8239 * eval.c (check_map_args): Use scm_out_of_range_pos instead of
8240 scm_out_of_range.
8241
63dd3413
DH
82422002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
8243
8244 * evalext.[ch] (scm_m_undefine, undefine): Deprecated.
8245
4ba5f279
MD
82462002-11-17 Mikael Djurfeldt <mdj@linnaeus>
8247
8248 * debug.c (scm_make_iloc): Added missing "return".
8249
56ae231f
MV
82502002-11-17 Marius Vollmer <mvo@zagadka.ping.de>
8251
8252 * strports.c (scm_eval_string_in_module): Validate second arg to
8253 be a module. Thanks to Arno Peters!
8254
80b28865
DH
82552002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
8256
8257 * .cvsignore: remove goops.c
8258
c88b1456
DH
82592002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
8260
8261 * modules.c (scm_env_top_level, scm_lookup_closure_module,
8262 module_variable, scm_module_lookup_closure,
8263 scm_module_transformer, scm_sym2var, scm_module_reverse_lookup,
8264 scm_system_module_env_p): Don't compare SCM values with C
8265 operators == or !=. Avoid SCM_IMP predicates. Prefer !SCM_FALSEP
8266 over SCM_NFALSEP.
8267
a8a19efc
DH
82682002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
8269
8270 * eval.h (SCM_MAKE_ILOC): New macro.
8271
8272 * debug.c (scm_make_iloc): Use SCM_MAKE_ILOC instead of computing
8273 the iloc bitpattern here.
8274
76734914
MD
82752002-11-14 Mikael Djurfeldt <mdj@linnaeus>
8276
8277 * coop-pthreads.c, coop-pthreads.h: scm_internal_select should be
8278 part of the API, otherwise it's difficult to write Guile
8279 extensions using non-blocking I/O => moved #include
8280 "libguile/iselect.h" from coop-pthreads.c --> coop-pthreads.h.
8281
8282 * coop-pthreads.c (scm_unlock_mutex): Changed s_lock_mutex -->
8283 s_unlock_mutex.
8284
8b5b4a75
MV
82852002-11-10 Marius Vollmer <mvo@zagadka.ping.de>
8286
8287 * __scm.h (USE_THREADS, GUILE_ISELECT): Do not define here. They
8288 are defined in configure.in.
8289
8290 * threads.c: Removed SCM_API from function definitions. SCM_API
8291 is only for declarations.
8292
e5a83084
MD
82932002-11-07 Mikael Djurfeldt <mdj@linnaeus>
8294
9be8bb45
MD
8295 * coop-pthreads.h: Added support for thread specific data to the
8296 generic C API for the coop-pthreads case.
8297
e5a83084
MD
8298 * threads.c, threads.h (scm_cond_init): Undo unintentional API
8299 change.
6c214b62 8300 (scm_cond_broadcast): Added missing function.
e5a83084 8301
7edf178e
MV
83022002-11-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8303
8304 * coop.c (coop_next_runnable_thread): Removed, wich should have
8305 happened when GUILE_ISELECT was hard-wired.
8306
7f5b1b77
MV
83072002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
8308
7caa1b07
MV
8309 * Makefile.am (libguile_la_SOURCES): Added threads.c
8310 (DOT_DOC_FILES): Added threads.doc.
8311 (DOT_X_FILES): Added threads.x.
8312 (EXTRA_libguile_la_SOURCES): Removed threads.c.
8313 (noinst_HEADERS): Added coop-pthreads.c.
8314 (modinclude_HEADERS): Added coop-pthreads.h.
8315
8316 * __scm.h (USE_THREADS, GUILE_ISELECT): Define when
8317 SCM_DEBUG_DEPRECATED. Removed their use thru-out Guile.
8318
bb11cbf4
MV
8319 * iselect.c: Include "_scm.h" before testing HAVE_UNISTD_H.
8320 Thanks to Bill Schottstaedt!
8321
1d4cbbed
MV
8322 * numbers.c (scm_integer_expt): Make 0^z == 0 for z != 0.
8323
7f5b1b77
MV
8324 * _scm.h (HAVE_RESTARTABLE_SYSCALLS): Do define even when
8325 SCM_COPT_THREADS is defined.
8326 (SCM_SYSCALL): Use EINTR-expection version when SCM_COPT_THREADS
8327 is defined.
241d9cea 8328
7f5b1b77
MV
8329 * coop-pthreads.c: Some harmless renamings of internal stuff.
8330 (create_thread): New, generalized version of
8331 scm_call_with_new_thread.
8332 (scm_call_with_new_thread): Use it.
8333 (scm_spawn_thread): New, use create_thread.
241d9cea 8334
d52f53b1
MV
83352002-11-02 Marius Vollmer <mvo@zagadka.ping.de>
8336
8337 * coop-pthreads.c, coop-pthreads.h: Redone completely, you might
8338 start testing it now.
8339
8340 * _scm.h: Include <errno.h< so that SCM_SYSCALL is correctly
8341 defined when HAVE_RESTARTABLE_SYSCALLS is not defined.
8342 (HAVE_RESTARTABLE_SYSCALLS): Do not define when USE_COPT_THREADS
8343 is defined.
8344
30f920c3
MV
83452002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
8346
8347 * scmsigs.c (signal_cell_handlers, install_handler_data,
8348 scm_delq_spine_x, really_install_handler, install_handler): New
8349 scheme for triggering signal handlers, to simplify take_signal.
8350 (take_signal): Simplified, to avoid race conditions.
8351 (scm_sigaction_for_thread): Use new Scheme. Validate that thread
8352 hasn't exited yet.
241d9cea 8353
30f920c3
MV
8354 * async.c (scm_async_click): Reset pending_asyncs, handle
8355 signal_asyncs. Don't set cdr of a non-signal async to #f.
8356 (scm_i_queue_async_cell): Do not check cdr of cell for #f, queue
8357 always. Set pending_asyncs.
8358 (scm_system_async_mark_for_thread): Check that thread has not
8359 exited.
8360 (scm_unmask_signals, decrease_block): Call scm_async_click after
8361 block_asyncs becomes zero.
241d9cea 8362
30f920c3
MV
8363 * __scm.h (SCM_ASYNC_CLICK): Check pending_asyncs instead of
8364 active_asyncs.
8365
8366 * root.h (scm_root_state): Added pending_asyncs and signal_asyncs
8367 fields.
8368 * root.c (root_mark): Mark them.
8369 (make_root): Initialize them.
241d9cea 8370
30f920c3
MV
8371 * iselect.c, iselect.h: Replaced GUILE_ISELECT with
8372 USE_COOP_THREADS.
8373 (scm_internal_select): Define one version for USE_COOP_THREADS and
8374 one for USE_NULL_THREADS.
8375 (scm_init_iselect): Likewise.
241d9cea 8376
30f920c3
MV
8377 * inline.h (scm_cell, scm_double_cell): Also allow
8378 USE_COPT_THREADS to not protect the slot initializers.
241d9cea 8379
30f920c3
MV
8380 * init.c (scm_init_guile_1): Call scm_init_thread_procs. This is
8381 because threads need to be initialized before the stack, but
8382 gsubrs such as scm_timed_condition_variable_wait can only be
8383 created later.
8384
8385 * threads.h: Include "coop-pthreads.h" when requested.
8386 (scm_threads_make_mutex, scm_threads_lock_mutex,
8387 scm_threads_unlock_mutex, scm_threads_monitor): Removed, they were
8388 not implemented anyway.
8389 (scm_init_thread_procs, scm_try_mutex,
8390 scm_timed_condition_variable_wait,
8391 scm_broadcast_condition_variable, scm_c_thread_exited_p,
8392 scm_thread_exited_p): New prototypes.
8393 (struct timespec): Define if not already defined.
8394 (scm_t_mutex, scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
8395 scm_mutex_unlock, scm_mutex_destroy, scm_t_cond, scm_cond_init,
8396 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
8397 scm_cond_broadcast, scm_cond_destroy): Declarations moved here and
8398 deprecated.
8399
8400 * threads.c: Include <errno.h>. Include "coop-pthreads.c" when
8401 requested.
8402 (scm_thread_exited_p): New.
8403 (scm_try_mutex, scm_broadcast_condition_variable): Newly
8404 registered procedures.
8405 (scm_wait_condition_variable, scm_timed_wait_condition_variable):
8406 Use the latter as the procedure for "wait-condition-variable",
8407 thus offering a optional timeout parameter to Scheme.
8408 (scm_wait_condition_variable): Implement in terms of
8409 scm_timed_wait_condition_variable.
8410 (scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
8411 scm_mutex_unlock, scm_mutex_destroy, scm_cond_init,
8412 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
8413 scm_cond_broadcast, scm_cond_destroy): Implement in terms of
8414 scm_make_mutex, etc, and deprecate.
8415 (scm_init_threads): Do not create smobs, leave this to
8416 scm_threads_init. Do not include "threads.x" file.
8417 (scm_init_thread_procs): New, include "threads.x" here.
8418
8419 * null-threads.h (scm_null_mutex, scm_null_mutex_init,
8420 scm_null_mutex_lock, scm_null_mutex_unlock,
8421 scm_null_mutex_destroy, scm_null_condvar, scm_null_condvar_init,
8422 scm_null_condvar_wait, scm_null_condvar_signal,
8423 scm_null_condvar_destroy): Removed.
8424 (scm_mutex_init, scm_mutex_lock, scm_mutex_unlock, scm_cond_init,
8425 scm_cond_wait, scm_cond_signal, scm_cond_broadcast,
8426 scm_cond_destory): Do not define, they are now deprecated and
8427 handled by threads.{h,c}.
241d9cea 8428
30f920c3
MV
8429 * null-threads.c (scm_null_mutex, scm_null_cond): Define here.
8430 (scm_threads_init): Create smobs here, using the appropriate
8431 sizes.
8432 (block): Removed, now unused.
8433 (scm_c_thread_exited_p): New.
8434 (scm_null_mutex_init, scm_null_mutex_lock, scm_null_mutex_unlock,
8435 scm_null_mutex_destroy, scm_null_condvar_init,
8436 scm_null_condvar_wait, scm_null_condvar_signal,
8437 scm_null_condvar_destroy): Removed and updated users to do their
8438 task directly.
8439 (scm_try_mutex, timeval_subtract,
8440 scm_timed_wait_condition_variable,
8441 scm_broadcast_condition_variable): New.
8442 (scm_wait_condition_variable): Removed.
8443
8444 * coop-defs.h (coop_m): Added 'level' field.
8445 (scm_t_mutex, scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
8446 scm_mutex_unlock, scm_mutex_destroy, scm_t_cond, scm_cond_init,
8447 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
8448 scm_cond_broadcast, scm_cond_destroy, struct timespec): Do not
8449 define.
8450 (coop_condition_variable_broadcast): New.
8451
8452 * coop-threads.c (scm_threads_init): Create smobs here, using the
8453 appropriate sizes.
8454 (scm_c_thread_exited_p, scm_try_mutex,
8455 scm_timed_wait_condition_variable,
8456 scm_broadcast_condition_variable): New.
8457 (scm_wait_condition_variable): Removed.
8458
8459 * coop.c (coop_new_mutex_init): Initialize level.
8460 (coop_mutex_trylock, coop_mutex_lock, coop_mutex_unlock): maintain
8461 level.
8462 (coop_condition_variable_signal): Renamed to
8463 coop_condition_variable_broadcast and reimplemented in terms of
8464 that. Thus...
8465 (coop_condition_variable_broadcast): New.
8466
8467 * goops.c (hell_mutex): Reimplemented using scm_make_mutex, etc.
8468
8469 * coop-pthreads.h, coop-pthreads.c: New, but unfinished.
241d9cea 8470
087ed40d
MV
84712002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
8472
65a23095
MV
8473 * null-threads.c: Include <time.h>. Also, use <...> for inclusion
8474 of system headers.
8475
087ed40d
MV
8476 * async.c, goops.h, modules.h, validate.h (SCM_MAKE_VALIDATE_MSG):
8477 New. Use it instead of SCM_MAKE_VALIDATE in lots of places to
30f920c3 8478 give better error messages. Thanks to Bill Schottstaedt!
087ed40d 8479
5ec1d2c8
DH
84802002-10-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
8481
8482 * evalext.h, evalext.c (scm_definedp, scm_defined_p): Renamed
8483 scm_definedp to scm_defined_p and deprecated scm_definedp.
8484
100ae50d
DH
84852002-10-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
8486
8487 * async.h, async.c (scm_system_async): Fixed deprecation to work
8488 correctly when deprecated features are excluded.
8489
2794cb50
MV
84902002-10-16 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8491
8492 * async.c (scm_system_async_mark_for_thread): Validate thread
8493 argument.
8494
8495 * coop-threads.c (scm_i_thread_root): Do not validate argument.
8496
8497 * feature.c (scm_init_feature): Don't add 'threads' for
8498 USE_NULL_THREADS.
8499
8500 * inline.h (scm_cell, scm_double_cell): Also allow
8501 USE_NULL_THREADS to not protect the slot initializers.
8502
8503 * scmsigs.c (scm_sigaction_for_thread): It's "USE_THREADS" not
8504 "USE_THREAD".
8505
8506 * Makefile.am (noinst_HEADERS): Added null-threads.c.
8507 (modinclude_HEADERS): Added null-threads.h.
8508
8509 * threads.h: Include null-threads.h when !USE_COOP_THREADS.
8510 * threads.c: Include null-threads.c when !USE_COOP_THREADS.
8511 (scm_init_threads): Use generic type names scm_t_mutex and
8512 scm_t_cond instead of coop_m and coop_c.
8513
8514 * null-threads.c, null-threads.h: New files.
8515
ff810d7a
MV
85162002-10-15 Marius Vollmer <mvo@zagadka.ping.de>
8517
8518 * Makefile.am: Replaced "$<" in non-pattern rules with its value.
8519 This is to support makes that know about "$<" only in pattern
8520 rules, like Sun's make.
8521
a90bdb73
MV
85222002-10-13 Marius Vollmer <mvo@zagadka.ping.de>
8523
8524 * Makefile.am (libpath.h): Fixed typo in top_srcdir_absolute
8525 substitution. Thanks to David Allouche!
8526
e71a8bf2
DH
85272002-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8528
8529 * evalext.h: Replaced SCM_DEBUG_DEPRECATED with
8530 !SCM_ENABLE_DEPRECATED.
8531
41f77ff5
MV
85322002-10-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8533
504d99c5 8534 * async.c (scm_system_async_mark_for_thread): Only call
41f77ff5
MV
8535 scm_i_thread_root when USE_THREADS is defined. Use scm_root
8536 otherwise.
8537
8538 * scmsigs.c (take_signal): Only call scm_i_thread_root when
8539 USE_THREADS is defined. Use scm_root otherwise.
8540 (scm_sigaction_for_thread): Ignore THREAD argument when
8541 USE_THREADS is not defined. Also, move THREAD argument defaulting
8542 out of HAVE_SIGACTION section, which was a bug.
8543
6d16b125
MV
85442002-10-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8545
8546 * scmsigs.c (scm_sigaction_for_thread): Store original handler in
8547 signal_handlers, not the closure that is used as the async.
8548 The closure is stored in signal_handler_cells, as previously.
241d9cea 8549
acfa1f52
MV
85502002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
8551
8552 * root.h (scm_root_state): Added 'block_async' slot.
8553 (scm_active_asyncs): Removed abbrev.
8554 * root.c (scm_make_root): Initialize 'block_asyncs' slot.
8555
8556 * __scm.h (SCM_ASYNC_TICK): Do without the scm_active_asyncs
8557 abbrev.
8558
8559 * async.h (scm_call_with_blocked_asyncs,
8560 scm_call_with_unblocked_asyncs, scm_c_call_with_blocked_asyncs,
8561 scm_c_call_with_unblocked_asyncs): New prototypes.
8562 (scm_mask_signals, scm_unmask_signals): Deprecated.
8563 (scm_mask_ints): Turned into a macro.
8564 * async.c (scm_mask_ints): Removed.
8565 (scm_run_asyncs): Do not set scm_mask_ints while running an async.
8566 this should not be necessary.
8567 (scm_async_click): Test block_asyncs instead of scm_mask_ints.
8568 (scm_mask_signals, scm_unmask_signals): Deprecated. Emit
8569 deprecation warning and check for errornous use. Set block_asyncs
8570 instead of scm_mask_ints.
8571 (increase_block, decrease_block, scm_call_with_blocked_asyncs,
8572 scm_call_with_unblocked_asyncs, scm_c_call_with_blocked_asyncs,
8573 scm_c_call_with_unblocked_asyncs): New.
241d9cea 8574
acfa1f52
MV
8575 * script.c (scm_compile_shell_switches): Do not set scm_mask_ints.
8576 Asyncs are enabled by default.
8577
34010f56
NJ
85782002-10-09 Neil Jerram <neil@ossau.uklinux.net>
8579
8580 * vports.c (scm_make_soft_port): Allow vector argument to carry a
8581 6th element: an input waiting thunk.
8582 (sf_input_waiting): New.
8583
9310d6f2
MV
85842002-10-05 Marius Vollmer <mvo@zagadka.ping.de>
8585
8586 * root.c (root_mark): Mark active_asyncs slot.
8587
8588 * async.c (scm_async_click): Set the cdr of a executed handler
8589 cell to SCM_BOOL_F, not SCM_EOL.
8590 (scm_i_queue_async_cell): Queue the cell at the end of the list,
8591 and only if the handler procedure is not already present.
8592 (scm_system_async_mark_for_thread): Initialize cdr of handler cell
8593 with SCM_BOOL_F.
8594 * scmsigs.c (scm_sigaction_for_thread): Likewise.
241d9cea 8595
ac48c719
RB
85962002-10-04 Rob Browning <rlb@defaultvalue.org>
8597
1360a142
RB
8598 * guile.c (main): switch to scm_lt_dlset_preloaded_symbols;
8599
8600 * dynl.c (sysdep_dynl_link): switch to scm_lt_dlhandle,
8601 scm_lt_dlopenext, and scm_lt_dlerror.
8602 (sysdep_dynl_unlink): switch to scm_lt_dlhandle, scm_lt_dlclose,
8603 and scm_lt_dlerror.
8604 (sysdep_dynl_func): switch to scm_lt_dlhandle, scm_lt_dlsym,
8605 and scm_lt_dlerror.
8606 (sysdep_dynl_init): switch to scm_lt_dlinit();
8607
8608 * Makefile.am (libguile_la_LIBADD): switch to use
8609 libguile-ltdl.la.
8610
504d99c5 8611 * numbers.c (scm_integer_expt): (expt 0 1) should be 1.
ac48c719 8612
497092c9
MV
86132002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
8614
8615 * scmsigs.h (scm_sigaction_for_thread): New prototype.
8616 * scmsigs.c (got_signal): Removed.
8617 (signal_handler_cells, signal_handler_threads): New.
8618 (take_signal): Queue the cell of the signal for the specified
8619 thread. Reset the signal handler on systems that don't have
8620 sigaction.
8621 (sys_deliver_signals): Removed.
8622 (close_1): New.
8623 (scm_sigaction_for_thread): Renamed from scm_sigaction and
8624 extended to also set the thread of a signal and allocate a cell
8625 for it. Keep the Scheme name "sigaction". Check that signum is
8626 within range. Also, use SCM_VECTOR_REF instead of SCM_VELTS.
8627 (scm_sigaction): Implement in terms of scm_sigaction_for_thread.
8628 (scm_init_scmsigs): Allocate signal_handler_cells and
8629 signal_handler_threads vectors.
8630
8631 * async.c: Removed GUILE_OLD_ASYNC_CLICK code. Reorganized so
8632 that system asnycs and user asyncs are separated. Reimplemented
8633 system asyncs to work per-thread.
8634
8635 * gc.c (scm_init_gc): Do not use scm_system_async.
8636
8637 * async.h (scm_asyncs_pending, scm_set_tick_rate,
8638 scm_set_switch_rate, scm_system_async_mark_from_signal_handler):
8639 Removed prototypes.
8640 (scm_i_queue_async_cell): New.
241d9cea 8641
497092c9
MV
8642 * __scm.h (scm_asyncs_pending_p): Removed.
8643 (SCM_ASYNC_CLICK): Check scm_active_asyncs instead of
8644 scm_asyncs_pending_p.
8645
8646 * async.h (scm_system_async_mark_for_thread): New prototype.
8647
8648 * __scm.h: Removed GUILE_OLD_ASYNC_CLICK code.
8649
8650 * root.h (scm_root_state): Added new "active_asyncs" slot.
8651 * root.c (scm_make_root): Initialize it to SCM_EOL.
8652
8653 * coop-defs.h (coop_t): Added new "handle" slot.
8654 * coop-threads.c (all_threads, scm_current_thread,
8655 scm_all_threads, scm_i_thread_root): New.
8656 (scm_threads_init): Add main thread to all_threads.
8657 (scheme_launch_thread): Remove thread from all_threads when it
8658 terminates.
8659 (scm_call_with_new_thread): Initialize handle slot of coop_t
8660 structure and add new thread to all_threads.
8661 (scm_spawn_thread): Likewise.
8662
8663 * threads.h (scm_current_thread, scm_all_threads): New prototypes.
8664 * threads.c (scm_current_thread, scm_all_threads): Register as
8665 primitives.
8666
8667 * dynl.c: Use scm_lt_ prefix for libltdl functions.
8668
480fa28d
NJ
86692002-09-29 Neil Jerram <neil@ossau.uklinux.net>
8670
8671 * script.c (scm_compile_shell_switches): Fix bad spelling of
8672 `explicitly' in comment.
8673
86742002-09-28 Neil Jerram <neil@ossau.uklinux.net>
8675
8676 * posix.c (scm_geteuid, scm_getegid, scm_seteuid, scm_setegid):
8677 Refer to provided? in doc string rather than deprecated feature?.
8678
3553e1d1
GH
86792002-09-24 Gary Houston <ghouston@arglist.com>
8680
8681 * inline.h (scm_double_cell): prevent reordering of statements
8682 with any following code (for GCC 3 strict-aliasing).
8683 * numbers.c (scm_make_real), num2float.i.c (FLOAT2NUM): removed
8684 the earlier version of the reordering prevention.
8685
4ad0814a
HWN
86862002-09-19 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8687
241d9cea 8688 * inline.h (scm_double_cell): move SET_GCMARK set out of if body.
4ad0814a 8689
e88e4f2e
HWN
86902002-09-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8691
8692 * gc-malloc.c (scm_gc_register_collectable_memory): more overflow
8693 protection.
8694
1e71eafb
HWN
86952002-09-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8696
8697 * inline.h: include stdio.h
8698
8699 * smob.c (free_print): abort if scm_debug_cell_accesses_p is set
8700
61ef9c1f
HWN
87012002-09-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8702
dac04e9f
HWN
8703 * gc-segment.c (scm_i_make_initial_segment): check user settings
8704 for sanity.
8705
8706 * gc-malloc.c (scm_gc_init_malloc): check user settings for
8707 sanity.
dac04e9f 8708
241d9cea 8709 * gc-freelist.c (scm_init_freelist): check user settings for sanity.
dac04e9f 8710
ffd72400
HWN
8711 * struct.h: change scm_structs_to_free to scm_i_structs_to_free
8712
8713 * gc-malloc.c (scm_gc_register_collectable_memory): use floats;
1e71eafb
HWN
8714 these won't ever wrap around with high memory usage. Thanks to
8715 Sven Hartrumpf for finding this.
ffd72400 8716
5bd4a949
HWN
8717 * gc-freelist.c: include <stdio.h>
8718
61ef9c1f
HWN
8719 * gc-malloc.c: add DEBUGINFO for mtrigger GCs.
8720
ffd0ef3b
MV
87212002-09-01 Marius Vollmer <mvo@zagadka.ping.de>
8722
a27e3d14
MV
8723 * vectors.h (SCM_VECTOR_REF): New.
8724
ffd0ef3b
MV
8725 * snarf.h (SCM_DEFINE_PUBLIC): New.
8726
f8a1712b
MV
87272002-08-30 Marius Vollmer <mvo@zagadka.ping.de>
8728
8729 * socket.c (scm_addr_vector): Added size of address to arguments.
8730 Use it to avoid accessing a non-existent path in a sockaddr_un.
8731 Changed all callers.
8732
7200a36b
HWN
87332002-08-29 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8734
1383773b
HWN
8735 * gc.h: remove DOUBLECELL card flags.
8736
8737 * gc-malloc.c (scm_calloc): try to use calloc() before calling
8738 scm_realloc().
8739
8740 * gc-segment.c (scm_i_initialize_heap_segment_data): remove card
8741 init loop; handle this from scm_init_card_freelist()
8742
8743 * gc-card.c (scm_init_card_freelist): init bit vector here.
8744
7200a36b 8745 * numbers.c (scm_make_real): prevent reordering of statements
8fa5786d 8746 num2float.i.c (FLOAT2NUM): idem
7200a36b 8747
9981de3a
HWN
87482002-08-27 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8749
8750 * eval.h: prepend libguile/ to include path
8751
19647556
MV
87522002-08-26 Marius Vollmer <mvo@zagadka.ping.de>
8753
8754 * script.c (scm_compile_shell_switches): Added "2002" to Copyright
9a5fa6e9 8755 years. Thanks to Martin Grabmüller!
19647556 8756
38d1262a
HWN
87572002-08-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8758
8759 * gc-segment.c (scm_i_get_new_heap_segment): use float in stead of
8760 unsigned numbers for computing minimum heap increment. This
8761 prevents weird results when a a negative minimum increment is
8762 computed.
8763
f800ebfb
MV
87642002-08-24 Marius Vollmer <mvo@zagadka.ping.de>
8765
8766 * gc_os_dep.c: When we have __libc_stack_end, use that directly
19647556 8767 instead of the old tricks.
f800ebfb
MV
8768
8769 * guile-snarf.in: Do not expect the input file to be the first
8770 argument after the optional "-o" option, just pass everything to
8771 the pre-processor without extracting the input file name.
8772
4a5309c9
HWN
87732002-08-23 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8774
8775 * gc-segment.c (scm_i_get_new_heap_segment): Oops. We want segment
241d9cea 8776 length *at* least SCM_MIN_HEAP_SEG_SIZE, not at most.
4a5309c9 8777
f2893a25
HWN
87782002-08-22 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8779
8780 * gc.h, gc.c: make scm_cells_allocated unsigned again. Thanks to
8781 Bill Schottstaedt for the bug report
8782
483f518b
MV
87832002-08-20 Marius Vollmer <mvo@zagadka.ping.de>
8784
8785 * print.c (scm_iprin1): Print primitives generics always as
8786 "primitive-generic" even when they have no primitive methods yet.
8787
917adc55
GH
87882002-08-17 Gary Houston <ghouston@arglist.com>
8789
8790 * coop.c (coop_create): removed bogus 2nd argument in scm_malloc
8791 call.
8792
67329a9e
HWN
87932002-08-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8794
85835e59 8795 * ports.c (scm_add_to_port_table): small bugfix.
67329a9e
HWN
8796
8797 * mallocs.c (scm_malloc_obj): use scm_gc_malloc in stead of
8798 malloc.
8799
8800 * gc-segment.c (scm_i_get_new_heap_segment): remove cluster cruft:
8801 only use SCM_MIN_HEAP_SEG_SIZE.
8802
8803 * ports.c (scm_add_to_port_table): add backwards compatibility
8804 function
8805
8806 * ports.h: use scm_i_ prefix for port table and port table size.
241d9cea 8807
f07c886a
MD
88082002-08-15 Mikael Djurfeldt <mdj@linnaeus>
8809
8810 * vports.c (scm_make_soft_port): Initialize pt variable.
8811
dc61cbc6
MV
88122002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
8813
8814 * strports.h (scm_c_eval_string_in_module,
8815 scm_eval_string_in_module): New prototypes.
8816 * strports.c (scm_eval_string_in_module): New, but use
8817 "eval-string" as the Scheme name and make second parameter
8818 optional.
8819 (scm_eval_string): Implement using scm_eval_string_in_module.
8820 (scm_c_eval_string_in_module): New.
8821 Thanks to Ralf Mattes for the suggestion!
241d9cea 8822
da220f27
HWN
88232002-08-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8824
be3ff021
HWN
8825 * gc-card.c ("sweep_card"): remove SCM_MISC_ERROR messages: print
8826 message and abort.
241d9cea 8827
be3ff021
HWN
8828 * gc-mark.c ("scm_gc_mark_dependencies"): idem.
8829
da220f27
HWN
8830 * ports.c ("scm_new_port_table_entry"): return a boxed SCM in
8831 stead of scm_t_port*. The function now takes a tag argument.
8832
eab1b259
HWN
88332002-08-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8834
8835 * gc.h: add scm_debug_cells_gc_interval to public interface
8836
8837 * gc-card.c ("sweep_card"): set scm_gc_running while sweeping.
8838
8839 * gc.c (scm_i_expensive_validation_check): separate expensive
8840 validation checks from cheap ones.
8841
ba1b2226
HWN
88422002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8843
8844 * read.c (scm_input_error): new function: give meaningful error
8845 messages, and throw read-error
8846
8847 * gc-malloc.c (scm_calloc): add scm_calloc.
8848
39e8f371
HWN
88492002-08-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8850
241d9cea 8851 * tags.h: remove GC bits documentation from the tags table.
33138b05 8852
39e8f371
HWN
8853 * read.c (INPUT_ERROR): Prepare for file:line:column error
8854 messages for errors in scm_lreadr() and friends.
8855
88562002-08-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
8857
8858 * gc-malloc.c (scm_malloc): use scm_realloc() (simplifies
241d9cea 8859 implementation).
39e8f371
HWN
8860 (scm_gc_calloc): new function
8861
26e68795 88622002-08-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
402788a9 8863
5f16b897
HWN
8864 * ports.c (scm_new_port_table_entry): init port entry to 0
8865 completely.
241d9cea 8866
402788a9
HWN
8867 * ports.c (scm_new_port_table_entry): change function from
8868 scm_add_to_port_table. This prevents cells with null-pointers from
8869 being exposed to GC.
8870
504d99c5 8871 * vports.c (scm_make_soft_port) strports.c (scm_mkstrport),
402788a9 8872 fports.c (scm_fdes_to_port): Use scm_new_port_table_entry().
c8a1bdc4 8873
504d99c5 8874 * gc.c (scm_gc_stats): add cell-yield and malloc-yield statistic
c2cbcc57
HWN
8875 to gc-stats.
8876
c8a1bdc4
HWN
8877 * numbers.c (big2str): return "0" for 0 iso. ""
8878
c2cbcc57
HWN
8879 * gc-segment.c, gc-malloc.c gc-mark.c, gc-freelist.c, gc-card.c,
8880 private-gc.h: new file
c8a1bdc4
HWN
8881
8882 * gc.c: completely revised and cleaned up the GC. It now uses lazy
8883 sweeping. More documentation in workbook/newgc.text
8884
aea06b34
MV
88852002-07-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8886
8887 * random.c (rstate_free): Return zero.
8888
35060ae9
DH
88892002-07-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
8890
8891 * environments.c (remove_key_from_alist): Removed.
8892
8893 (obarray_remove): Simplified.
8894
6a535440
SJ
88952002-07-24 Stefan Jahn <stefan@lkcc.org>
8896
241d9cea 8897 * continuations.h: ia64: Include <signal.h> before
6a535440
SJ
8898 <sys/ucontext.h>.
8899
bcbd25b7
DH
89002002-07-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
8901
8902 * modules.c (scm_sym2var): Don't compare SCM values with ==.
8903
26e68795 89042002-07-21 Han-Wen Nienhuys <hanwen@cs.uu.nl>
1d1559ce
HWN
8905
8906 * goops.c (scm_compute_applicable_methods): use
8907 scm_remember_upto_here_1 iso scm_remember_upto_here
8908
8909 * macros.c: include deprecation.h
8910
504d99c5 8911 * vectors.c (scm_vector_move_right_x): remove side effect in
1d1559ce 8912 macro arg.
504d99c5 8913 (scm_vector_move_left_x): idem.
1d1559ce
HWN
8914
8915 * net_db.c, posix.c, socket.c: variable naming: change ans to
8916 result.
8917
8918 * sort.c (scm_merge_vector_x): accept vector as argument
8919 iso. SCM*. This is needed for full GC correctness.
8920
8921 * gc.h: undo previous undocumented changes related to #ifdef
8922 GENGC.
8923
26e68795 89242002-07-20 Han-Wen Nienhuys <hanwen@cs.uu.nl>
34d19ef6
HWN
8925
8926 * *.c: add space after commas everywhere.
8927
8928 * *.c: use SCM_VECTOR_SET everywhere, where a vector is written.
8929 Document cases where SCM_WRITABLE_VELTS() is used.
241d9cea 8930
34d19ef6
HWN
8931 * vectors.h (SCM_VELTS): prepare for write barrier, and let
8932 SCM_VELTS() return a const pointer
8933 (SCM_VECTOR_SET): add macro.
8934
3063e30a
DH
89352002-07-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
8936
8937 * eval.c (SCM_CEVAL), macros.c (macro_print, scm_makmacro,
8938 scm_sym_macro, scm_macro_type), macros.h (scm_makmacro):
8939 Deprecated the special kind of built-in dynamic syntax transformer
8940 that was inaccurately named "macro". Note: The built-in syntax
8941 transformers that are named "mmacro" or "memoizing-macro" still
8942 exist, and it is these which come much closer to what one would
8943 call a macro.
8944
4c5f8e8f
NJ
89452002-07-13 Neil Jerram <neil@ossau.uklinux.net>
8946
8947 * eval.c (unmemocopy): Fix for
8948 1001-local-eval-error-backtrace-segfaults (unmemoization crash
8949 with internal definitions and local-eval).
8950
4f6f9ae3
GH
89512002-07-12 Gary Houston <ghouston@arglist.com>
8952
8953 * dynl.c: Don't define stub procedures if DYNAMIC_LINKING is not
8954 defined. They don't do anything useful, especially since the
8955 only case where DYNAMIC_LINKING is undefined seems to be
8956 when --with-modules=no is given to configure, which is basically
8957 requesting that the "dynamic linking module" be omitted.
8958
8959 * Makefile.am (libguile_la_SOURCES): move dynl.c from
8960 libguile_la_SOURCES to EXTRA_libguile_la_SOURCES.
8961
8962 * extensions.c (load_extension): check DYNAMIC_LINKING for
8963 scm_dynamic_call.
8964 * init.c (scm_init_guile_1): check DYNAMIC_LINKING for
8965 scm_init_dynamic_linking.
8966
c21935e6
MV
89672002-07-10 Marius Vollmer <mvo@zagadka.ping.de>
8968
8969 * guile.c, iselect.h, net_db.c, posix.c, socket.c: No need to
8970 check for Cygwin when including <winsock2.h>, this is already
8971 check for by configure. Thus, revert change from 2002-07-07.
8972
ee95d597
GH
89732002-07-10 Gary Houston <ghouston@arglist.com>
8974
9540b68f 8975 * eq.c: include <string.h>
ee95d597
GH
8976 * dynl.c: docstring editing.
8977
46732b54
GH
89782002-07-09 Gary Houston <ghouston@arglist.com>
8979
8980 * dynl.c (scm_dynamic_call): docstring editing.
8981
c09d12e0
RB
89822002-07-08 Rob Browning <rlb@defaultvalue.org>
8983
8984 * gc_os_dep.c: HURD fixes.
8985
3f6571eb
MV
89862002-07-07 Marius Vollmer <mvo@zagadka.ping.de>
8987
8988 Crosscompiling and Cygwin fixes by Jan Nieuwenhuizen. Thanks!
8989
8990 * Makefile.am: Override default rule for c-tokenize.$(OBJECT);
8991 this should be compiled for BUILD host.
8992 Override default rule for
8993 guile_filter_doc_snarfage$(EEXECT); this should run on BUILD host.
8994 Add missing $(EXEEXT) to guile_filter_doc_snarfage invocation.
8995 (snarf2checkedtexi): Use GUILE_FOR_BUILD instead of preinstguile.
8996
8997 * guile.c, iselect.h, net_db.c, posix.c, socket.c: Do not include
8998 <winsock2.h> on Cygwin even when we have it.
8999
bd987b8e
DH
90002002-07-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
9001
9002 * __scm.h (SCM_CAUTIOUS), eval.c (scm_eval_args, deval_args,
9003 SCM_CEVAL): Removed compile time option SCM_CAUTIOUS to clean up
9004 the code. Full number of arguments checking of closures is
9005 mandatory now. However, the option to disable the checking has
9006 most probably not been used anyway.
9007
8505e285
DH
90082002-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
9009
bd987b8e
DH
9010 * __scm.h (SCM_RECKLESS), backtrace.c (SCM_ASSERT), debug.c
9011 (scm_debug_options), eval.c (scm_lookupcar, scm_lookupcar1,
9012 scm_badargsp, SCM_CEVAL, SCM_APPLY, scm_map, scm_for_each),
9013 feature.c (scm_init_feature), gsubr.c (scm_gsubr_apply), numbers.c
9014 (scm_logand, scm_logior, scm_logxor, scm_i_dbl2big), srcprop.c
9015 (scm_source_properties, scm_set_source_properties_x,
9016 scm_source_property): Removed compile time option SCM_RECKLESS to
9017 clean up the code. Full number of arguments checking of closures
9018 is mandatory now. However, the option to disable the checking has
9019 most probably not been used anyway.
8505e285
DH
9020
9021 * srcprop.c (scm_source_properties, scm_set_source_properties_x,
9022 scm_source_property): Use !SCM_CONSP instead of SCM_NCONSP.
9023
2ee08a28
GH
90242002-06-30 Gary Houston <ghouston@arglist.com>
9025
732b9327
GH
9026 * dynl.c: Removed all SCM_DEFER_INTS/SCM_ALLOW_INTS, which won't
9027 do anything useful. Added a comment about need for a mutex if
9028 pre-emptive threading is supported.
9029
2ee08a28
GH
9030 * posix.c (scm_convert_exec_args), dynl.c
9031 (scm_make_argv_from_stringlist): static procs: 1) renamed both to
9032 allocate_string_pointers. 2) simplified: don't reallocate the
9033 strings, just make an array of pointers 3) avoid memory leaks on
9034 error 4) let the procedure report errors in its own name.
9035 Consequences: 1) the procedures now assume that SCM strings are
9036 nul-terminated, which should always be the case. 2) Since strings
9037 are not reallocated, it's now possible for strings passed to
9038 dynamic-args-call to be mutated.
9039
c136c920
DH
90402002-06-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
9041
9042 * __scm.h, eval.c, eval.h: Removed compile time option
9043 MEMOIZE_LOCALS to clean up the code. Now, caching of local
9044 variable positions during memoization is mandatory. However, the
9045 option to disable the caching has most probably not been used
9046 anyway.
9047
e540802f
MV
90482002-06-18 Marius Vollmer <mvo@zagadka.ping.de>
9049
9050 * print.c (scm_simple_format): Print missing part of format before
9051 ~% control. Thanks to Daniel Skarda!
9052
4c1ffcdd
MV
90532002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
9054
9055 * mkstemp.c: Added exception notice to license statement.
9056
ba1b077b
MV
90572002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
9058
8dc434c7
MV
9059 * numbers.c (mem2ureal): When returning an inexact zero, make sure
9060 it is represented as a floating point value so that we can change
9061 its sign.
9062
ba1b077b
MV
9063 From John W. Eaton <jwe@bevo.che.wisc.edu>
9064
9065 * numbers.c (idbl2str): Don't omit sign when printing negative zero.
9066
74c58131
TTN
90672002-05-14 Thien-Thi Nguyen <ttn@giblet.glug.org>
9068
9069 * gc_os_dep.c: For I386/OPENBSD, allow for `__i386__'
0926d46e 9070 in addition to `i386'. Thanks to Dale P. Smith.
74c58131 9071
8766d4b5
MV
90722002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
9073
9074 * eq.c (real_eqv): New.
9075 (scm_eqv_p): Use it when comparing reals and complexes.
9076
9077 * numbers.c: Include <string.h>, for strncmp.
9078 (mem2complex): Do not create negative NaNs.
9079 (scm_leq_p, scm_geq_p): Explicitely return #f when comparing a
9080 NaN.
9081 (scm_inexact_to_exact): Signal error when converting a NaN.
74c58131 9082
1d8c3cad
MV
90832002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
9084
9085 * posix.c (scm_putenv): Handle removing variables explicitely by
9086 calling unsetenv.
9087
9088 From John W. Eaton.
74c58131 9089
1d8c3cad
MV
9090 * numbers.h: Conditionally include floatingpoint.h, ieeefp.h, and
9091 nan.h. Provide declarations for scm_inf_p, scm_nan_p, scn_inf,
9092 and scm_nan.
9093 * numbers.c: [SCO && ! HAVE_ISNAN] (isnan): New function.
9094 [SCO && ! HAVE_ISINF] (isinf): New function.
9095 (xisinf, xisnan): New functions.
9096 (IS_INF): Delete.
9097 (isfinite): Define in terms of xisinf.
9098 (scm_inf_p, scm_nan_p): New functions.
9099 (guile_Inf, guile_NaN): New file-scope vars.
9100 (guile_ieee_init): New function.
9101 (scm_inf, scm_nan): New functions.
9102 (idbl2str): Handle Inf and NaN. Remove funny label and
9103 corresponding gotos.
9104 (ALLOW_DIVIDE_BY_ZERO): New macro.
9105 (scm_divide): Allow division by zero to occur if
9106 ALLOW_DIVIDE_BY_ZERO is defined.
9107 Handle bignums and ints as special cases.
9108
9109 Additional stuff by me:
9110
9111 numbers.c (mem2ureal): Recognize "inf.0" and "nan.xxx".
9112 (scm_even_p, scm_odd_p): Treat infinity as even and odd.
9113 (iflo2str): Don't output a '+' for negative numbers or for Inf and
9114 NaN. They will provide their own sign.
9115 (scm_divide): Only allow divides by inexact zeros. Dividing by
9116 exact zeros still signals an errors.
74c58131 9117
7a0c65eb
TTN
91182002-04-22 Thien-Thi Nguyen <ttn@giblet.glug.org>
9119
87b72063 9120 * goops.h (scm_slot_exists_p): Rename from scm_slots_exists_p.
7a0c65eb 9121 * goops.c (scm_slot_exists_p): Rename from scm_slots_exists_p.
504d99c5 9122 (scm_slot_exists_p): Rename from scm_slots_exists_p.
7a0c65eb
TTN
9123 Thanks to Andreas Rottmann.
9124
5e423a39
GH
91252002-04-20 Gary Houston <ghouston@arglist.com>
9126
9127 * removal of unused fields in root state (thanks to Christopher
9128 Cramer for pointing out the disuse.)
9129 * root.h (scm_root_state): removed def_inp, def_outp, def_errp.
1841c44a 9130 (scm_def_inp, scm_def_outp, scm_def_errp): removed.
b6287a25 9131
5e423a39
GH
9132 * root.c (root_mark): don't mark them.
9133 (scm_make_root): don't set them to #f.
9134 * init.c (scm_init_standard_ports): don't initialise with the
9135 default ports.
9136
9d2cce76
MV
91372002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
9138
9139 * Makefile.am (EXTRA_DIST): Added cpp_err_symbols.c and
9140 cpp_sig_symbols.c.
9141
91422002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
9143
9144 * guile-snarf.in: Do not clean input file. This would write to
9145 the $(srcdir) during a VPATH build, which is not allowed. It also
9146 isn't needed since it only works when an output filename has been
9147 specified and in that case we don't need to clean the input file
9148 because the output file will already exist.
9149
6f79b6cc
MV
91502002-03-31 Marius Vollmer <mvo@zagadka.ping.de>
9151
9152 * guile-snarf: Install the trap for removing $cleanfile only when
9153 the value of $cleanfile is actually known.
9154
21550b10
RB
91552002-04-10 Rob Browning <rlb@defaultvalue.org>
9156
9157 * .cvsignore: add versiondat.h and *.c.clean.c.
9158
bc76d628
DH
91592002-03-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
9160
9161 * srcprop.[ch] (scm_c_source_property_breakpoint_p): New
9162 function, replaces macro SRCBRKP.
9163
9164 (SRCBRKP): Deprecated.
9165
9166 * eval.c (SCM_CEVAL): Replaced use of SRCBRKP by call to
9167 scm_c_source_property_breakpoint_p. Removed some use of arg1 as
9168 temporary variable.
9169
5132eef0
DH
91702002-03-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
9171
9172 * debug.h, eval.c: Deprecated CHECK_ENTRY, CHECK_APPLY and
9173 CHECK_EXIT and removed all references to them.
9174
680516ba
DH
91752002-03-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
9176
9177 * debug.h (scm_ready_p, debug_print): Removed declarations.
9178
9179 * eval.c (EVALCELLCAR): Removed.
9180
9181 (SCM_CEVAL): Eliminated label loopnoap. Removed side-effecting
9182 operation from condition.
9183
e2bd68e0
MV
91842002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
9185
9186 * guile-snarf.in: When the output filename is "-", write to
9187 stdout. When no "-o" option is given, use "-" as the output
9188 filename (i.e., stdout). Only 'clean' the inputfile or remove the
9189 output file on error when the output file name is not "-". Define
9190 the preprocessor macro SCM_MAGIC_SNARFER while snarfing.
9191
9192 * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
9193
ab1f1094
DH
91942002-03-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
9195
9196 * eval.c (SCM_CEVAL, SCM_APPLY): Eliminated labels wrongnumargs
9197 and the corresponding goto statements. Removed redundant code.
9198
42030fb2
DH
91992002-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
9200
9201 * eval.c (SCM_CEVAL): Minimized scope of variable arg2.
9202 Eliminated redundant SCM_IMP check. Exlined call to EVALCAR.
9203 Re-enabled handing of rpsubrs and asubrs.
9204
e050d4f8
DH
92052002-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
9206
9207 * eval.c (SIDEVAL): Removed.
9208
9209 (SCM_CEVAL): Minimized scope of variable orig_sym. Eliminated
9210 goto-labels cdrxnoap, cdrxbegin and nontoplevel_cdrxnoap. Changed
9211 argument checking order for set! to locals, variables and symbols.
9212 Improvements to control structure. Removed some uses of arg1 and
9213 arg2 as temporary variables.
9214
a6d344d3
TTN
92152002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
9216
9217 * guile-snarf.in: Remove "--compat=1.4" support.
9218 Add "-d" and "-D" support.
9219
9220 (deprecated_list): New var.
9221 (compat_mode_clean_xxx): Delete.
9222 (grep_deprecated): New func.
9223 ("main"): If "-d" or "-D", call `grep_deprecated'.
9224
3939e9df
NJ
92252002-03-15 Neil Jerram <neil@ossau.uklinux.net>
9226
387d418c
NJ
9227 * hooks.h: Change scm_t_c_hookype_t everywhere to
9228 scm_t_c_hook_type.
9229
bb2c02f2 9230 Docstring fixes:
a6d344d3 9231
bb2c02f2
NJ
9232 * strings.c (scm_string_p): Change unnecessary `iff' to `if'.
9233
9234 * ports.c (scm_sys_make_void_port): Use `@file'.
9235
9236 * numbers.c (scm_number_p, scm_real_p): Use `otherwise' rather
9237 than `else'.
9238
9239 * macros.c (scm_makmacro): Don't say that the form replaces its
9240 source, because it doesn't.
9241 (scm_makmmacro): Clarify difference between this and scm_makmacro.
9242
9243 * backtrace.c (scm_display_error), filesys.c (scm_umask,
9244 scm_select, scm_basename), goops.c (scm_method_generic_function),
9245 numbers.c (scm_integer_length), posix.c (scm_getgroups, scm_execl,
9246 scm_setlocale, scm_flock), socket.c (scm_shutdown): Correct
9247 spelling mistakes.
9248
3939e9df
NJ
9249 * debug.c (scm_debug_options), eval.c
9250 (scm_eval_options_interface), read.c (scm_read_options): Change
9251 incorrect @var in docstring to @code.
9252
3b3cc781
MV
92532002-03-14 Marius Vollmer <mvo@zagadka.ping.de>
9254
500b0d5b
MV
9255 * unif.c (singp): Use SCM_REALP instead of SCM_SLOPPY_REALP.
9256
3b3cc781
MV
9257 * snarf.h (SCM_SNARF_INIT): Add "^:^" after code so that
9258 guile-snarf can remove trailing non-init code.
9259
9260 * guile-snarf.in (modern_snarf): Remove everything following and
9261 including "^:^" from the output.
9262
dff98306
DH
92632002-03-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
9264
9265 * eval.c (SCM_CEVAL), srcprop.h (SRCBRKP): Eliminated union 't'.
9266
9267 * eval.c (SCM_CEVAL): Exlined call to EVALCAR.
9268
2287fb53
TTN
92692002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
9270
9271 * guile-snarf.in: Update copyright.
9272 Rewrite to internalize error handling.
9273 Add "--compat=1.4" handling.
9274 Add commentary.
9275
9276 * Makefile.am (libpath.h): Use @top_srcdir_absolute@.
9277 (snarfcppopts): New var.
9278 (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
9279 (.c.doc): Use $(snarfcppopts).
9280
822250a4
TTN
9281 * alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
9282 continuations.c, debug-malloc.c, debug.c, deprecation.c, dynl.c,
9283 dynwind.c, environments.c, eq.c, error.c, eval.c, evalext.c,
9284 extensions.c, feature.c, filesys.c, fluids.c, fports.c, gc.c,
9285 goops.c, gsubr.c, guardians.c, hash.c, hashtab.c, hooks.c,
9286 ioext.c, iselect.c, keywords.c, lang.c, list.c, load.c, macros.c,
9287 modules.c, net_db.c, numbers.c, objects.c, objprop.c, options.c,
9288 pairs.c, ports.c, posix.c, print.c, procprop.c, procs.c,
9289 properties.c, ramap.c, random.c, rdelim.c, read.c, regex-posix.c,
9290 root.c, rw.c, scmsigs.c, script.c, simpos.c, socket.c, sort.c,
9291 srcprop.c, stackchk.c, stacks.c, stime.c, strings.c, strop.c,
9292 strorder.c, strports.c, struct.c, symbols.c, threads.c, throw.c,
9293 unif.c, values.c, variable.c, vectors.c, version.c, vports.c,
9294 weaks.c: Retire inclusion guard macro SCM_MAGIC_SNARFER.
9295
b7798e10
DH
92962002-03-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
9297
9298 * eval.c (SCM_CEVAL): Got rid of the last reference to t.lloc.
9299 The next step will be to remove the union 't' and simplify the
9300 code of SCM_CEVAL that way.
9301
04a98cff
NJ
93022002-03-12 Neil Jerram <neil@ossau.uklinux.net>
9303
9304 * iselect.c (collisionp, gnfds, greadfds, gwritefds, gexceptfds,
9305 rreadfds, rwritefds, rexceptfds): Made static.
9306
9307 * gc.c (terminating), fports.c (terminating): Renamed
9308 scm_i_terminating.
9309
16d98032
MV
93102002-03-11 Marius Vollmer <mvo@zagadka.ping.de>
9311
5046250e
MV
9312 * numbers.c (scm_divide): Adapt code from libstdc++/f2c to void
9313 potential overflow problems. Thanks to John W Eaton!
9314
8794207d
MV
9315 * strop.c (string_capitalize_x): Treat characters as unsigned so
9316 that 8-bit chars work. Thanks to David Pirotte!
16d98032 9317
1d15ecd3
DH
93182002-03-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9319
9320 * eval.c (SCM_CEVAL): Cleaned up the handling of 'slot-ref',
9321 'slot-set!' and 'nil-cond'. Removed some uses of t.arg1, arg2 and
9322 proc as temporary variables. Introduced temporary variables with
9323 hopefully descriptive names for clarification. Replaced SCM_N?IMP
9324 by a more explicit predicate in some places.
9325
93262002-03-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
f12745b6
DH
9327
9328 * eval.c (SCM_CEVAL): Cleaned up the handling of #@dispatch.
9329 Added lots of comments regarding the implementation of #@dispatch.
9330 Changed intra-procedure communication to use t.arg1 instead of
9331 arg2. Removed some uses of t.arg1, t.lloc and proc as temporary
9332 variables. Introduced temporary variables with hopefully
9333 descriptive names for clarification. Replaced SCM_N?IMP by a more
9334 explicit predicate in some places. Use SCM_INSTANCE_HASH instead
9335 of computing the expression explicitly. Eliminate now unused
9336 label nontoplevel_cdrxbegin.
9337
9338 * goops.h (SCM_INSTANCE_HASH): New macro.
9339
9340 * objects.h (SCM_CMETHOD_FORMALS, SCM_CMETHOD_BODY): New macros.
9341
1ebf1566
TTN
93422002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
9343
9344 * Makefile.am (bin_SCRIPTS): Revive this decl, w/ initial element
9345 "guile-snarf" moved back from `noinst_SCRIPTS'.
9346
020c890c
NJ
93472002-03-08 Neil Jerram <neil@ossau.uklinux.net>
9348
58d233cc
NJ
9349 * srcprop.c (scm_set_source_property_x): If SRCPROPS obj already
9350 exists when adding a source property other than those that are
9351 handled explicitly, add the new property to the SRCPROPS obj's
9352 plist.
9353
020c890c
NJ
9354 * debug.h (SCM_MAX_FRAME_SIZE): Remove incorrect comment about use
9355 of SCM_MAX_FRAME_SIZE as a bit mask; it isn't used like this.
9356
9357 * eval.c (SCM_CEVAL): Don't store scm_debug_eframe_size in
9358 debug.status. It isn't needed, and it can overflow the bits
9359 reserved for it (which may lead to a segv or a GC abort).
9360
3f04400d
DH
93612002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
9362
9363 * eval.c (SCM_CEVAL): Cleaned up the handling of 'apply'. Removed
9364 side-effecting operations from conditions and macro calls.
9365 Replaced SCM_N?IMP by a more explicit predicate in some places.
9366 Minimized the scope of some variables.
9367
97820583
SJ
93682002-03-02 Stefan Jahn <stefan@lkcc.org>
9369
9370 * convert.i.c: Fixed int <-> long conversions which would have
9371 failed if their sizes were different.
9372
38ace99e
DH
93732002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
9374
9375 * eval.c (SCM_CEVAL): Cleaned up the handling of 'if', 'let',
9376 'letrec' and 'set*': Removed some uses of t.arg1, t.lloc and proc
9377 as temporary variables. Removed side-effecting operations from
9378 conditions and macro calls. Introduced temporary variables with
9379 hopefully descriptive names for clarification. Replaced SCM_N?IMP
9380 by a more explicit predicate in some places. Removed code that
9381 was conditionally compiled if SICP was defined - which it never
9382 is.
9383
e5cb71a0
DH
93842002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
9385
9386 * eval.c (SCM_CEVAL): Cleaned up the handling of 'cons' and 'do':
9387 Removed some uses of t.arg1 and proc as temporary variables.
9388 Removed side-effecting operations from conditions and macro calls.
9389 Introduced temporary variables with hopefully descriptive names
9390 for clarification. Replaced SCM_N?IMP by a more explicit
9391 predicate in some places.
9392
6a0f6ff3
DH
93932002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
9394
9395 * eval.c (scm_badargsp, SCM_CEVAL): Replaced SCM_N?IMP by a more
9396 explicit predicate in some places.
9397
9398 (CHECK_EQVISH): Removed.
9399
9400 (SCM_CEVAL): Removed some uses of t.arg1 and proc as temporary
9401 variables. Removed side-effecting operations from conditions and
9402 macro calls. Introduced temporary variables for clarification.
9403 Sorted if-else-if check for the type of the last form in a list by
9404 frequency. Avoided some unnecessary tail-recursion calls.
9405
228a24ef
DH
94062002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
9407
9408 * gc.c (SCM_HEAP_SEG_SIZE, CELL_UP, CELL_DN, NEXT_DATA_CELL,
9409 init_heap_seg, alloc_some_heap), gc.h (struct scm_cell, struct
9410 scm_t_cell, SCM_CELLPTR, SCM_GC_CARD_SIZE,
9411 SCM_GC_IN_CARD_HEADERP), tags.h (SCM_CELLP): Renamed the struct
9412 scm_cell and all its uses to scm_t_cell in accordance to Guile's
9413 naming scheme for types.
9414
9415 * alist.c (scm_acons), convert.i.c (CTYPES2UVECT,
9416 CTYPES2UVECT_OPTIONAL), coop-threads.c (scm_call_with_new_thread,
9417 scm_spawn_thread), debug.c (scm_make_debugobj), environments.c
9418 (scm_make_environment), eval.c (scm_closure), fports.c
9419 (scm_fdes_to_port), gc.c (scm_deprecated_newcell,
9420 scm_deprecated_newcell2), inline.h (scm_alloc_cell, scm_cell),
9421 list.c (SCM_I_CONS), numbers.c (scm_i_mkbig), pairs.c (scm_cons),
9422 ports.c (scm_void_port), procs.c (scm_c_make_subr, scm_makcclo),
9423 smob.c (scm_make_smob), smob.h (SCM_NEWSMOB), strings.c
9424 (scm_take_str, scm_allocate_string), strports.c (scm_mkstrport),
9425 unif.c (scm_make_uve), variable.c (make_variable), vectors.c
9426 (scm_c_make_vector), vports.c (scm_make_soft_port): Renamed
9427 scm_alloc_cell to scm_cell.
9428
9429 * environments.c (core_environments_observe), gc.c
9430 (scm_deprecated_newcell2), goops.c (wrap_init, scm_wrap_object),
9431 inline.h (scm_alloc_double_cell, scm_double_cell), num2float.i.c
9432 (FLOAT2NUM), numbers.c (scm_make_real), procs.c
9433 (scm_make_procedure_with_setter), smob.h (SCM_NEWSMOB2,
9434 SCM_NEWSMOB3), struct.c (scm_make_struct, scm_make_vtable_vtable),
9435 symbols.c (scm_mem2symbol, scm_mem2uninterned_symbol), weaks.c
9436 (allocate_weak_vector): Renamed scm_alloc_double_cell to
9437 scm_double_cell.
9438
edb810bb
SJ
94392002-02-27 Stefan Jahn <stefan@lkcc.org>
9440
9441 * convert.i.c, convert.c: Better range checking.
9442
9443 * inet_aton.c, fports.c: Commented the inclusion of <winsock2.h>.
9444
1ebf1566 9445 * deprecation.c (vsnprintf): Define to `_vsnprintf' for
edb810bb
SJ
9446 Windows (MinGW).
9447
327d4dd3
TTN
94482002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
9449
9450 * Makefile.am: Update path to pre-inst-guile automake frag.
9451
89d7a92c 94522002-02-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
646052c0
DH
9453
9454 * gc.c (scm_gc_sweep): Make it compile even when deprecated
9455 features are excluded.
9456
89d7a92c 94572002-02-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
bac0e232
DH
9458
9459 * num2integral.i.c (NUM2INTEGRAL): Fixed signedness problem.
9460
4f2716b6
GH
94612002-02-25 Gary Houston <ghouston@arglist.com>
9462
9463 * convert.c: include <string.h> for convert_i.c.
9464
46151112
RB
94652002-02-24 Rob Browning <rlb@defaultvalue.org>
9466
9467 * .cvsignore: add stamp-h1.
9468
cd328b4f
NJ
94692002-02-21 Neil Jerram <neil@ossau.uklinux.net>
9470
9471 * unif.c (scm_array_to_list): Correct name, which had been
9472 accidentally changed to scm_t_arrayo_list!
9473
c709de7f
MD
94742002-02-20 Mikael Djurfeldt <mdj@linnaeus>
9475
9476 * gc.c (scm_gc_sweep): Print an error message when aborting due to
9477 underflowing scm_mallocated.
9478
c1965d31
MV
94792002-02-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
9480
9481 * gc.h, gc.c (scm_must_malloc, scm_must_realloc, scm_must_strdup,
9482 scm_must_strndup, scm_done_malloc, scm_done_free, scm_must_free):
9483 Reimplemented using the new scm_gc_malloc, etc., functions and
9484 deprecated.
9485
b606945b
TTN
94862002-02-11 Thien-Thi Nguyen <ttn@giblet.glug.org>
9487
9488 * Makefile.am (bin_PROGRAMS): Move `guile_filter_doc_snarfage'
9489 to `noinst_PROGRAMS'.
9490 (bin_SCRIPTS): Move all values to `noinst_SCRIPTS'; delete.
9491 (noinst_PROGRAMS, noinst_SCRIPTS): New.
9492
7c686ba8
MV
94932002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
9494
9495 * gc.h, gc.c (scm_gc_sweep): Issue deprecation warning when
9496 non-zero is returned from a port or smob free function.
9497 (scm_malloc, scm_realloc, scm_strndup, scm_strdup,
9498 scm_gc_register_collectable_memory,
9499 scm_gc_unregister_collectable_memory, scm_gc_malloc,
9500 scm_gc_realloc, scm_gc_free, scm_gc_strndup, scm_gc_strdup): New.
9501
9502 * backtrace.c, continuations.c, convert.i.c, coop-threads.c,
9503 debug-malloc.c, dynl.c, environments.c, environments.h,
9504 extensions.c, filesys.c, fports.c, gc.c, gc.h, gh_data.c, goops.c,
9505 guardians.c, hooks.c, init.c, keywords.c, load.c, numbers.c,
9506 ports.c, posix.c, procs.c, rdelim.c, regex-posix.c, root.c,
9507 smob.c, stime.c, strings.c, struct.c, struct.h, symbols.c, unif.c,
9508 vectors.c, weaks.c: Use scm_gc_malloc/scm_malloc and
9509 scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
9510 appropriate. Return zero from smob and port free functions.
9511
9512 * debug-malloc.c (scm_malloc_reregister): Handle "old == NULL".
9513
9514 * deprecation.h, deprecation.c: Reimplemented to allow deprecation
9515 messages while the GC is running.
9516 (scm_c_issue_deprecation_warning_fmt): New.
9517
9518 * fports.c (scm_setvbuf): Reset read buffer to saved values when
9519 it is pointing to the putback buffer.
9520
66adc0a6
TTN
95212002-02-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
9522
9523 * gsubr.c (create_gsubr): On "too many args" error,
9524 also display arg count and name. Thanks to Bill Schottstaedt.
9525
0187b4f4
TTN
95262002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
9527
9528 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
9529
9530 (bin_SCRIPTS): Remove guile-snarf-docs-texi.
9531 (alldotdocfiles, snarf2checkedtexi, dotdoc2texi): New vars.
9532 (guile.texi, guile-procedures.texi): Use $(dotdoc2texi).
9533
9534 * guile-snarf-docs-texi.in: Bye bye.
9535
402e687c
MV
95362002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
9537
9538 * symbols.c (scm_make_symbol): Fix typo in docstring.
9539
9540 * symbols.h (scm_mem2uninterned_symbol, scm_symbol_interned_p,
9541 scm_make_symbol): New prototypes.
9542
319b98ed
MV
95432002-02-03 Marius Vollmer <mvo@zagadka.ping.de>
9544
9545 * symbols.h (SCM_SET_SYMBOL_HASH): Removed.
9546 (SCM_SYMBOL_INTERNED_P): New.
9547 * symbols.c (scm_symbol_hash): Use scm_ulong2num instead of
9548 SCM_MAKINUM since hash values can well be bignums.
9549 (scm_mem2symbol): Only use hash values below SCM_T_BITS_MAX/2.
9550 This signals a interned symbol.
9551 (scm_mem2uninterned_symbol, scm_symbol_interned_p,
9552 scm_make_symbol): New.
0187b4f4 9553
319b98ed
MV
9554 * print.c (scm_iprin1): Print uninterned symbols unreadably.
9555
34472dfe
TTN
95562002-02-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
9557
9558 * __scm.h (HAVE_UINTPTR_T): Only define if UINTPTR_T attributes
9559 are defined: UINTPTR_MAX, INTPTR_MAX, INTPTR_MIN.
0187b4f4 9560 Thanks to Dave Love.
34472dfe 9561
1b39c2e3
MV
95622002-01-31 Marius Vollmer <mvo@zagadka.ping.de>
9563
9564 * symbols.c (scm_gensym): Use " g" as default prefix, not "g".
319b98ed 9565 This might help to make unintended clashes less likely.
1b39c2e3
MV
9566 (scm_string_to_symbol): Protect the string until the symbols is
9567 created.
9568
1fa86ca5
SJ
95692002-01-31 Stefan Jahn <stefan@lkcc.org>
9570
9571 * convert.c, convert.h, convert.i.c: New files containing C
34472dfe 9572 array to Scheme conversion helpers meant to be replacement
1fa86ca5
SJ
9573 functions for the deprecated gh interface.
9574
9575 * Makefile.am: Setup rules for new `convert.*' files.
9576
af68e5e5
SJ
95772002-01-28 Stefan Jahn <stefan@lkcc.org>
9578
9579 * symbols.c (scm_c_symbol2str): New function, replacement for
9580 `gh_scm2newsymbol()'.
9581
34472dfe 9582 * strings.c (scm_c_substring2str): New function. Proper
af68e5e5
SJ
9583 replacement for `gh_get_substr()'.
9584
9585 * socket.c: Include `stdint.h' if available for the `uint32_t'
9586 declaration.
9587
504d99c5 9588 * scmsigs.c (scm_sigaction): Initialize `chandler' (inhibits
af68e5e5
SJ
9589 compiler warning).
9590
9591 * backtrace.c: Include `lang.h' for GUILE_DEBUG conditional.
9592
c96d76b8 95932002-01-22 Neil Jerram <neil@ossau.uklinux.net>
34472dfe 9594
c96d76b8 9595 Other changes unrelated to Elisp...
34472dfe 9596
c96d76b8
NJ
9597 * eval.c (scm_m_if): Use s_if rather than repeating string literal
9598 "if".
9599 (comments): Fix a few typos.
9600 (scm_for_each): Add parentheses around oddly unparenthesized
9601 if/while conditions.
9602
9603 * read.c (scm_read_opts): Add full stop at end of doc for
9604 `keywords' option.
9605
9606 * script.c (scm_compile_shell_switches): Use scm_str2symbol
9607 instead of gh_symbol2scm.
9608
9609 * srcprop.h (SRCPROPBRK): Return C type rather than SCM.
9610 (SRCBRKP): Use SRCPROPBRK rather than duplicating its logic.
9611
9612 * srcprop.c (scm_srcprops_to_plist, scm_source_property): Change
9613 SRCPROPBRK (x) to SCM_BOOL (SRCPROPBRK (x)).
9614
9615 First batch of changes for Elisp support...
9616
9617 * alist.c, async.c, boolean.c, dynl.c, eval.c, filesys.c,
9618 fluids.c, list.c, load.c, options.c, posix.c, print.c, sort.c,
9619 throw.c, vectors.c, weaks.c: Add #include for lang.h.
9620
9621 * eval.c, eval.h, init.c, lang.c, lang.h: Use SCM_ENABLE_ELISP to
9622 conditionalize compilation and initialization of Elisp support
9623 function.
34472dfe 9624
c96d76b8
NJ
9625 * alist.c (scm_assq, scm_assv, scm_assoc), async.c
9626 (scm_asyncs_pending, scm_run_asyncs, noop), backtrace.c
9627 (scm_set_print_params_x), dynl.c (scm_make_argv_from_stringlist),
9628 filesys.c (fill_select_type, retrieve_select_type), fluids.c
9629 (scm_swap_fluids, scm_swap_fluids_reverse), list.c (scm_null_p,
9630 scm_ilength, scm_append_x, scm_last_pair, scm_reverse,
9631 scm_reverse_x, scm_list_ref, scm_list_set_x, scm_list_cdr_set_x,
bbd26b5a
NJ
9632 scm_c_memq, scm_memv, scm_member), load.c (scm_search_path),
9633 options.c (change_option_setting, scm_options), posix.c
9634 (environ_list_to_c), print.c (scm_iprlist), throw.c
9635 (scm_exit_status), vectors.c (scm_vector), weaks.c
9636 (scm_weak_vector): Use SCM_NULL_OR_NIL_P instead of SCM_NULLP.
c96d76b8
NJ
9637
9638 * boolean.c (scm_not): Use `SCM_FALSEP || SCM_NILP' instead of
9639 just SCM_FALSEP.
34472dfe 9640
c96d76b8
NJ
9641 * boolean.c (scm_boolean_p): Use `SCM_BOOLP || SCM_NILP' instead
9642 of just SCM_BOOLP.
9643
9644 * eval.c (scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify,
9645 s_t_ify, scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify,
9646 scm_m_0_ify, s_1_ify, scm_m_1_ify): Removed.
9647 (scm_m_atfop): Support function aliasing. Support both function
9648 args, which need transformation, and macro args, which do not.
9649 Add explanatory comments.
9650 (SCM_CEVAL): In switch cases for SCM_IM_AND, SCM_IM_COND,
9651 SCM_IM_DO, SCM_IM_IF and SCM_IM_OR, add `|| SCM_NILP' to existing
9652 checks for SCM_FALSEP. In switch case for SCM_IM_NIL_COND, use
9653 SCM_NULLP || SCM_NILP instead of checks against (removed)
9654 scm_lisp_nil. Removed switch cases for SCM_IM_NIL_IFY,
9655 SCM_IM_T_IFY, SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY.
9656
9657 * lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null,
9658 scm_m_while, scm_nil_eq): Commented out; I don't think we need
9659 these, but I don't want to remove them yet, just in case.
9660 (scm_init_lang): Define `%nil' variable on Scheme level to hold
9661 Elisp nil value.
9662
9663 * lang.h (SCM_NILP): Test against Elisp nil value instead of
9664 against (removed) scm_lisp_nil.
9665 (SCM_NILNULLP, SCM_NIL2EOL, SCM_EOL2NIL): Commented out.
9666 (SCM_NULL_OR_NIL_P): New.
9667
9668 * list.c (scm_append): Use SCM_VALIDATE_NULL_OR_NIL instead of
9669 SCM_VALIDATE_NULL.
9670
9671 * print.c (scm_isymnames): Fix comment. Remove #@nil-ify,
9672 #@t-ify, #@0-cond, #@0-ify, #@1-ify. Add #nil (for SCM_ELISP_NIL
9673 value).
9674
9675 * sort.c (scm_sorted_p, scm_merge, scm_merge_list_x, scm_merge_x,
9676 scm_sort_x, scm_sort, scm_stable_sort_x, scm_stable_sort): Use
9677 SCM_NULL_OR_NIL_P instead of SCM_NULLP. In constructions like `if
9678 (SCM_NULLP (x)) return SCM_EOL;', return x rather than SCM_EOL.
9679
9680 * tags.h (SCM_IM_NIL_IFY, SCM_IM_T_IFY, SCM_IM_0_COND,
9681 SCM_IM_0_IFY, SCM_IM_1_IFY): Removed.
9682 (SCM_IM_BIND, SCM_IM_DELAY, SCM_IM_CALL_WITH_VALUES, SCM_UNBOUND):
9683 Numbering shifted down accordingly.
9684 (SCM_ELISP_NIL): New IFLAG.
9685
9686 * validate.h (SCM_VALIDATE_NULL_OR_NIL): New.
34472dfe 9687
a392ee15
DH
96882002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9689
9690 * eval.c: Removed outdated references to "everr". Improved some
9691 comments.
9692
9693 (scm_deval_args, deval_args): Renamed scm_deval_args to
9694 deval_args, since it is not part of the interface.
9695
9696 (SCM_CEVAL): Added (maybe somewhat verbose) comment. Avoid to
9697 use references to debug.vect[0] before it exists. Add parentheses
9698 to switch statement.
9699
9700 * goops.h: Added local emacs variables.
9701
24933780
DH
97022002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9703
9704 * eval.[ch] (scm_deval_args): Made static.
9705
9706 * srcprop.c (scm_source_property): Remove redundant SCM_IMP
9707 test.
9708
9709 * strings.c (scm_c_string2str): Clarified comment. Replaced
9710 THINKME by FIXME for uniformness. Removed question about whether
9711 arguments need to be protected from garbage collection: Arguments
9712 must be protected as any other variable.
9713
f9450cdb
DH
97142002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
9715
9716 * procs.h (SCM_CLOSURE_BODY): New Macro.
9717
9718 * debug.c (scm_procedure_name, scm_procedure_source), eval.c
9719 (SCM_CEVAL, SCM_APPLY), goops.c (scm_sys_initialize_object,
9720 get_slot_value, set_slot_value), procs.c
9721 (scm_procedure_documentation), sort.c (closureless), stacks.c
9722 (get_applybody): Replace SCM_CDR (SCM_CODE (...)) by
9723 SCM_CLOSURE_BODY.
9724
9725 * sort.c (closureless): Prefer !SCM_FOOP over SCM_NFOOP.
9726
5dc64f64
MV
97272001-12-26 Marius Vollmer <mvo@zagadka.ping.de>
9728
9729 * Makefile.am (guile-procedures.txt): When we don't have makeinfo,
9730 use "cp" instead.
9731
197ee3d3
MV
97322001-12-16 Marius Vollmer <mvo@zagadka.ping.de>
9733
9734 * stacks.c, stacks.h (scm_t_stackype): Renamed to scm_stack_type
9735 everywhere.
9736
9737 * continuations.c (scm_make_continuation): Do not retain the
9738 throw_value when the continuation is invoked.
9739
4d4528e7
SJ
97402001-12-08 Stefan Jahn <stefan@lkcc.org>
9741
9742 * strings.c (scm_c_string2str): New function. Converts a
34472dfe 9743 given Scheme string into a C string. Also put in two
4d4528e7
SJ
9744 THINKME's regarding the malloc policy for the missing converter
9745 routines.
9746
98347362
NJ
97472001-12-01 Neil Jerram <neil@ossau.uklinux.net>
9748
9749 * gh_data.c (gh_module_lookup): Use scm_str2symbol rather than
9750 gh_symbol2scm.
9751
1fc8902f
DH
97522001-11-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
9753
9754 * gc.h (SCM_GC_CELL_WORD, SCM_GC_CELL_OBJECT,
9755 SCM_GC_SET_CELL_WORD, SCM_GC_SET_CELL_OBJECT): New macros.
9756
9757 (SCM_GC_CELL_TYPE, SCM_CELL_WORD, SCM_CELL_OBJECT,
9758 SCM_SET_CELL_WORD, SCM_SET_CELL_OBJECT, SCM_FREE_CELL_CDR,
9759 SCM_GC_SET_CELL_OBJECT): Express in terms of SCM_GC_CELL_*
9760 macros.
9761
9762 (SCM_FREE_CELL_P): Express in terms of SCM_GC_CELL_TYPE.
9763
9764 * inline.h (scm_alloc_cell, scm_alloc_double_cell): Use
9765 SCM_GC_CELL_* macros when accessing free cells.
9766
4878beec
MV
97672001-11-25 Marius Vollmer <mvo@zagadka.ping.de>
9768
9769 * vectors.h (SCM_MAKE_VECTOR_TAG): New.
34472dfe 9770 * unif.h (SCM_MAKE_BITVECTOR_TAG, SCM_MAKE_UVECTOR_TAG): New.
4878beec
MV
9771 * symbols.h (SCM_MAKE_SYMBOL_TAG): New.
9772 * strings.h (SCM_MAKE_STRING_TAG): New.
9773 * procs.h (SCM_MAKE_CCLO_TAG): New.
9774 * numbers.h (SCM_MAKE_BIGNUM_TAG): New.
9775
9776 * goops.h: Replaced SCM_DEBUG_DEPRECATED with
9777 !SCM_ENABLE_DEPRECATED.
9778
9779 * async.c, async.h (scm_system_async_mark_from_signal_handler):
9780 New.
9781
9782 * scmsigs.c (scm_take_signal): Removed all code that assumes that
9783 signal handlers are allowed to divert the flow of control. Call
9784 scm_system_async_mark_from_signal_handler instead of
9785 scm_system_async_mark.
9786
9787
9788 Deprecated SCM_NEWCELL and SCM_NEWCELL2. Added scm_alloc_cell and
9789 scm_alloc_double_cell in their place.
34472dfe 9790
4878beec
MV
9791 * gc.h (SCM_GC_SET_ALLOCATED, scm_debug_newcell,
9792 scm_debug_newcell2, scm_tc16_allocated): Removed from header.
9793 (scm_deprecated_newcell, scm_deprecated_newcell2): New.
9794 (SCM_NEWCELL, SCM_NEWCELL2): Implement in terms of
9795 scm_deprecated_newcell and scm_deprecated_newcell2.
9796
9797 gc.c (scm_tc16_allocated): Only define when including deprecated
9798 features.
9799 (scm_debug_newcell, scm_debug_newcell2): Removed.
9800 (scm_init_storage): Do not initialize scm_tc16_allocated.
9801 (scm_init_gc): Do it here.
9802 (allocated_mark): New, from old code.
9803 (scm_deprecated_newcell, scm_deprecated_newcell2): New.
34472dfe 9804
4878beec 9805 * inline.c, inline.h: New files.
34472dfe 9806 * Makefile.am: Added them in all the right places.
4878beec 9807
34472dfe 9808 * _scm.h: Include "libguile/inline.h".
4878beec
MV
9809
9810 * alist.c, coop-threads.c, debug.c, environments.c, eval.c,
9811 fports.c, gh_data.c, goops.c, guardians.c, lang.c, list.c,
9812 num2float.i.c, numbers.c, pairs.c, ports.c, print.c, procs.c,
9813 smob.c, smob.h, strings.c, strports.c, struct.c, symbols.c,
9814 unif.c, variable.c, vectors.c, vports.c, weaks.c: Replaced
9815 SCM_NEWCELL and SCM_NEWCELL2 with scm_alloc_cell and
9816 scm_alloc_double_cell, respectively.
9817
d2bc7fae
MV
98182001-11-23 Marius Vollmer <mvo@zagadka.ping.de>
9819
9820 * modules.c (scm_c_use_module): Adapt to changes to
9821 `process-use-modules'.
9822
5eec27e9
DH
98232001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
9824
9825 * numbers.c (scm_divide): Fix more division by zero errors.
9826
8978878f
GH
98272001-11-21 Gary Houston <ghouston@arglist.com>
9828
9829 * Makefile.am (OMIT_DEPENDENCIES): removed, since it seems to be
9830 obsolete. autogen.sh says:
9831 invalid unused variable name: `OMIT_DEPENDENCIES'
9832
164826d3
DH
98332001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
9834
9835 * numbers.c (scm_divide): Fix (/ 0). Thanks to Keith Wright for
9836 reporting the bug.
9837
84aff7a7
MV
98382001-11-21 Marius Vollmer <mvo@zagadka.ping.de>
9839
9840 * Makefile.am (install-exec-hook): Prepend $(DESTDIR) to filename.
9841 Thanks to Eric Gillespie, Jr!
34472dfe 9842
6063dc1d
SJ
98432001-11-21 Stefan Jahn <stefan@lkcc.org>
9844
34472dfe
TTN
9845 * win32-socket.c (getservent, setservent, endservent,
9846 getprotoent, setprotoent, endprotoent): New functions.
6063dc1d
SJ
9847 Appropriate replacements for M$-Windows.
9848
9849 * numbers.c (SIZE_MAX, PTRDIFF_MAX, PTRDIFF_MIN): Reintroduced
9850 these definitions for GUILE_DEBUG.
9851
9852 * net_db.c: Include "win32-socket.h" if compiling with a native
34472dfe
TTN
9853 M$-Windows compiler. Include some pieces of code (protoent and
9854 servent interface) protected by HAVE_* macros when using a
6063dc1d
SJ
9855 native M$-Windows compiler.
9856
351982f6
MV
98572001-11-20 Marius Vollmer <mvo@zagadka.ping.de>
9858
9859 * modules.c (scm_c_export): Do nothing when the first argument is
9860 already the terminating NULL. Thanks to Han-Wen Nienhuys!
9861
849038b5
TTN
98622001-11-20 Thien-Thi Nguyen <ttn@glug.org>
9863
9864 * Makefile.am (libpath.h): In SCM_BUILD_INFO,
9865 also include `buildstamp'.
9866
5c790b44
RB
98672001-11-18 Rob Browning <rlb@defaultvalue.org>
9868
9869 * version.c
9870 (s_scm_major_version): use SCM_MAJOR_VERSION.
9871 (s_scm_minor_version): use SCM_MINOR_VERSION.
9872 (s_scm_micro_version): use SCM_MICRO_VERSION.
9873 (s_scm_version): use SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
9874 SCM_MICRO_VERSION.
9875
9876 * version.h.in
9877 (SCM_MAJOR_VERSION): renamed from SCM_GUILE_MAJOR_VERSION.
9878 (SCM_MINOR_VERSION): renamed from SCM_GUILE_MINOR_VERSION.
9879 (SCM_MICRO_VERSION): renamed from SCM_GUILE_MICRO_VERSION.
9880
694a9bb3
NJ
98812001-11-18 Neil Jerram <neil@ossau.uklinux.net>
9882
9883 * vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):
9884 Rewrite docstrings without reference to substring-move-left/right,
9885 since the latter no longer exist.
9886
302c12b4
DH
98872001-11-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
9888
9889 * eval.c: Removed bogus comment about acros.
9890
9891 (scm_unmemocar): Use !SCM_CONSP instead of SCM_IMP.
9892 Minimize scope of local variable. Eliminate dependency on
9893 macro DEBUG_EXTENSIONS.
9894
9895 (s_splicing): New error message string.
9896
9897 (scm_m_body): Issue 'bad body' message rather than 'missing
9898 expression' message.
9899
9900 (scm_m_quote): Eliminate unnecessary copying.
9901
9902 (scm_m_lambda, scm_m_letstar, scm_m_letrec, scm_m_let): Leave the
9903 checking of the body to scm_m_body.
9904
9905 (scm_m_do): Move comment to function header. Rename arg1 to
9906 binding. Made the code a bit easier to read.
9907
9908 (evalcar): Removed.
9909
9910 (iqq): Added a comment. Changed the depth parameter to
9911 unsigned. Use size_t for vector lengths. Make sure vector object
9912 is gc protected as long as its contents are read. Add some syntax
9913 checks. Get rid of unnecessary SCM_IMP test. Clean up the
9914 control structure a bit.
9915
9916 (scm_m_delay): Added comment about the implementation of
9917 scm_m_delay.
9918
9919 (scm_m_define): Add comment about guile's currying define
9920 syntax. Renamed 'proc' to 'name'. Eliminate dependency on macro
9921 DEBUG_EXTENSIONS. Simplified code a bit. Eliminate SICP code.
9922
9923 (scm_m_letrec1): Removed. Part of the functionality is taken
9924 over by the new function 'transform_bindings'.
9925
9926 (transform_bindings): New function. Takes over some of the
9927 functionality of removed function 'scm_m_letrec1', namely to split
9928 a list of bindings into a reversed list of variables and a list of
9929 initializers.
9930
9931 (scm_m_letrec): Call 'transform_bindings'.
9932
9933 (scm_m_let): Minimized scope of local variables. Renamed 'proc'
9934 to 'temp' and 'arg1' to 'binding'. Eliminated redundant SCM_NIMP
9935 test. Use 'transform_bindings'. Fixed scoping error with named
9936 let (Thanks to Aubrey Jaffer for reporting the bug and to Neil
9937 Jerram for suggesting the fix). Cleaned up the control structure
9938 a bit.
9939
9940 (scm_m_expand_body): Use 'transform_bindings'. Eliminated
9941 unnecessary consing. Eliminated unnecessary
9942 SCM_DEFER/ALLOW_INTS.
9943
9944 (SCM_CEVAL): Un-obfuscated some loops.
9945
cecb4a5e
NJ
99462001-11-16 Neil Jerram <neil@ossau.uklinux.net>
9947
8f85c0c6
NJ
9948 * gc.h (scm_unhash_name): Old declaration removed.
9949
9950 * eval.c (s_scm_eval): Change @var{primitive-eval} to
9951 @code{primitive-eval}.
9952
9953 * feature.c, vectors.c, net_db.c, unif.c, weaks.c, struct.c,
9954 version.c, alist.c, ports.c, ramap.c, unif.c, strings.c, list.c:
9955 Change @deffnx lines in docstrings to say {Scheme Procedure}
9956 rather than primitive or procedure.
9957
9958 * posix.c (scm_execl), filesys.c (scm_close), unif.c
9959 (scm_array_set_x, scm_array_contents, scm_uniform_array_read_x,
9960 scm_bit_set_star_x, scm_bit_invert_x), ramap.c (scm_array_fill_x,
9961 scm_array_for_each, scm_array_index_map_x), vectors.c (scm_vector,
9962 scm_make_vector, scm_vector_to_list, scm_vector_fill_x), strop.c
9963 (scm_string_split, scm_string_ci_to_symbol), strings.c
9964 (scm_string_p), sort.c (scm_merge), print.c (scm_newline),
9965 macros.c (scm_macro_type), alist.c (scm_acons, scm_assq):
9966 Docstring fixes and improvements reflecting edits that have been
9967 made in the reference manual source.
9968
9969 * objprop.c (scm_object_properties, scm_set_object_properties_x,
9970 scm_object_property, scm_set_object_property_x): Remove invalid
9971 @deffnx lines for corresponding procedure property primitives.
9972
cecb4a5e
NJ
9973 These changes add a @deffnx C function declaration and function
9974 index entries for each Guile primitive to the copy of the doc
9975 snarf output that is used for reference manual synchronization.
9976 Online help is unchanged.
849038b5 9977
cecb4a5e
NJ
9978 * snarf.h (SCM_SNARF_DOCS): Output primitive's C function name.
9979 (SCM_DEFINE, SCM_DEFINE1, SCM_REGISTER_PROC): Supply to C function
9980 name to SCM_SNARF_DOCS.
849038b5 9981
cecb4a5e
NJ
9982 * guile-snarf-docs-texi.in: Pass the shell script's arguments into
9983 snarf-check-and-output-texi.
9984
9985 * Makefile.am (guile-procedures.texi): New rule.
9986 (BUILT_SOURCES, guile.texi, guile-procedures.txt, CLEANFILES):
9987 Changed so that the last stage of doc snarfing is now performed
9988 twice, once to produce guile-procedures.txt for online help, and
9989 once to produce guile.texi for reference manual synchronization.
9990
ddea3325
DH
99912001-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
9992
9993 * eval.c (RETURN): Wrap in do{}while(0) in order to make it
9994 safely usable as a single statement followed by a ';', for example
9995 in an if statement.
9996
9997 (SCM_CEVAL, SCM_APPLY): Clean up code using 'RETURN'.
9998
72dd0a03
NJ
99992001-11-13 Neil Jerram <neil@ossau.uklinux.net>
10000
10001 * random.c (scm_random_solid_sphere_x,
10002 scm_random_hollow_sphere_x): Correct "shere" typos.
10003
10004 * hashtab.c (scm_hash_fold): Add missing apostrophe to docstring.
10005
10006 * version.c (scm_version): Update docstring to include
10007 `micro-version'.
10008
6558eda6
MV
100092001-11-13 Marius Vollmer <mvo@zagadka.ping.de>
10010
409b8588
MV
10011 * modules.c (scm_c_export): Call va_end after collecting the
10012 symbols.
10013
adb8c0f2
MV
10014 * strop.h, strop.c (scm_substring_move_left_x,
10015 scm_substring_move_right_x): Removed.
10016
6558eda6
MV
10017 * __scm.h (HAVE_UINTPTR_T, HAVE_PTRDIFF_T, HAVE_LONG_LONG,
10018 HAVE_LONG_LONGS): Define to "1" when defining them, to mirror what
10019 configure does.
10020
5d8fc640
MV
100212001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
10022
10023 * numbers.c: Document macros to define when including
10024 num2integral.i.c. MAX_VALUE and MIN_VALU are no longer used, we
10025 now rely on SIZEOF_ macros that have been figured out at
10026 configure time.
10027
10028 * num2integral.i.c: Adapt to new interface.
10029 (NUM2INTEGRAL): Test whether a fixnum can be represented in the
10030 target type by casting it and checking whether it is still the
10031 same. Do not try to handle bignums for integral types that are
10032 smaller than fixnums. When handling bignums, collect the
10033 magnituse first into a unsigned type, and correctly check for
10034 overflow.
10035 (INTEGRAL2BIG): Do not use MIN_VALUE explicitely by observing that
10036 only -MIN_VALUE can still be negative of all negative numbers (in
10037 twos-complement).
10038
849038b5 10039 * tags.h (SIZEOF_SCM_T_BITS): Define it appropriately.
5d8fc640
MV
10040
10041 * __scm.h: Define HAVE_UINTPTR_T, HAVE_PTRDIFF_T and
10042 HAVE_LONG_LONG depending on whether their size is non-zero.
10043
d6b8cf11
TTN
100442001-11-11 Thien-Thi Nguyen <ttn@glug.org>
10045
10046 * strop.c (scm_string_null_p): Docfix; nfc.
10047 Thanks to Scott Lenser.
10048
9401323e
NJ
100492001-11-07 Neil Jerram <neil@ossau.uklinux.net>
10050
10051 * extensions.c (scm_load_extension): Canonicalize docstring
10052 whitespace.
10053
10054 * unif.c (scm_uniform_array_write), ports.c
10055 (scm_current_output_port, scm_force_output), dynwind.c
10056 (scm_dynamic_wind), scmsigs.c (scm_setitimer, scm_getitimer),
10057 filesys.c (scm_open, scm_lstat), struct.c
10058 (scm_make_struct_layout), random.c (scm_random,
10059 scm_random_solid_sphere_x, scm_random_hollow_sphere_x, strop.c
10060 (scm_i_index): Remove superfluous whitespace from end of docstring
10061 lines.
10062
10063 * filesys.c (scm_select), guardians.c (scm_guardian_greedy_p),
10064 strings.c (scm_make_string), variable.c (scm_make_variable,
10065 scm_make_undefined_variable, scm_variable_p, scm_variable_set_x,
10066 scm_variable_bound_p), scmsigs.c (scm_setitimer, scm_getitimer),
10067 posix.c (scm_crypt), struct.c (scm_make_vtable_vtable), hashtab.c
10068 (scm_hash_fold), ports.c (scm_port_for_each): Remove superfluous
10069 newline at end of docstrings.
10070
10071 * modules.c (scm_set_current_module): Add missing newline to
10072 docstring.
10073
b4e15479
SJ
100742001-11-07 Stefan Jahn <stefan@lkcc.org>
10075
10076 * win32-socket.[ch]: New files. Defines Winsock-API error codes
10077 and makes them available through Guile. That is because the
10078 Winsock-API does not store its errors in `errno' and thus cannot
10079 return error messages via `strerror (errno)'.
10080
10081 * socket.c (scm_init_socket): Initialize `win32-socket' part
10082 here under M$-Windows.
10083
d6b8cf11 10084 * numbers.h: Added missing declaration of
b4e15479
SJ
10085 `scm_sys_check_number_conversions()'.
10086
10087 * error.c: Local definition of SCM_I_STRERROR and SCM_I_ERRNO
10088 and use in `(strerror)' and `(system-error)'.
10089
d6b8cf11 10090 * Makefile.am (EXTRA_libguile_la_SOURCES): Added
b4e15479
SJ
10091 `win32-socket.[ch]' to extra source and header files.
10092
7ab89df1
MV
100932001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
10094
10095 * script.c (scm_shell_usage, scm_compile_shell_switches): Prepend
10096 a call to turn-on-debugging when --debug has been given instead of
10097 turning it on directly. Also, handle new `--no-debug' option,
10098 which might suppress the call to turn-on-debugging.
10099
0233bfc1
SJ
101002001-11-05 Stefan Jahn <stefan@lkcc.org>
10101
10102 * struct.c (s_scm_struct_vtable_p): Corrected docstring.
10103
8f99e3f3
SJ
101042001-11-04 Stefan Jahn <stefan@lkcc.org>
10105
10106 * Makefile.am (libguile_la_LIBADD): Added $(THREAD_LIBS_LOCAL)
d6b8cf11 10107 here (was at guile_LDADD) which describes the dependency
8f99e3f3
SJ
10108 correctly and allows a clean build on Win32.
10109
d6b8cf11 10110 * __scm.h (SCM_API): Follow-up patch. Renamed __FOO__ macros
8f99e3f3
SJ
10111 into FOO.
10112
10113 * __scm.h: USE_DLL_IMPORT indicates the usage of the DLL
10114 import macros for external libraries (libcrypt, libqthreads,
10115 libreadline and libregex).
10116
10117 * coop-defs.h: Include <winsock2.h> for `struct timeval'.
10118
10119 * posix.c (flock): Added support for flock() in M$-Windows.
10120
10121 * guile.c (SCM_IMPORT): Follow-up patch. Use SCM_IMPORT instead
10122 of __SCM_IMPORT__.
10123
10124 * fports.c (getflags): Differentiate reading and writing pipes
10125 descriptors.
10126
10127 * filesys.c (S_IS*): Redefine all of the S_IS*() macros for
10128 M$-Windows.
10129
10130 * coop.c (coop_condition_variable_timed_wait_mutex): Use
10131 conditionalized error code if `ETIMEDOUT' is not available.
10132 (scm_thread_usleep): Remove bogus declaration of `struct timeval
10133 timeout'.
10134
10135 * numbers.c (PTRDIFF_MIN): Moved this definition where it actually
10136 belongs. That is because NO_PREPRO_MAGIC gets undefined after
10137 each inclusion of `num2integral.i.c'.
10138 (SIZE_MAX): Define NO_PREPRO_MAGIC if SIZE_MAX is undefined.
10139
4e21fa60
MV
101402001-11-03 Marius Vollmer <mvo@zagadka.ping.de>
10141
10142 * eval.c (scm_m_begin): Allow `(begin)`, with no subforms.
10143 (SCM_CEVAL): Evaluate an empty `begin' to SCM_UNSPECIFIED.
10144
08112c95
MD
101452001-11-02 Mikael Djurfeldt <mdj@linnaeus>
10146
7663c008
MD
10147 * print.c (scm_iprin1): Mark print state as revealed when
10148 dispatching to generic write or display.
10149
08112c95
MD
10150 * unif.c (scm_ra2contig): Fixed memory overwrite bug.
10151
f712d833
MV
101522001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
10153
10154 Support for native Win32. Thanks to Stefan Jahn!
d6b8cf11 10155
f712d833
MV
10156 * Makefile.am: Add win32-uname.c, win32-uname.h, win32-dirent.c
10157 and win32-dirent.h to extra source and header files. These
10158 include the uname() and the POSIX dirent interface implementation
10159 for M$-Windows. Put `-no-undefined' into LDFLAGS to support
10160 linkers which do not allow unresolved symbols inside shared
10161 libraries. Corrected `guile_filter_doc_snarfage$(EXEEXT)'
10162 dependency.
10163
d6b8cf11
TTN
10164 * __scm.h: Defined SCM_API. This macro gets prepended to all
10165 function and data definitions which should be exported or imported
f712d833
MV
10166 in the resulting dynamic link library in the Win32 port.
10167
10168 * __scm.h, alist.h, arbiters.h, async.h, backtrace.h, boolean.h,
d6b8cf11 10169 chars.h, continuations.h, coop-defs.h, coop-threads.h,
f712d833
MV
10170 debug-malloc.h, debug.h, deprecation.h, dynl.h, dynwind.h,
10171 environments.h, eq.h, error.h, eval.h, evalext.h, extensions.h,
10172 feature.h, filesys.h, fluids.h, fports.h, gc.h, gdb_interface.h,
10173 gdbint.h, gh.h, goops.h, gsubr.h, guardians.h, hash.h, hashtab.h,
10174 hooks.h, init.h, ioext.h, iselect.h, keywords.h, lang.h, list.h,
d6b8cf11 10175 load.h, macros.h, mallocs.h, modules.h, net_db.h, numbers.h,
f712d833
MV
10176 objects.h, objprop.h, options.h, pairs.h, ports.h, posix.h, print.h,
10177 procprop.h, procs.h, properties.h, ramap.h, random.h, rdelim.h,
10178 read.h, regex-posix.h, root.h, rw.h, scmsigs.h, script.h, simpos.h,
10179 smob.h, socket.h, sort.h, srcprop.h, stackchk.h, stacks.h, stime.h,
10180 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
10181 tags.h, threads.h, throw.h, unif.h, values.h, variable.h, vectors.h,
10182 vports.h, weaks.h:
10183 Prefixed each each exported symbol with SCM_API.
10184
d6b8cf11 10185 * continuations.c: Added comment about the use of the extern
f712d833
MV
10186 declarations of {get,set}context() functions used in the ia64 port.
10187
10188 * continuations.h, gc.c: `__libc_ia64_register_backing_store_base'
10189 is meant to be a `unsigned long *'.
10190
10191 * filesys.c: Include `direct.h' if possible. Use local
10192 `win32-dirent.h' for the native M$-Windows port. Define S_IS*()
10193 macros for M$-Windows. Implementation of `fstat_Win32()' which is
10194 able to differentiate between sockets and other file descriptors.
10195 Use this function as wrapper in `scm_fstat()'. Fixed typo in
10196 `scm_dirname()'.
10197
10198 * fports.c: Include `io.h' is possible. Put `*fp' into referring
10199 statement block in `scm_fport_buffer_add()'.
10200 Some corrections in `getflags()'.
d6b8cf11 10201
f712d833
MV
10202 * gdb_interface.h (GDB_INTERFACE): Also support __CYGWIN__.
10203
10204 * guile.c: Make sure to define __SCM_IMPORT__ for shared library
10205 build on Win32. Disable preloaded symbols on Win2 platforms.
10206
10207 * ioext.c, ports.c: Include `io.h' is possible.
10208
10209 * mkstemp.c: Include `process.h' is possible.
10210
10211 * net_db.c: Disable extern declaration of `h_errno' for __CYGWIN__,
10212 too.
10213 Put `scm_return_entry()' into HAVE_GETSERVENT conditional.
10214
10215 * posix.c: Remove unnecessary dirent includes and defines. Include
10216 local `win32-uname.h' for MinGW. Extern declaration of
10217 `mkstemp()' for systems where it does not exists. Make
10218 `getlogin()' available on M$-Windows.
10219
10220 * scmsigs.c: Made `usleep()' avalable on MinGW.
10221
10222 * stime.c: On M$-Windows `tzname[]' is known to be `_tzname[]'.
10223
10224 * win32-dirent.c: Include "win32-dirent.h", not "dirent.h".
10225
10226 * win32-uname.c: Include "win32-uname.h", not "uname.h".
10227
d245ce23
MD
102282001-10-28 Mikael Djurfeldt <mdj@linnaeus>
10229
10230 * unif.c (scm_uniform_array_read_x, scm_uniform_array_write):
10231 Don't apply scm_uniform_vector_length on arrays.
10232
8ea46249
DH
102332001-10-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
10234
10235 * eval.c (scm_lookupcar, scm_m_letstar, scm_m_do, iqq,
10236 scm_m_define, scm_m_letrec1, scm_m_let, scm_m_expand_body,
10237 scm_macroexp, unmemocopy, scm_eval_args, scm_deval_args,
10238 SCM_CEVAL, scm_map, scm_init_eval): When building lists, prefer
10239 scm_list_<n> over scm_cons[2]?.
10240
10241 (scm_unmemocar, scm_m_cond, scm_m_letstar, scm_m_letrec1,
10242 scm_m_let, scm_m_atbind, unmemocopy, SCM_CEVAL, SCM_APPLY): Use
10243 SCM_C[AD][AD]R instead of explicit form.
10244
10245 (scm_m_set_x, scm_m_cond, scm_m_letstar, scm_m_do): Reordered
10246 comparison parameters.
10247
10248 (scm_m_case, scm_m_cond, scm_m_letstar, scm_m_do, SCM_CEVAL): Use
10249 !SCM_NULLP instead of SCM_NIMP.
10250
10251 (scm_m_case): Don't copy the form. Renamed proc to clause and
10252 minimized its scope. Renamed x to clauses. Removed side
10253 effecting operation from macro call.
10254
10255 (scm_m_cond): Don't copy the form. Renamed arg1 to clause and
10256 minimized its scope. Renamed x to clauses. Minimized the scope
10257 of variable 'len'. Make sure the else clause is treated specially
10258 even in case of '=>' occurences. Don't change the else to #t in
10259 order to be able to distinguish this case in the evaluator. Leave
10260 type checking of the recipient to the evaluator.
10261
10262 (scm_c_improper_memq): Made the comment somewhat clearer.
10263
10264 (scm_m_lambda): Renamed proc to formals. Removed unnecessary
10265 test for SCM_IM_LET at the place of the formal parameters.
10266 Simplified the formal parameter checking.
10267
10268 (scm_m_letstar): Added Comment. Renamed proc to bindings.
10269 Renamed arg1 to binding and minimized its scope. Eliminated
10270 unnecessary consing.
10271
10272 (scm_m_do): Renamed proc to bindings. Minimized the scope of
10273 variable 'len'.
10274
10275 (build_binding_list): New static function.
10276
10277 (unmemocopy): Don't use SCM_TYP7 on pairs (it's unclean).
10278 Further, split up the 'letrec' unmemoizing code to the
10279 corresponding parts for 'do', 'let' and 'letrec', adding comments
10280 to each form. Cleanup the handling of the do form (This removes
10281 some *real* code :-).
10282
10283 (SCM_CEVAL): Removed side effecting operation from macro call.
10284 Handle the 'else clause of the 'cond form specially - the symbol
10285 'else is not replaced with #t any more.
10286
8186c4f5
GH
102872001-10-14 Gary Houston <ghouston@arglist.com>
10288
10289 * version.c (scm_version): use sprintf instead of snprintf,
10290 for portability. thanks to Bill Schottstaedt.
10291
89759084
MD
102922001-10-14 Mikael Djurfeldt <mdj@linnaeus>
10293
10294 * read.c (scm_lreadr): When user-defined hash procedure returns
10295 SCM_UNSPECIFIED: Fall back to standard handling instead of raising
10296 an exception. (This prevents parsing of uniform vectors from
10297 interfering with parsing of numbers.)
10298
9c7ce563
MV
102992001-10-13 Marius Vollmer <mvo@zagadka.ping.de>
10300
10301 * numbers.c: Set NO_PREPRO_MAGIC when defining our version of
10302 PTRDIFF_MIN. Thanks to Ken Raeburn.
10303
103042001-10-07 Marius Vollmer <mvo@zagadka.ping.de>
10305
10306 * Makefile.am (EXTRA_libguile_la_SOURCES): Added "mkstemp.c".
10307
10308 * eval.c (scm_m_atbind): First try to find the variable without
10309 defining it locally; when it has not been found, define it
10310 locally.
10311
10312 * modules.c (module_variable): Pass over variables that exist but
10313 are unbound.
10314
103152001-10-06 Marius Vollmer <mvo@zagadka.ping.de>
10316
10317 * backtrace.c (display_backtrace_file_and_line): Only use
10318 scm_basename when POSIX support is compiled in. Thanks to Chris
10319 Cramer.
10320
1fe5e088
DH
103212001-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10322
10323 * numbers.c (mem2uinteger): Return number read so far when coming
10324 across a hexdigit after having read a # or if not reading a hex
10325 value. This will enable the calling code to correctly handle
10326 forms like 1e2. (The background is, that the exponent markers d,
10327 e and f are also hexdigits.) Thanks to Mikael Djurfeldt for
10328 providing this patch.
10329
10330 (mem2complex): Fix erroneous double-negation. Now, numbers like
10331 1-i will be read correctly.
10332
68665a97
MD
103332001-10-12 Mikael Djurfeldt <mdj@linnaeus>
10334
10335 * debug.c (scm_mem_to_proc): Fixed typo in previous change.
10336
10337 * validate.h (SCM_VALIDATE_DOUBLE_DEF_COPY): New macro.
10338
d5cf5324
DH
103392001-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
10340
10341 * print.c (scm_print_state_vtable, print_state_pool):
10342 Initialize. These variables are now registered as gc roots.
10343
10344 (scm_current_pstate): Update documentation.
10345
10346 (scm_current_pstate, scm_make_print_state, scm_free_print_state,
10347 scm_prin1, scm_init_print): print_state_pool is registered as a
10348 gc root and thus does not need to be protected by a surrounding
10349 pair any more.
10350
10351 (make_print_state): The car of print_state_pool no longer holds
10352 the scm_print_state_vtable.
10353
10354 (scm_current_pstate, scm_make_print_state, print_circref,
10355 scm_iprin1, scm_prin1, scm_iprlist): Prefer !SCM_<foo> over
10356 SCM_N<foo>.
10357
10358 (scm_prin1): When building lists, prefer scm_list_<n> over
10359 scm_cons[2]?.
10360
10361 (scm_iprlist): Removed a redundant SCM_IMP test.
10362
10363 (scm_simple_format): Use SCM_EQ_P to compare SCM values.
10364
37c56aec
DH
103652001-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
10366
10367 * debug.c (scm_make_iloc): Prefer !SCM_<foo> over SCM_N<foo>.
10368
10369 (scm_memcons, scm_mem_to_proc): When building lists, prefer
10370 scm_list_<n> over scm_cons[2]?.
10371
10372 (scm_mem_to_proc): Prefer SCM_CONSP over SCM_NIMP.
10373
10374 (scm_procedure_name): Use SCM_CADR instead of explicit form.
10375
10376 (debugobj_print): Coerce scm_intprint arg 1 to long, not int.
10377 Thanks to Rob Browning for the patch (see log entry 2001-09-21) -
10378 for some reason his patch didn't make it into the cvs.
10379
79d34f68
DH
103802001-10-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
10381
10382 * numbers.c (mem2decimal_from_point): Cleaned up the parsing a
10383 little bit - should even be somewhat more accurate now.
10384
5e137c65
RB
103852001-10-08 Rob Browning <rlb@defaultvalue.org>
10386
10387 * gc.c: support ia64 register backing store.
10388 (SCM_MARK_BACKING_STORE): new macro.
10389
10390 * continuations.h: support ia64 register backing store.
10391 (struct scm_t_contregs): add ia64 register backing store.
10392
10393 * continuations.c: support ia64 register backing store.
10394 (continuation_mark): mark ia64 register backing store.
10395 (continuation_free): free ia64 register backing store.
10396 (scm_make_continuation): capture ia64 register backing store.
10397 (copy_stack_and_call): copy ia64 register backing store.
10398
ee083ac2
DH
103992001-10-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
10400
10401 * hashtab.c (scm_hash_fn_create_handle_x): The result of assoc_fn
10402 is known to be #f if no entry is found. Thus, use !SCM_FALSEP
10403 instead of SCM_NIMP to test for that case.
10404
10405 * strings.h (SCM_SET_STRING_LENGTH): Cast the length to
10406 scm_t_bits instead of long.
10407
71dcdbf9
MV
104082001-10-06 Marius Vollmer <mvo@zagadka.ping.de>
10409
10410 * tags.h (SCM_T_BITS_MAX, SCM_T_SIGNED_BITS_MAX,
10411 SCM_T_SIGNED_BITS_MIN): New.
10412 * numbers.h (SCM_MOST_POSITIVE_FIXNUM, SCM_MOST_NEGATIVE_FIXNUM):
10413 Use them to make these macros computable by the preprocessor.
10414
10415 * num2integral.i.c (INTEGRAL2NUM): Let the preprocessor test
10416 whether the integral type fits in a fixnum, not the compiler.
10417 This removes a spurious compiler warning. Also, honor the
10418 NO_PREPRO_MAGIC flag to suppress any preprocessor tests. This is
10419 needed for `long long's.
10420
10421 * numbers.c: Define NO_PREPRO_MAGOC when including
10422 num2integral.c.i for `long long' and `signed long long'.
10423
152812c0
MD
104242001-10-06 Mikael Djurfeldt <mdj@linnaeus>
10425
10426 These changes fixes a race condition in the Guile coop - pthread
10427 compatibility code.
d6b8cf11 10428
152812c0
MD
10429 * coop.c (mother_awake_p): New variable.
10430 (coop_create): Set mother_awake_p before creating or signalling
10431 mother; wait until mother is going to sleep before returning.
10432 (mother): Reset mother_awake_p before going to sleep.
10433
11d49f54
DH
104342001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
10435
10436 * options.c (protected_objects, scm_init_options): The content of
10437 protected_objects is now protected from garbage collection using
10438 scm_gc_register_root instead of scm_permanent_object.
10439
10440 (get_option_setting): New static function that computes an option
10441 setting as it was formerly done in the function scm_options.
10442
10443 (get_documented_option_setting): New static function that
10444 returns option documentation as it was formerly done in the
10445 function scm_options. Note that documentation C strings are no
10446 longer precomputed into SCM objects. Instead, they are converted
10447 into SCM strings every time get_documented_option_setting is
10448 called.
10449
10450 (change_option_setting): New static functions that modifies the
10451 option setting as it was formerly done in the function
10452 scm_options. The function is now exception safe, i. e. won't
10453 cause a memory leak when interrupted. Further, only non-immediate
10454 option values are added to the protection list.
10455
10456 (scm_options): This function now has only the purpose to dispatch
10457 to to get_option_setting, get_documented_option_setting or
10458 change_option_setting, depending on the arguments given to
10459 scm_options.
10460
10461 (scm_init_opts): Don't convert documentation C strings into SCM
10462 strings. Further, don't protect any object values: They _must_
10463 be immediate values, otherwise there is no guarantee that they
10464 have not been collected before anyway.
10465
10466 * options.[ch] (scm_t_option): Made type unsigned, name into a
10467 constant char* and val into a scm_t_bits type.
10468
10469 (scm_options, scm_init_opts): The number of options is guaranteed
10470 to be larger or equal to zero. Thus, the type is changed to
10471 unsigned.
10472
3dbacabc
DH
104732001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
10474
10475 * num2integral.i.c (NUM2INTEGRAL): Eliminated some warnings about
10476 testing an unsigned value for being >= 0.
10477
14282d0f
DH
104782001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
10479
10480 * numbers.h: Removed old comment about using SCM_CAR to access
10481 non-pair cells.
10482
10483 (SCM_MOST_POSITIVE_FIXNUM, SCM_MOST_NEGATIVE_FIXNUM): Make sure
10484 the return value is signed. Thanks to Brian Crowder for the bug
10485 report.
10486
10487 (SCM_SRS): Avoid unnecessary casting and don't unpack input
10488 values. With this patch, SCM_SRS can be safely used for other
10489 types than scm_t_signed_bits. However, it should still better be
10490 an internal macro and thus be renamed to SCM_I_SRS.
10491
10492 (SCM_MAKINUM, SCM_INUM): Use proper casting.
10493
2dbec7b5
GH
104942001-10-03 Gary Houston <ghouston@arglist.com>
10495
10496 * continuations.h, unif.h: in the descriptions of the bit patterns
10497 of the heap cells, make bit 0 the least significant.
10498
cf4ee841
TTN
104992001-09-25 Thien-Thi Nguyen <ttn@glug.org>
10500
10501 * chars.h (SCM_MAKE_CHAR): Use `scm_t_bits' instead of `intptr_t'.
10502 Thanks to Golubev I. N.
10503
4a151b3d
GH
105042001-09-25 Gary Houston <ghouston@arglist.com>
10505
10506 * ports.c (scm_drain_input): extended the docstring. thanks to
10507 Alex Schroeder and Thien-Thi Nguyen.
10508
581ded70
MD
105092001-09-23 Mikael Djurfeldt <mdj@linnaeus>
10510
10511 * validate.h (SCM_NUM2FLOAT, SCM_NUM2DOUBLE,
10512 SCM_VALIDATE_FLOAT_COPY, SCM_VALIDATE_DOUBLE_COPY): New
10513 macros. (The NUM names might soon change.)
10514
10515 * numbers.h: Added missing declarations.
10516
5437598b
MD
105172001-09-22 Mikael Djurfeldt <mdj@linnaeus>
10518
10519 * Makefile.am: Distribute num2float.i.c.
10520
10521 * num2float.i.c: New file, multiply included by numbers.c, used
10522 to "templatize" the float <-> num conversion routines.
10523
10524 * numbers.c: New functions: scm_num2float, scm_float2num,
10525 scm_num2double, scm_double2num.
10526
0b073f0f
RB
105272001-09-21 Rob Browning <rlb@defaultvalue.org>
10528
10529 * .cvsignore: really add version.h
10530
10531 * strings.h (SCM_SET_STRING_LENGTH): coerce "l" to a long.
10532 Otherwise it fails on the alpha. However, we might rather choose
10533 this size conditionally.
10534
10535 * numbers.c (scm_gcd): change "k" to a long from an int.
10536 Otherwise it fails on the alpha. However, we might rather choose
10537 this size conditionally.
10538
10539 * error.c (scm_wta): coerce char* to intptr_t before int
10540 assignment.
10541
10542 * debug.c (debugobj_print): coerce scm_intprint arg 1 to long, not
10543 int.
10544
10545 * chars.h (SCM_MAKE_CHAR): coerce value to intptr_t.
10546
2830fd91
MD
105472001-09-20 Mikael Djurfeldt <mdj@linnaeus>
10548
10549 * numbers.c (scm_integer_expt): Accept inexact integer in second
10550 argument. (Thanks to Bill Schottstaedt.)
10551
c13f0a90
RB
105522001-09-20 Rob Browning <rlb@defaultvalue.org>
10553
10554 * .cvsignore: add version.h
10555
10556 * versiondat.h.in: removed (obsolete).
10557
10558 * version.h.in: renamed from version.h.
10559 (SCM_GUILE_MAJOR_VERSION): new public macro.
10560 (SCM_GUILE_MINOR_VERSION): new public macro.
10561 (SCM_GUILE_MICRO_VERSION): new public macro.
10562
10563 * version.h: renamed to version.h.in.
10564
10565 * version.c
10566 (scm_major_version): support integer *_VERSION macros.
10567 (scm_minor_version): support integer *_VERSION macros.
10568 (scm_micro_version): support integer *_VERSION macros.
10569 (scm_version): support integer *_VERSION macros.
10570
147c18a0
MD
105712001-09-20 Mikael Djurfeldt <mdj@linnaeus>
10572
10573 * error.c, error.h: Made error keys globally accessible.
10574 Applications might want to test for these or use them in a direct
10575 call to scm_error.
10576
10577 * num2integral.i.c (NUM2INTEGRAL): Report an error when these
10578 routines are passed an inexact. This change in behavior is
10579 motivated by concordance with R5RS: It is more common that a
10580 primitive doesn't want to accept an inexact for an exact.
10581
662c5539
DH
105822001-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
10583
10584 The following patch partially undoes my patch from 2001-06-30,
10585 where I added the function scm_gc_mark_cell_conservatively. The
10586 function is buggy, since it breaks guile during conservative
10587 marking if a pointer on the stack points directly into the list of
10588 free cells on the heap: With conservative cell marking this will
10589 cause the whole free list to be scanned and marked - boom!
10590
10591 * gc.c (allocated_mark, MARK, heap_segment,
10592 scm_gc_mark_cell_conservatively, scm_init_storage), gc.h
cf4ee841 10593 (scm_gc_mark_cell_conservatively): Remove function
662c5539
DH
10594 scm_gc_mark_cell_conservatively and update the corresponding
10595 comments and uses accordingly. Thanks to Christopher Cramer for
10596 the patch. (Minor corrections by me.)
10597
6c1b7628
GH
105982001-09-15 Gary Houston <ghouston@arglist.com>
10599
10600 * root.h (scm_root_state): removed the continuation_stack and
10601 continuation_stack_ptr members, which have no apparent purpose.
10602 (scm_continuation_stack, scm_continuation_stack_ptr): #defines
10603 removed.
662c5539 10604
6c1b7628
GH
10605 * root.c (root_mark), init.c (restart_stack, start_stack), gc
10606 (scm_igc): remove all references to contination_stack and
10607 continuation_stack_ptr, avoiding allocation of a vector and
10608 useless processing during gc.
10609
455c0ac8
DH
106102001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10611
10612 * guardians.c (tconc_t, t_tconc): Renamed tconc_t to t_tconc.
10613
10614 (TCONC_IN): Make sure that the cell word 0 is initialized last.
10615
10616 (guardians_t, t_guardians): Renamed guardians_t to t_guardians.
10617
10618 (GUARDIAN, GUARDIAN_DATA): Renamed GUARDIAN to GUARDIAN_DATA.
10619
10620 (guardian_apply, scm_get_one_zombie, scm_make_guardian,
10621 mark_and_zombify): Prefer !SCM_<foo> over SCM_N<foo>.
10622
22ba637b
DH
106232001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10624
10625 * guardians.c (mark_dependencies_in_tconc,
10626 whine_about_self_centered_zombies, scm_init_guardians): Register
10627 the static global variable `self_centered_zombies' via
10628 scm_gc_register_root, to make some cdr-ing unnecessary.
10629
c3c4d801
DH
106302001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
10631
10632 * backtrace.c (display_backtrace_file,
10633 display_backtrace_file_and_line): Use SCM_EQ_P when comparing SCM
10634 values, use SCM_FALSEP when comparing SCM values against #f.
10635 Thanks to Rob Browning for the bug report.
10636
b00418df
DH
106372001-09-12 Martin Baulig <martin@home-of-linux.org>
10638
10639 * strings.[ch] (scm_str2string): New function.
10640
a0d34a0b
MV
106412001-09-06 Marius Vollmer <mvo@zagadka.ping.de>
10642
10643 * gc.c (scm_done_free): Always subtract size from scm_mallocated
10644 when computing nm, even if it's negative.
10645 (scm_must_malloc): Abort on overflow of scm_mtrigger.
10646 (scm_must_realloc): Likewise.
10647
b10586f0
ML
106482001-09-01 Michael Livshin <mlivshin@bigfoot.com>
10649
10650 * numbers.c (scm_sys_check_number_conversions): new function,
10651 defined if Guile is compiled in debugging mode. currently checks
10652 `scm_num2ulong', should check much much more.
10653
10654 * num2integral.i.c (NUM2INTEGRAL): when converting a bignum to
10655 unsigned, ensure that it's positive. thanks to Martin Baulig!
cf4ee841 10656
8c494e99
DH
106572001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10658
10659 * __scm.h: Added new section about compile time selectable
10660 features.
10661
10662 (long_long, ulong_long, scm_sizet, SCM_WNA, SCM_OUTOFRANGE,
10663 SCM_NALLOC, SCM_HUP_SIGNAL, SCM_INT_SIGNAL, SCM_FPE_SIGNAL,
10664 SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL, SCM_GC_SIGNAL,
10665 SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG, SCM_NUM_SIGS):
10666 Removed.
10667
10668 * deprecation.c (scm_include_deprecated_features): Simplified.
10669
10670 * eval.c (EVALCAR, unmemocopy), eval.h (SCM_XEVALCAR): Use
9a5fa6e9 10671 `SCM_IMP' instead of `!SCM_CELLP´.
8c494e99
DH
10672
10673 * eval.c (unmemocopy): Eliminate redundant SCM_CELLP tests.
10674 Extract side-effecting operations from macros.
10675
10676 (scm_init_eval): Don't initialize *top-level-lookup-closure*,
10677 scm_top_level_lookup_closure_var and scm_system_transformer.
10678
10679 * gc.c (CELL_P): New local definition to replace SCM_CELLP.
10680
10681 (heap_segment): Use CELL_P instead of SCM_CELLP.
10682
10683 * init.c (start_stack): Don't initialize
10684 scm_top_level_lookup_closure_var and scm_system_transformer.
10685
10686 * modules.c (scm_set_current_module): Don't access
10687 scm_top_level_lookup_closure_var and scm_system_transformer.
10688
10689 (scm_sym2var): Don't call scm_variable_set_name_hint.
10690
10691 (scm_post_boot_init_modules): Removed deprecated initializations.
10692
10693 * print.c (scm_ipruk): Don't access cell contents of non cells.
10694
10695 * strings.c (scm_string_set_x): All strings are writable.
10696
10697 * strings.h (SCM_STRINGP): Use SCM_TYP7 to determine the string
10698 type. There is only one string type now.
10699
10700 (SCM_STRING_COERCE_0TERMINATION_X): Deprecated.
10701
10702 * tags.h: Remove comments about two different string types.
10703
10704 (SCM_CELLP, SCM_NCELLP): Deprecated.
10705
10706 * variable.c (make_variable): Remove code variant for vcells.
10707
10708 * variable.h (SCM_VARIABLE_REF, SCM_VARIABLE_SET,
10709 SCM_VARIABLE_LOC): Remove code variant for vcells.
10710
10711 * __scm.h, deprecation.[ch]: Renamed SCM_DEBUG_DEPRECATED to
10712 SCM_ENABLE_DEPRECATED with the logic reversed.
10713
10714 * dynl.c (moddata, registered_mods), dynl.[ch]
10715 (scm_register_module_xxx, scm_registered_modules,
10716 scm_clear_registered_modules), error.[ch] (scm_wta), eval.c
10717 (*top-level-lookup-closure*), eval.[ch]
10718 (scm_top_level_lookup_closure_var, scm_system_transformer,
10719 scm_eval_3, scm_eval2), gc.h (SCM_SETAND_CAR, SCM_SETOR_CAR,
10720 SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_FREEP, SCM_NFREEP,
10721 SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16,
10722 SCM_GCCDR), gc.[ch] (scm_remember, scm_protect_object,
10723 scm_unprotect_object), modules.c (root_module_lookup_closure,
10724 scm_sym_app, scm_sym_modules, module_prefix, make_modules_in_var,
10725 beautify_user_module_x_var, try_module_autoload_var,
10726 scm_module_full_name), modules.[ch] (scm_the_root_module,
10727 scm_make_module, scm_ensure_user_module, scm_load_scheme_module),
cf4ee841 10728 ports.h (scm_port, scm_ptob_descriptor, scm_port_rw_active),
8c494e99
DH
10729 ports.[ch] (scm_close_all_ports_except), random.h (scm_rstate,
10730 scm_rng, scm_i_rstate), strings.h (SCM_SLOPPY_STRINGP,
10731 SCM_RWSTRINGP, SCM_STRING_UCHARS, SCM_STRING_CHARS), strings.[ch]
10732 (scm_read_only_string_p, scm_makstr, scm_makfromstr,
10733 scm_make_shared_substring), tags.h (scm_tc7_substring,
10734 SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP, scm_tc7_ssymbol,
10735 scm_tc7_msymbol, scm_tcs_symbols), variable.c (sym_huh),
10736 variable.[ch] (scm_variable_set_name_hint, scm_builtin_variable),
10737 variable.h (SCM_VARVCELL, SCM_UDVARIABLEP, SCM_DEFVARIABLEP):
10738 Removed.
10739
10740 * dynl.c (scm_dynamic_link, scm_dynamic_func), error.c
10741 (scm_error_scm), filesys.c (scm_chown, scm_chmod, scm_open_fdes,
10742 scm_stat, scm_link, scm_rename, scm_delete_file, scm_mkdir,
10743 scm_rmdir, scm_opendir, scm_chdir, scm_symlink, scm_readlink,
10744 scm_lstat, scm_copy_file), fports.c (scm_open_file), ioext.c
10745 (scm_fdopen), net_db.c (scm_gethost, scm_getnet, scm_getproto,
10746 scm_getserv), ports.c (scm_truncate_file, scm_sys_make_void_port),
10747 posix.c (scm_getpwuid, scm_getgrgid, scm_execl, scm_execlp,
10748 scm_execle, scm_mkstemp, scm_utime, scm_access, scm_setlocale,
10749 scm_mknod, scm_crypt, scm_chroot, scm_getpass, scm_sethostname),
10750 regex-posix.c (scm_make_regexp, scm_regexp_exec), simpos.c
10751 (scm_system, scm_getenv), socket.c (scm_inet_aton), stime.c
10752 (setzone, scm_strftime, scm_strptime), vports.c
10753 (scm_make_soft_port): Remove calls to
10754 SCM_STRING_COERCE_0TERMINATION_X. Since the substring type is
10755 gone, all strings are 0-terminated anyway.
10756
10757 * dynl.h (LIBGUILE_DYNL_H, SCM_DYNL_H), random.h (RANDOMH,
10758 SCM_RANDOM_H): Renamed the macros that are defined to inhibit
10759 double inclusion of the same headers to the SCM_<filename>_H
10760 format.
10761
10762 * eval.c (SCM_CEVAL), gc.c (MARK, scm_gc_sweep), gh_data.c
10763 (gh_scm2chars), hash.c (scm_hasher), objects.c (scm_class_of),
10764 print.c (scm_iprin1): The type scm_tc7_substring does not exist
10765 any more.
10766
10767 * ports.h (SCM_PORTP, SCM_OPPORTP, SCM_OPINPORTP, SCM_OPOUTPORTP,
10768 SCM_INPUT_PORT_P, SCM_OUTPUT_PORT_P, SCM_OPENP), tags.h
10769 (SCM_TYP16_PREDICATE), variable.h (SCM_VARIABLEP): Prefer
10770 !SCM_<foo> over SCM_N<foo>.
10771
dee01b01
DH
107722001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10773
10774 * Makefile.am: Remove references to symbols-deprecated.c.
10775
10776 * symbols.c (scm_init_symbols): Don't initialize deprecated
10777 symbol functions.
10778
10779 * symbols-deprecated.c: Removed.
10780
10781 * fluids.[ch] (scm_internal_with_fluids), gsubr.[ch]
10782 (scm_make_gsubr, scm_make_gsubr_with_generic), hooks.[ch]
10783 (scm_create_hook), list.c (list*), list.h (SCM_LIST[0-9],
10784 scm_listify), list.[ch] (scm_sloppy_memq, scm_sloppy_memv,
10785 scm_sloppy_member), load.c (scm_end_of_file_key), load.[ch]
10786 (scm_read_and_eval_x), numbers.[ch] (scm_mkbig, scm_big2inum,
10787 scm_adjbig, scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big,
10788 scm_big2dbl), numbers.h (SCM_FIXNUM_BIT), procs.h
10789 (scm_subr_entry, SCM_SUBR_DOC), procs.[ch] (scm_make_subr_opt,
10790 scm_make_subr, scm_make_subr_with_generic), root.c (setjmp_type,
10791 setjmp_type), root.[ch] (scm_call_catching_errors), smob.[ch]
10792 (scm_make_smob_type_mfpe, scm_set_smob_mfpe), strports.[ch]
10793 (scm_strprint_obj, scm_read_0str, scm_eval_0str), symbols.h
10794 (SCM_CHARS, SCM_UCHARS, SCM_SETCHARS, SCM_SLOPPY_SUBSTRP,
10795 SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_LENGTH_MAX, SCM_LENGTH,
10796 SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH, SCM_ROCHARS,
10797 SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR, scm_strhash,
10798 scm_sym2vcell, scm_sym2ovcell_soft, scm_sym2ovcell,
10799 scm_intern_obarray_soft, scm_intern_obarray, scm_intern,
10800 scm_intern0, scm_sysintern, scm_sysintern0,
10801 scm_sysintern0_no_module_lookup, scm_symbol_value0,
10802 scm_string_to_obarray_symbol, scm_intern_symbol,
10803 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
10804 scm_symbol_bound_p, scm_symbol_set_x, scm_gentemp,
10805 scm_init_symbols_deprecated), vectors.c (s_vector_set_length_x),
10806 vectors.[ch] (scm_vector_set_length_x): Removed.
10807
10808 * fluids.h (FLUIDSH, SCM_FLUIDS_H), gsubr.c (GSUBRH, SCM_GSUBR_H),
10809 list.h (LISTH, SCM_LIST_H), load.h (LOADH, SCM_LOAD_H), root.h
10810 (ROOTH, SCM_ROOT_H), strports.h (STRPORTSH, SCM_STRPORTS_H):
10811 Renamed the macros that are defined to inhibit double inclusion of
10812 the same headers to the SCM_<filename>_H format.
10813
10814 * procs.h (SCM_CLOSUREP, SCM_PROCEDURE_WITH_SETTER_P), symbols.h
10815 (SCM_SYMBOLP), vectors.h (SCM_VECTORP): Prefer !SCM_<foo> over
10816 SCM_N<foo>.
10817
b29058ff
DH
108182001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10819
10820 * continuations.h (scm_contregs), debug.h (scm_debug_info,
10821 scm_debug_frame, SCM_DSIDEVAL), filesys.h (SCM_OPDIRP), fports.h
10822 (scm_fport), options.h (scm_option), snarf.h (SCM_CONST_LONG,
10823 SCM_VCELL, SCM_GLOBAL_VCELL, SCM_VCELL_INIT,
10824 SCM_GLOBAL_VCELL_INIT), srcprop.h (scm_srcprops,
10825 scm_srcprops_chunk), stacks.h (scm_info_frame, scm_stack), unif.h
10826 (scm_array, scm_array_dim, SCM_ARRAY_CONTIGUOUS, SCM_HUGE_LENGTH),
10827 validate.h (SCM_FUNC_NAME, SCM_WTA, RETURN_SCM_WTA,
10828 SCM_VALIDATE_NUMBER_COPY, SCM_VALIDATE_NUMBER_DEF_COPY,
10829 SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
10830 SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
10831 SCM_VALIDATE_RWSTRING, SCM_VALIDATE_OPDIR): Removed.
10832
10833 * continuations.h (CONTINUATIONSH, SCM_CONTINUATIONS_H), filesys.h
10834 (FILESYSH, SCM_FILESYS_H), fports.h (FPORTSH, SCM_FPORTS_H),
10835 options.h (OPTIONSH, SCM_OPTIONS_H), regex-posix.h (REGEXPOSIXH,
10836 SCM_REGEX_POSIX_H), snarf.h (LIBGUILE_SNARF_H, SCM_SNARF_H),
10837 srcprop.h (SCM_SOURCE_PROPERTIES_H, SCM_SRCPROP_H), unif.h
10838 (SCM_UNIFORM_VECTORS_H, SCM_UNIF_H), validate.h (SCM_VALIDATE_H__,
10839 SCM_VALIDATE_H): Renamed the macros that are defined to inhibit
10840 double inclusion of the same headers to the SCM_<filename>_H
10841 format.
10842
10843 * debug.h (SCM_RESET_DEBUG_MODE), regex-posix.h (SCM_RGXP),
10844 srcprop.h (SRCBRKP, PROCTRACEP), struct.h (SCM_STRUCTP),
10845 validate.h (SCM_VALIDATE_THUNK, SCM_VALIDATE_ARRAY,
10846 SCM_VALIDATE_VECTOR_OR_DVECTOR, SCM_VALIDATE_VTABLE): Prefer
10847 !SCM_<foo> over SCM_N<foo>.
10848
0527e687
DH
108492001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
10850
10851 * _scm.h (_SCMH, SCM__SCM_H), alist.h (ALISTH, SCM_ALIST_H),
10852 arbiters.h (ARBITERSH, SCM_ARBITERS_H), backtrace.h (BACKTRACEH,
10853 SCM_BACKTRACE_H), boolean.h (BOOLEANH, SCM_BOOLEAN_H), chars.h
10854 (SCM_CHARSH, SCM_CHARS_H), coop-defs.h (COOP_DEFSH,
10855 SCM_COOP_DEFS_H), coop-threads.h (COOP_THREADSH,
10856 SCM_COOP_THREADS_H), debug-malloc.h (DEBUGMALLOCH,
10857 SCM_DEBUG_MALLOC_H), dynwind.h (DYNWINDH, SCM_DYNWIND_H),
10858 environments.h (ENVIRONMENTS_H, SCM_ENVIRONMENTS_H), eq.h (EQH,
10859 SCM_EQ_H), evalext.h (EVALEXTH, SCM_EVALEXT_H), extensions.h
10860 (LIBGUILE_EXTENSIONS_H, SCM_EXTENSIONS_H), feature.h (FEATUREH,
10861 SCM_FEATURE_H), gdbint.h (GDBINTH, SCM_GDBINT_H), guardians.h
10862 (SCM_GUARDIANH, SCM_GUARDIANS_H), hash.h (HASHH, SCM_HASH_H),
10863 hashtab.h (HASHTABH, SCM_HASHTAB_H), init.h (INITH, SCM_INIT_H),
10864 ioext.h (IOEXTH, SCM_IOEXT_H), iselect.h (ISELECTH,
10865 SCM_ISELECT_H), keywords.h (KEYWORDSH, SCM_KEYWORDS_H), lang.h
10866 (LANGH, SCM_LANG_H), mallocs.h (MALLOCSH, SCM_MALLOCS_H), net_db.h
10867 (SCM_NETDBH, SCM_NET_DB_H), objprop.h (OBJPROPH, SCM_OBJPROP_H),
10868 posix.h (POSIXH, SCM_POSIX_H), procprop.h (PROCPROPH,
10869 SCM_PROCPROP_H), properties.h (PROPERTIES_H, SCM_PROPERTIES_H),
10870 ramap.h (RAMAPH, SCM_RAMAP_H), rdelim.h (SCM_RDELIM,
10871 SCM_RDELIM_H), read.h (READH, SCM_READ_H), rw.h (SCM_RW,
10872 SCM_RW_H), scmsigs.h (SCMSIGSH, SCM_SCMSIGS_H), script.h (SCRIPTH,
10873 SCM_SCRIPT_H), simpos.h (SIMPOSH, SCM_SIMPOS_H), socket.h
10874 (SCM_SOCKETH, SCM_SOCKET_H), sort.h (SORTH, SCM_SORT_H),
10875 stackchk.h (STACKCHKH, SCM_STACKCHK_H), stime.h (STIMEH,
10876 SCM_STIME_H), strop.h (STROPH, SCM_STROP_H), strorder.h
10877 (STRORDERH, SCM_STRORDER_H), threads.h (THREADSH, SCM_THREADS_H),
10878 throw.h (THROWH, SCM_THROW_H), version.h (VERSIONH,
10879 SCM_VERSION_H), vports.h (VPORTSH, SCM_VPORTS_H): Renamed
10880 the macros that are defined to inhibit double inclusion of the
10881 same headers to the SCM_<filename>_H format.
10882
fada26b2
MV
108832001-08-27 Marius Vollmer <mvo@zagadka.ping.de>
10884
10885 * ports.c, ports.h, fprots.c, gc.c, ioext.c: Replaced
10886 "scm_t_portable" with "scm_port_table" which was an artifact from
10887 the great "scm_*_t -> scm_t_" renaming.
10888
e4d1c1ea
TTN
108892001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
10890
10891 * gc_os_dep.c (GC_noop1): Move before `GC_find_limit' where it is
10892 used; nfc. Thanks to Bill Schottstaedt.
10893
10894 * validate.h (SCM_VALIDATE_USHORT_COPY, SCM_VALIDATE_SHORT_COPY,
10895 SCM_VALIDATE_UINT_COPY, SCM_VALIDATE_INT_COPY): New macros.
10896 Thanks to Chris Cramer.
10897
b573e744
MV
108982001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
10899
10900 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
10901
10902 * eval.c (scm_m_atbind): Redesigned to behvae like `let', but with
10903 dynamic scope.
10904 * dynwind.h (scm_swap_bindings): Declare.
10905 * dynwind.c (scm_swap_bindings): Make non-static.
10906
8a3e715b
ML
109072001-08-25 Michael Livshin <mlivshin@bigfoot.com>
10908
10909 * gc.c (scm_gc_sweep): now can sweep unreachable variables (by
10910 doing exactly nothing about them). thanks Neil!
10911
cf504ee0
NJ
109122001-08-18 Neil Jerram <neil@ossau.uklinux.net>
10913
10914 * __scm.h (SCM_ENABLE_VCELLS): Fix spelling mistake in comment.
ec2667f0 10915
43b83b54
TTN
109162001-08-17 Thien-Thi Nguyen <ttn@revel.glug.org>
10917
10918 * gc.c: Fix omission bug: Add `heap_segment' forward decl
10919 (proto) in the case when either `GUILE_DEBUG' or
10920 `GUILE_DEBUG_FREELIST' preprocessor symbols are defined.
10921
10922 (map_free_list): Fix typo: Ref `f' correctly.
10923
10924 Thanks to Chris Cramer.
10925
ab4cd34b
RB
109262001-08-15 Rob Browning <rlb@defaultvalue.org>
10927
10928 * Makefile.am (libguile_la_LDFLAGS): use libtool interface version
10929 variables.
10930 (libpath.h): change libguileversion to libguileinterface.
10931
b754e3d1
MV
109322001-08-07 Marius Vollmer <mvo@zagadka.ping.de>
10933
10934 * Makefile.am (EXTRA_DIST): Distribute ChangeLog-1996-1999 and
10935 ChangeLog-2000. Thanks to Daniel Skarda!
10936
8b1d12c7
ML
109372001-08-07 Michael Livshin <mlivshin@bigfoot.com>
10938
10939 * guile-snarf-docs-texi.in: don't call the tokenizer here, we now
10940 do it from the Makefile.
10941
10942 * Makefile.am: rearrange the snarfing slightly, so that .doc files
10943 are of a reasonable size.
10944
baffb19f
NJ
109452001-08-02 Neil Jerram <neil@ossau.uklinux.net>
10946
10947 * stacks.c (scm_make_stack): Improve docstring by explaining use
10948 of cutting args.
10949
c1151355
MV
109502001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
10951
10952 * chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
10953 scm_char_whitespace_p, scm_char_upper_case_p,
10954 scm_char_lower_case_p, scm_char_is_both_p): Do not require
10955 characters to fulfill isascii in addition to the primary
10956 predicate.
10957
3c9a524f
DH
109582001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10959
10960 * numbers.c (DIGITS, scm_small_istr2int, scm_istr2int,
10961 scm_istr2flo, scm_istring2number): Removed.
10962
10963 (iflo2str, scm_real_p, scm_integer_p): Use SCM_<foo> instead of
10964 SCM_SLOPPY_<foo>.
10965
10966 (t_exactness, t_radix, DIGIT2UINT, XDIGIT2UINT, mem2uinteger,
10967 mem2decimal_from_point, mem2ureal, mem2complex, scm_i_mem2number):
10968 Added.
10969
10970 (scm_string_to_number): Use new number parser.
10971
10972 (scm_exact_to_inexact): Replace dummy by a GPROC, which also
10973 handles complex numbers.
10974
10975 * numbers.h (NUMBERSH, SCM_NUMBERS_H): Rename <foo>H to
10976 SCM_<foo>_H.
10977
10978 (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Prefer !SCM_<pred> over
10979 SCM_N<pred>.
10980
10981 (scm_istr2int, scm_istr2flo, scm_istring2number): Removed.
10982
10983 (scm_i_mem2number): Added.
10984
10985 (scm_exact_to_inexact): Changed signature.
10986
10987 * read.c (scm_lreadr): Perform the shortcut test for '+ and '-
10988 here instead of within scm_i_mem2number. Call scm_i_mem2number
10989 instead of scm_istr2int and scm_istring2number.
10990
01f11e02
DH
109912001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
10992
10993 * eval.c (scm_lookupcar, scm_m_body, scm_m_lambda, unmemocopy,
10994 scm_unmemocopy, scm_badargsp, scm_eval_body, CHECK_EQVISH,
10995 SCM_CEVAL, scm_nconc2last, SCM_APPLY, scm_copy_tree): Prefer
10996 !SCM_<pred> over SCM_N<pred>.
10997
10998 (scm_eval_body): Remove side effecting code from macro call.
10999
11000 (SCM_CEVAL, SCM_APPLY): Remove goto statement and redundant
11001 SCM_NIMP test.
11002
6cf69537
DH
110032001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
11004
11005 * pairs.h (SCM_VALIDATE_PAIR): Use SCM_CONSP, not SCM_ECONSP.
11006
54866b6c
MV
110072001-07-29 Marius Vollmer <mvo@zagadka.ping.de>
11008
11009 Removed vcell slot from structs.
43b83b54 11010
54866b6c
MV
11011 * struct.h (scm_vtable_index_vcell): Removed. Renumbered
11012 subsequent indices.
11013
11014 * struct.c (scm_struct_vtable_p): Do not check vcell slot for
11015 zero. Use scm_vtable_index_layout instead of "0" when accessing
11016 said slot.
11017 (scm_init_struct): Remove vcell slot layout code from
11018 required_vtable_fields.
11019
11020 * objects.h (scm_si_redefined, scm_si_hashsets): Renumbered.
11021
11022 * goops.c (build_class_class_slots): Removed vcell slot
11023 definition.
11024
11025 * goops.h: Renumbered slot indices. (SCM_CLASS_CLASS_LAYOUT):
11026 Removed vcell slot layout code.
11027 (scm_si_vcell): Removed.
11028
5b54c4da
MV
110292001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
11030
a0f5718e 11031 "Glocs" have been removed.
43b83b54 11032
a0f5718e
MV
11033 * tags.h: Update tag system docs.
11034 (scm_tc3_cons_gloc): Renamed to scm_tc3_struct. Changed all uses.
11035 (scm_tcs_cons_gloc): Renamed to scm_tcs_struct. Changed all uses.
11036 (SCM_ECONSP, SCM_NECONSP): Removed. Changed all uses to SCM_CONSP
11037 or SCM_NCONSP, respectively.
11038
11039 * struct.c, struct.h, srcprop.c, procs.c, procprop.c, print.c,
11040 objects.c. modules.c, goops.c, eval.c, debug.c: Changed all uses
11041 of scm_tc3_cond_gloc and scm_tcs_cons_gloc. See above.
11042
11043 * print.c (scm_iprin1): Remove printing of glocs. Do not try to
11044 tell glocs from structs.
43b83b54 11045
a0f5718e
MV
11046 * gc.c (scm_gc_mark, scm_gc_sweep): Remove handling of glocs.
11047
11048 * eval.c (scm_m_atbind): Make a list of variables, not glocs.
11049 (scm_ceval, scm_deval): For SCM_IM_BIND, fiddle with variables
11050 instead of with glocs.
11051 (EVALCAR): Do not test for glocs.
11052 (scm_lookupcar, scm_lookupcar1): Do not handle glocs in race
11053 condition.
11054 (scm_unmemocar): Do not handle glocs.
11055 (scm_m_atfop): Memoize as a variable, not as a gloc.
11056 (scm_eval_args, scm_deval_args): Do not handle glocs.
11057 (scm_ceval, scm_deval): Likewise.
43b83b54 11058
a0f5718e
MV
11059 * eval.h (SCM_XEVALCAR): Do not test for glocs.
11060 (SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL, SCM_GLOC_VAL_LOC):
11061 Removed.
11062
11063 * debug.h, debug.c (scm_make_gloc, scm_gloc_p): Removed.
11064
11065 * dynwind.c (scm_swap_bindings): Likewise.
11066 (scm_dowinds): Updated to recognize lists of variables instead of
11067 lists of glocs.
11068
11069 * __scm.h (SCM_CAUTIOS, SCM_RECKLESS): Update comments.
11070
43b83b54 11071
5b54c4da
MV
11072 * gc_os_dep.c (GC_noop1): Moved into the same #if/#endif context
11073 where it is needed.
43b83b54 11074
3c3db128
GH
110752001-07-25 Gary Houston <ghouston@arglist.com>
11076
11077 * numbers.c (scm_logand, scm_logior, scm_logxor): adjusted the
11078 docstrings to reflect the n-ary implementation.
11079
dd29a169
MV
110802001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
11081
11082 * eval.c (scm_ceval, scm_deval): Use "RETURN" macro when returning
11083 value of a variable, not the plain "return" statement.
11084
f5fe6c2f
MV
110852001-07-25 Marius Vollmer <mvo@zagadka.ping.de>
11086
11087 * eval.c: Allow variables in memoized code (in addition to glocs).
11088 (scm_lookupcar): Handle variables in lost races. Replace symbol
11089 with variable directly, do not make a gloc.
11090 (scm_unmemocar): Rewrite variables using a reverse lookup, just
11091 like glocs.
11092 (scm_ceval, scm_deval): Deal with variables in SCM_IM_SET and in
11093 the main switch.
11094
ee0c7345
MV
110952001-07-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
11096
6d9ad98a
MV
11097 * variable.c (scm_i_variable_print): Use "value" instead of
11098 "binding" since a binding is the mapping between symbols and
11099 variables, not between variables and their values.
11100
ee0c7345
MV
11101 * tags.h (scm_tc7_variable): New.
11102 * gc.c (scm_gc_mark): Handle scm_tc7_variable objects.
11103 * print.c (scm_iprin1): Likewise.
11104
11105 * variable.h (scm_tc16_variable): Removed.
11106 (SCM_VARIABLEP): Test for new tc7 code.
11107 (scm_i_variable_print): New.
11108 * variable.c (scm_tc16_variable): Removed.
11109 (variable_print): Renamed to scm_i_variable_print and made
11110 non-static.
11111 (variable_equal_p): Removed.
11112 (make_variable): Construct a tc7 object instead of a smob.
11113 (scm_init_variable): Do not register smob.
43b83b54 11114
f3805ebb
MV
111152001-07-22 Marius Vollmer <mvo@zagadka.ping.de>
11116
11117 * tags.h: Include inttypes.h when we have it.
11118
111192001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
11120
11121 * tags.h (SCM_UNBOUND): Make it the 34th isym/iflag, the 33th slot
11122 is taken by the new SCM_IM_CALL_WITH_VALUES.
11123 * print.c (scm_isymnames): Update table accordingly.
43b83b54 11124
6a1677a3
GH
111252001-07-22 Gary Houston <ghouston@arglist.com>
11126
11127 * regex-posix.c (s_scm_regexp_exec): use scm_long2num not
11128 SCM_MAKINUM to convert regoff_t value to SCM.
11129
1bed8c28
GH
111302001-07-21 Gary Houston <ghouston@arglist.com>
11131
11132 * scmsigs.c: include sys/time.h for itimer stuff.
11133
e658215a
RB
111342001-07-19 Rob Browning <rlb@defaultvalue.org>
11135
11136 * gc_os_dep.c (GC_noop1): ifdef out (unused) to quiet warning.
11137
11138 * c-tokenize.lex: add option %nounput to quiet warning.
11139 Add prototype for yylex to quiet warning.
11140
11141 * scmconfig.h.in: add flags for setitimer and getitimer.
11142
11143 * scmsigs.h (scm_init_scmsigs): new prototype.
11144 (scm_init_scmsigs): new prototype.
11145
11146 * scmsigs.c (s_scm_setitimer): new function.
11147 (s_scm_setitimer): new function.
11148
58ade102
MG
111492001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11150
11151 * alist.c, arbiters.c, async.h, backtrace.h, boolean.c, chars.c,
11152 chars.h, continuations.h, debug-malloc.h, dynl.c, feature.c,
11153 feature.h, filesys.h, fluids.h, fports.h, gc_os_dep.c,
11154 gdb_interface.h, gh_eval.c, gh_funcs.c, gh_io.c, gh_list.c,
11155 gh_predicates.c, gsubr.c, gsubr.h, guardians.h,
11156 guile-func-name-check.in, guile-snarf-docs-texi.in,
11157 guile-snarf-docs.in, guile-snarf.awk.in, guile-snarf.in,
11158 hashtab.h, iselect.h, keywords.h, lang.c, list.h, load.h,
11159 objprop.c, objprop.h, options.c, options.h, random.h,
11160 regex-posix.h, root.c, root.h, script.c, snarf.h, stackchk.c,
11161 strerror.c, strop.h, strports.h, threads.h, values.c, values.h,
11162 version.c, version.h: Updated copyright notice.
11163
6b80d352
DH
111642001-07-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
11165
11166 * goops.c (sym_layout, sym_vcell, sym_vtable, sym_print,
11167 sym_procedure, sym_setter, sym_redefined, sym_h0, sym_h1, sym_h2,
11168 sym_h3, sym_h4, sym_h5, sym_h6, sym_h7, sym_name,
11169 sym_direct_supers, sym_direct_slots, sym_direct_subclasses,
11170 sym_direct_methods, sym_cpl, sym_default_slot_definition_class,
11171 sym_slots, sym_getters_n_setters, sym_keyword_access, sym_nfields,
11172 sym_environment, scm_sym_change_class): New static variables to
11173 hold predefined symbols.
11174
11175 (build_class_class_slots): Build the list using scm_list_n
11176 instead of cons. Also, slots are already created as lists, thus
11177 making a call to maplist unnecessary.
11178
11179 (scm_class_name, scm_class_direct_supers, scm_class_direct_slots,
11180 scm_class_direct_subclasses, scm_class_direct_methods,
11181 scm_class_precedence_list, scm_class_slots, scm_class_environment,
11182 scm_method_procedure, create_standard_classes, purgatory): Use
11183 predefined symbols.
11184
11185 (build_slots_list, compute_getters_n_setters,
11186 scm_sys_initialize_object, scm_sys_inherit_magic_x,
11187 get_slot_value_using_name, set_slot_value_using_name,
11188 scm_sys_invalidate_method_cache_x, scm_generic_capability_p,
11189 scm_compute_applicable_methods, scm_sys_method_more_specific_p,
11190 make_struct_class): Prefer !SCM_<pred> over SCM_N<pred>.
11191
11192 (scm_sys_prep_layout_x): Minimize variable scopes.
11193
11194 (scm_sys_prep_layout_x, scm_sys_fast_slot_ref,
11195 scm_sys_fast_slot_set_x): Fix signedness.
11196
11197 (go_to_hell, go_to_heaven, purgatory, scm_change_object_class,
11198 lock_cache_mutex, unlock_cache_mutex, call_memoize_method,
11199 scm_memoize_method, scm_wrap_object): Use packing and unpacking
11200 when converting to and from SCM values.
11201
11202 (scm_enable_primitive_generic_x): Add rest argument checking.
11203
11204 (map, filter_cpl, maplist, scm_sys_initialize_object,
11205 scm_sys_prep_layout_x, slot_definition_using_name,
11206 scm_enable_primitive_generic_x, scm_compute_applicable_methods,
11207 call_memoize_method, scm_make, scm_make_class): Prefer explicit
11208 predicates over SCM_N?IMP tests.
11209
11210 (scm_sys_prep_layout_x): Fix typo in error message. Fix type
11211 checking.
11212
11213 (burnin, go_to_hell): Use SCM_STRUCT_DATA instead of the SCM_INST
11214 alias.
11215
63bcad19
DH
112162001-07-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
11217
11218 * fports.c (fport_print): Don't use SCM_C[AD]R for non pairs.
11219
11220 * num2integral.i.c (INTEGRAL2NUM, INTEGRAL2BIG): Fix signedness.
11221
11222 * symbols-deprecated.c (scm_gentemp): Simplify vector test.
11223
11224 * vectors.c (scm_vector_p): Eliminate redundant IMP test.
11225
4d6aae71
ML
112262001-07-12 Michael Livshin <mlivshin@bigfoot.com>
11227
11228 * strings.c (s_scm_string): fix arg position in assert.
11229
4b8ec619
GH
112302001-07-11 Gary Houston <ghouston@arglist.com>
11231
11232 * strports.c (st_write): use memcpy, not strncpy. thanks to
11233 Dale P. Smith.
11234
dbb640bd
TTN
112352001-07-09 Thien-Thi Nguyen <ttn@revel.glug.org>
11236
11237 * alist.c, alloca.c, arbiters.c, async.c, async.h, backtrace.c,
11238 boolean.c, chars.c, continuations.c, coop-defs.h, coop-threads.c,
11239 debug-malloc.h, debug.c, debug.h, dynl.c, dynwind.c, eq.c,
11240 error.c, eval.c, evalext.c, feature.c, feature.h, filesys.c,
11241 filesys.h, fluids.c, fluids.h, fports.c, fports.h, gc.c, gc.h,
11242 gdbint.c, gsubr.c, guardians.c, hash.c, hashtab.c, hooks.c,
11243 hooks.h, inet_aton.c, init.c, ioext.c, keywords.c, keywords.h,
11244 lang.c, list.c, load.c, macros.c, mallocs.c, memmove.c, modules.c,
11245 net_db.c, numbers.c, numbers.h, objects.c, objprop.c, options.c,
11246 pairs.c, pairs.h, ports.c, ports.h, posix.c, print.c, print.h,
11247 procprop.c, procs.c, procs.h, properties.c, putenv.c, ramap.c,
11248 random.c, random.h, read.c, regex-posix.c, regex-posix.h, root.c,
11249 root.h, scmsigs.c, script.c, simpos.c, smob.c, snarf.h, socket.c,
11250 sort.c, srcprop.c, srcprop.h, stackchk.c, stacks.c, stacks.h,
11251 stime.c, strerror.c, strings.c, strings.h, strop.c, strorder.c,
11252 strports.c, struct.c, struct.h, symbols-deprecated.c, symbols.c,
11253 symbols.h, tags.h, threads.c, threads.h, throw.c, unif.c, unif.h,
11254 variable.c, variable.h, vectors.c, vectors.h, version.c, vports.c,
11255 weaks.c, weaks.h: Remove "face-lift" comment.
11256
fd6c6321
RB
112572001-07-08 Rob Browning <rlb@defaultvalue.org>
11258
11259 * .cvsignore: add stamp-h.in.
11260
f91e4547
MG
112612001-07-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11262
11263 * hooks.c (scm_make_hook, scm_add_hook_x),
11264 (scm_remove_hook_x, scm_reset_hook_x, scm_run_hook): Added return
11265 value info to the docstrings.
11266
7beabedb
MG
112672001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11268
11269 Some more compatibility patches for Windows.
dbb640bd 11270
7beabedb
MG
11271 * posix.c (getlogin): getlogin() implementation for Windows.
11272
11273 * backtrace.c, ioext.c: Include <stdio.h>.
11274
11275 * unif.c, script.c, rw.c, error.c: Include <io.h>, if it does
11276 exist.
11277
11278 * cpp_sig_symbols.in: Added SIGBREAK.
11279
0d0560d0
MV
112802001-07-01 Marius Vollmer <mvo@zagadka.ping.de>
11281
11282 * strports.c (scm_read_0str, scm_eval_0str): Call
11283 scm_c_read_string and scm_c_eval_string respectively, not
11284 themselves. Thanks to Dale P. Smith!
11285
9a97e362
DH
112862001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
11287
11288 * unif.c (scm_array_set_x): The variable args does not
11289 necessarily have to be a list. Further, got rid of a redundant
11290 SCM_NIMP test.
11291
592996c9
DH
112922001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
11293
11294 * list.c (SCM_I_CONS): Make sure the cell type is initialized
11295 last.
11296
11297 * gc.c (s_scm_map_free_list, scm_igc, scm_gc_sweep,
f91e4547 11298 init_heap_seg): Fixed signedness.
592996c9
DH
11299
11300 (init_heap_seg): Replaced strange for-loop with a while loop.
11301
11302 * weaks.h (WEAKSH, SCM_WEAKS_H): Rename <foo>H to SCM_<foo>_H.
11303
11304 (SCM_WVECTP): Prefer !SCM_<pred> over SCM_N<pred>.
11305
11306 The following patch adds conservative marking for the elements of
11307 free or allocated cells.
11308
11309 * gc.c (allocated_mark, heap_segment): New static functions.
11310
11311 (which_seg): Deleted, since the functionality is now provided by
11312 function heap_segment.
11313
11314 (map_free_list): Use heap_segment instead of which_seg.
11315
11316 (MARK): If cell debugging is disabled, mark free cells
11317 conservatively.
11318
11319 (scm_mark_locations, scm_cellp): Extracted the search for the
11320 heap segment of a SCM value into function heap_segment.
11321
11322 (scm_init_storage): Allocated cells must be marked
11323 conservatively.
11324
11325 * gc.[ch] (scm_gc_mark_cell_conservatively): New function.
11326
11327 The following patch changes the representation of weak vectors to
11328 double cells instead of using an extension of the vector's
11329 allocated memory.
11330
11331 * gc.c (MARK): Use SCM_SET_WVECT_GC_CHAIN instead of assigning to
11332 the result of SCM_WVECT_GC_CHAIN.
11333
11334 (scm_gc_sweep): Weak vectors don't have extra fields any more.
11335
11336 * weaks.c (allocate_weak_vector): New static function. It does
11337 not patch any previously created vector object during the
11338 construction of a weak vector, and thus doesn't need to switch
11339 off interrupts during vector creation.
11340
11341 (scm_make_weak_vector, scm_make_weak_key_hash_table,
11342 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
11343 Use allocate_weak_vector to provide the new weak vector object.
11344
11345 * weaks.h (SCM_WVECT_TYPE, SCM_SET_WVECT_TYPE,
11346 SCM_SET_WVECT_GC_CHAIN): New macros. The weak vector subtype is
11347 now stored in the double cell.
11348
11349 (SCM_IS_WHVEC, SCM_IS_WHVEC_V, SCM_IS_WHVEC_B, SCM_IS_WHVEC_ANY):
11350 Use SCM_WVECT_TYPE.
11351
11352 (SCM_WVECT_GC_CHAIN): The weak objects are now chained together
11353 using an entry of the double cell.
11354
4dadf664
TTN
113552001-06-30 Thien-Thi Nguyen <ttn@revel.glug.org>
11356
11357 * stamp-h.in: bye bye
11358
02202352
MV
113592001-06-30 Marius Vollmer <mvo@zagadka.ping.de>
11360
11361 * gh_eval.c (gh_eval_str): Use scm_c_eval_string instead of
11362 scm_eval_0str.
11363
11364 * load.c, load.h (scm_c_primitive_load,
11365 scm_c_primitive_load_path): New.
11366
11367 * strports.c, strports.h (scm_c_read_string): Renamed from
11368 scm_read_0str. Also, added "const" qualifier to argument.
11369 (scm_c_eval_string): Renamed from scm_eval_0str.
11370 (scm_read_0str, scm_eval_0str): Deprecated.
11371
df1ad0d1
MG
113722001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11373
11374 * fluids.c (scm_c_with_fluid): Use scm_list_1() instead of
11375 SCM_LIST1.
11376
1afff620
KN
113772001-06-28 Keisuke Nishida <kxn30@po.cwru.edu>
11378
11379 * list.h (scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5,
11380 scm_list_n): New functions.
11381 (SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5,
11382 SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify): Deprecated.
11383 (lots of files): Use the new functions.
4dadf664 11384
1afff620
KN
11385 * goops.c (CALL_GF1, CALL_GF2, CALL_GF3, CALL_GF4): Use scm_call_N.
11386
11387 * strings.c: #include "libguile/deprecation.h".
11388
b858464a
MG
113892001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11390
11391 * read.c (scm_lreadr): When reading a hash token, check for a
11392 user-defined hash procedure first, so that overriding the builtin
11393 hash characters is possible (this was needed for implementing
11394 SRFI-4's read synax `f32(...)').
4dadf664 11395
b858464a
MG
11396 * num2integral.i.c: Use scm_t_signed_bits instead of scm_t_bits,
11397 because the latter is unsigned now and breaks comparisons like
11398 (n < (scm_t_signed_bits)MIN_VALUE).
4dadf664 11399
d95c0b76
NJ
114002001-06-26 Neil Jerram <neil@ossau.uklinux.net>
11401
11402 * eval.h, eval.c (scm_call_4): New function.
11403
11404 * eval.c (SCM_APPLY, SCM_CEVAL, ENTER_APPLY): Call trap handlers
11405 directly rather than dispatching to them via scm_ithrow and a lazy
11406 catch.
4dadf664 11407
d95c0b76
NJ
11408 * eval.c (scm_evaluator_trap_table), eval.h (SCM_ENTER_FRAME_HDLR,
11409 SCM_APPLY_FRAME_HDLR, SCM_EXIT_FRAME_HDLR): Add three new options
11410 for trap handler procedures.
11411
11412 * debug.h (SCM_RESET_DEBUG_MODE): Add checks for trap handler
11413 procedures not being #f.
11414
30e3be5a
ML
114152001-06-27 Michael Livshin <mlivshin@bigfoot.com>
11416
11417 * Makefile.am (c-tokenize.c): add rule to generate it.
11418 (EXTRA_DIST): add c-tokenize.lex, so it gets distributed.
11419
11420 filter-doc-snarfage.c: remove.
11421
82893676
MG
114222001-06-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11423
11424 * ports.c (scm_output_port_p): Use result of SCM_COERCE_OUTPORT.
11425
11426 The following set of changes makes compiling Guile under various
11427 Windows compilers easier. Compilation under GNU systems should
11428 not be affected at all.
11429
11430 Thanks to Stefan Jahn for all necessary information, patches and
11431 testing.
4dadf664 11432
82893676
MG
11433 * posix.c: Conditialize getpwent, getgrent, kill, getppid, getuid,
11434 getpgrp, ttyname, primitive-fork and some header inclusion for
11435 Windows.
11436
11437 * random.c: Define M_PI, if not predefined and use __int64 for
11438 LONG64 under Windows.
11439
11440 * scmsigs.c: Emulate some functions (alarm, sleep, kill) under
11441 Windows and conditionalize some signal names.
11442
4dadf664 11443 * socket.c (scm_getsockopt): Added missing comma.
82893676
MG
11444 Include socket library header under Windows.
11445
11446 * stime.c (CLKTCK): Add cast to int, to make it compile under
11447 Windows.
11448
11449 * ports.c (truncate): New function, compiled only under Windows.
11450
11451 * net_db.c: Do not declare errno under Windows.
11452
11453 * iselect.h, inet_aton.c: Include socket library headers under
11454 Windows.
11455
11456 * guile.c (inner_main): Under Windows, initialize socket library
11457 and initialize gdb_interface data structures.
11458
11459 * gdb_interface.h: Under Windows, gdb_interface cannot be
11460 initialized statically. Initialize at runtime instead.
11461
11462 * fports.c (write_all): ssize_t -> size_t.
11463 (fport_print): Conditionalize call to ttyname().
11464 (getflags): New function, compiled only under Windows.
11465
11466 * filesys.c: Conditionalize inclusion of <pwd.h>. Conditionalize
11467 primitives chown, link, fcntl.
11468 (scm_basename, scm_dirname): Under Windows, handle \ as well as /
11469 as path seperator.
11470
11471 * backtrace.c: Include <io.h> under Windows.
11472
11473 * async.h (ASYNCH, SCM_ASYNC_H): Rename <foo>H to SCM_<foo>_H.
11474
11475 * _scm.h: Added preprocessor conditional for __MINGW32__ for errno
11476 declaration.
11477
fdc28395
KN
114782001-06-27 Keisuke Nishida <kxn30@po.cwru.edu>
11479
11480 * eval.c (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
11481 scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): New functions.
11482 * eval.h (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
11483 scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): Declared.
11484 * async.c (scm_run_asyncs), coop-threads.c (scheme_body_bootstrip,
11485 scheme_handler_bootstrip), debug.c (with_traps_inner), dynwind.c
11486 (scm_dynamic_wind, scm_dowinds), environments.c
11487 (import_environment_conflict), eval.c (scm_macroexp, scm_force,
11488 scm_primitive_eval_x, scm_primitive_eval), fluids.c (apply_thunk),
11489 goops.c (GETVAR, purgatory, make_class_from_template,
11490 scm_ensure_accessor), hashtab.c (scm_ihashx, scm_sloppy_assx,
11491 scm_delx_x, fold_proc), hooks.c (scm_c_run_hook), load.c
11492 (scm_primitive_load), modules.c (scm_resolve_module,
11493 scm_c_define_module, scm_c_use_module, scm_c_export,
11494 module_variable, scm_eval_closure_lookup, scm_sym2var,
11495 scm_make_module, scm_ensure_user_module, scm_load_scheme_module),
11496 ports.c (scm_port_for_each), print.c (scm_printer_apply),
11497 properties.c (scm_primitive_property_ref), ramap.c (ramap,
11498 ramap_cxr, rafe, scm_array_index_map_x, read.c (scm_lreadr),
11499 scmsigs.c (sys_deliver_signals), sort.c (applyless), strports.c
11500 (scm_object_to_string, scm_call_with_output_string,
11501 scm_call_with_input_string), throw.c (scm_body_thunk,
11502 scm_handle_by_proc, hbpca_body), unif.c (scm_make_shared_array,
11503 scm_make_shared_array), vports.c (sf_flush, sf_write,
11504 sf_fill_input, sf_close): Use one of the above functions.
11505 * goops.c, hashtab.c, scmsigs.c, sort.c: #include "libguile/root.h".
11506
36284627
DH
115072001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
11508
11509 * filesys.c (scm_close), ports.c (scm_close_port,
11510 scm_port_closed_p), strop.c (scm_string_null_p): Use SCM_BOOL
11511 instead of SCM_NEGATE_BOOL.
11512
11513 * filesys.c (scm_stat): Clean up type dispatch.
11514
11515 * filesys.c (scm_stat), ports.c (scm_input_port_p,
11516 scm_output_port_p): Get rid of redundant IM type check.
11517
11518 * filesys.c (scm_readdir, scm_getcwd, scm_readlink), gh_data.c
11519 (gh_str2scm), load.c (scm_primitive_load, scm_internal_parse_path,
11520 scm_search_path), net_db.c (scm_gethost, scm_getnet, scm_getproto,
11521 scm_return_entry), numbers.c (scm_number_to_string), objects.c
11522 (scm_make_subclass_object), ports.c (scm_port_mode), read.c
11523 (scm_lreadr), simpos.c (scm_getenv), socket.c (scm_inet_ntoa,
11524 scm_addr_vector), stime.c (scm_strftime), strings.c
11525 (scm_makfromstrs, scm_makfrom0str, scm_substring), strings.h
11526 (SCM_STRING_COERCE_0TERMINATION_X), strop.c (string_copy,
11527 scm_string_split), strports.c (scm_strport_to_string), symbols.c
11528 (scm_symbol_to_string), vports.c (sf_write): Use scm_mem2string
11529 instead of scm_makfromstr.
11530
11531 * net_db.c (scm_sethost, scm_setnet, scm_setproto, scm_setserv),
11532 ports.c (scm_close_all_ports_except), read.c (scm_lreadr,
11533 scm_read_hash_extend), stime.c (scm_strftime), strings.c
11534 (scm_string_append, scm_string), strings.h (SCM_STRINGP,
11535 SCM_STRING_COERCE_0TERMINATION_X, SCM_RWSTRINGP), strop.c
11536 (string_capitalize_x): Prefer explicit type check over SCM_N?IMP,
11537 !SCM_<pred> over SCM_N<pred>.
11538
11539 * strings.[ch] (scm_makfromstr): Deprecated.
11540
11541 (scm_mem2string): New function, replaces scm_makfromstr.
11542
11543 * strings.c (scm_substring), strop.c (string_copy,
11544 scm_string_split), strports.c (scm_strport_to_string), symbols.c
11545 (scm_symbol_to_string): Fix gc problem.
11546
11547 * strings.h (STRINGSH, SCM_STRINGS_H): Rename <foo>H to
11548 SCM_<foo>_H.
11549
11550 * validate.h (SCM_VALIDATE_SUBSTRING_SPEC_COPY): Eliminate
11551 warning about comparing signed and unsigned values. This fix is
11552 not optimal, since it won't work reliably if sizeof (c_start) >
11553 sizeof (size_t) or sizeof (c_end) > sizeof (size_t). A better
11554 solution is to define this macro as an inline function, thus
11555 allowing to specifiy the types of c_start and c_end.
11556
13dcb666
DH
115572001-06-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
11558
11559 * debug.h (SCM_DEBUGOBJ_FRAME): Deliver result as a
11560 scm_t_debug_frame*.
11561
11562 * debug.h (DEBUGH, SCM_DEBUG_H), stacks.h (STACKSH, SCM_STACKSH):
11563 Rename <foo>H to SCM_<foo>_H.
11564
11565 * stacks.c (NEXT_FRAME, narrow_stack): Prefer explicit type check
11566 over SCM_N?IMP, !SCM_<pred> over SCM_N<pred>.
11567
11568 (narrow_stack): Make i unsigned. Don't use side-effecting
11569 operations in conditions.
11570
11571 (narrow_stack, scm_make_stack, scm_stack_id,
11572 scm_last_stack_frame): Get rid of redundant SCM_N?IMP checks.
11573
11574 (scm_make_stack, scm_stack_id, scm_last_stack_frame): Clean up
11575 type dispatch. No need to cast result of SCM_DEBUGOBJ_FRAME any
11576 more.
11577
11578 (scm_stack_ref, scm_frame_previous, scm_frame_next): Fix
11579 signedness.
11580
ea2c3968 11581 (scm_last_stack_frame): Remove bogus `;'.
13dcb666
DH
11582
11583 * stacks.h (SCM_FRAMEP): Fix type check.
11584
ac13d9d2
ML
115852001-06-25 Michael Livshin <mlivshin@bigfoot.com>
11586
ee0c0e03
ML
11587 * Makefile.am (MAINTAINERCLEANFILES): be sure to remove
11588 c-tokenize.c when doing maintainer-clean.
11589
ac13d9d2
ML
11590 * snarf.h (SCM_SNARF_DOCS): change the "grammar" slightly.
11591
11592 * guile-snarf-docs.in, guile-snarf-docs-texi.in: rewrite &
11593 simplify.
11594
11595 * eval.c: all hash signs are in column 0.
11596
11597 * Makefile.am (guile_filter_doc_snarfage): build using
11598 c-tokenize.c, not filter-doc-snarfage.c.
11599 rearrange snarfing dependencies a bit.
11600
11601 * c-tokenize.lex: new file.
11602
16be44e5
MV
116032001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
11604
11605 * srcprop.h, srcprop.c (scm_srcprops_to_plist): Renamed from
11606 scm_t_srcpropso_plist. See the big type renaming.
11607 * coop-defs.h (scm_mutex_trylock, scm_cond_timedwait): Likewise.
11608 Thanks to Seth Alves!
4dadf664 11609
16be44e5
MV
11610 * numbers.c (SIZE_MAX, PTRDIFF_MIN, PTRDIFF_MAX): Only define when
11611 they aren't defined already.
11612
5843e5c9
DH
116132001-06-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
11614
11615 * backtrace.c (display_backtrace_body): Use SCM_VALIDATE_STACK
11616 and SCM_VALIDATE_OPOUTPORT instead of SCM_ASSERT. Fix signedness
11617 problem.
11618
11619 * backtrace.c (display_expression, scm_set_print_params_x,
11620 display_application, display_frame, scm_backtrace), numbers.c
11621 (scm_istring2number), objects.c (scm_class_of,
11622 scm_mcache_lookup_cmethod, scm_mcache_compute_cmethod): Prefer
11623 explicit type check over SCM_N?IMP, !SCM_<pred> over SCM_N<pred>.
11624
11625 * fluids.c (scm_fluid_ref, scm_fluid_set_x): Fluid numbers are
11626 always positive.
11627
11628 * numbers.c (scm_i_mkbig): Remove unnecessary casts, remove
11629 unnecessary SCM_DEFER_INTS, SCM_ALLOW_INTS.
11630
11631 * objects.c (scm_class_of): Type fix.
11632
11633 (scm_mcache_lookup_cmethod): Improved comment, simplified,
11634 eliminated goto.
11635
11636 * pairs.h (scm_error_pair_access): The function can return if
11637 called recursively.
11638
6b41a313
MG
116392001-06-20 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11640
11641 * init.c (scm_init_guile_1): Removed initialization of tag.c.
11642
11643 * gdbint.c, init.c: Removed inclusion of tag.h.
11644
11645 * tag.h, tag.c: Removed files.
11646
11647 * Makefile.am: Removed tag.{h,c,doc,x} in various places.
11648
fbbdb121
GH
116492001-06-20 Gary Houston <ghouston@arglist.com>
11650
11651 * deprecation.c, extensions.c, rw.c: include string.h.
11652
72c17ed0
GH
116532001-06-19 Gary Houston <ghouston@arglist.com>
11654
11655 * filter-doc-snarfage.c (process): added ungetc in
11656 MULTILINE_COOKIE case since otherwise it fails when there's no
11657 space between the '(' and the quote of the following string
11658 (gcc 3.0).
11659
4ff9f825
MV
116602001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
11661
4927dd28
MV
11662 Throughout: replace "scm_*_t" with "scm_t_*", except "scm_lisp_t".
11663
b629af45
MV
116642001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
11665
11666 * unif.h (SCM_ARRAY_NDIM): Shift then cast so that no sign
0f002b27
MV
11667 extension takes place.
11668 * strings.h (SCM_STRING_LENGTH): Likewise.
11669 (SCM_STRING_MAX_LENGTH): Use unsigned numbers.
4dadf664 11670
4ff9f825
MV
11671 * __scm.h (ptrdiff_t): Typedef to long when configure didn't find
11672 it.
11673
11674 * tags.h: Include <stdint.h> when we have it.
11675 (scm_bits_t): Changed to be a unsigned type. Use uintptr_t when
11676 available. Else use "unsigned long".
11677 (scm_signed_bits_t): New.
11678
11679 * numbers.h (SCM_SRS): Cast shiftee to scm_signed_bits_t.
11680 (SCM_INUM): Cast result to scm_signed_bits_t.
11681
58bee6a8
TTN
116822001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org>
11683
11684 * mkstemp.c: Update path to #include file scmconfig.h.
11685 Thanks to Golubev I. N.
11686
00d8d838
DH
116872001-06-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
11688
11689 * struct.h (SCM_STRUCT_VTABLE_FLAGS): New macro.
11690
ea2c3968 11691 * goops.h (SCM_NUMBER_OF_SLOTS): Removed bogus `\' at the end of
00d8d838
DH
11692 the macro definition.
11693
11694 (SCM_CLASSP, SCM_INSTANCEP, SCM_PUREGENERICP, SCM_ACCESSORP,
11695 SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Use SCM_STRUCT_VTABLE_FLAGS
11696 instead of SCM_INST_TYPE.
11697
11698 (SCM_ACCESSORP, SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Make sure
11699 the object is a struct before accessing its struct flags.
11700
11701 (SCM_INST_TYPE, SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Deprecated.
11702
495c67e5
GH
117032001-06-10 Gary Houston <ghouston@arglist.com>
11704
11705 * rdelim.c (scm_init_rdelim_builtins): don't try to activate the
11706 (ice-9 rdelim) module in (guile) and (guile-user). it didn't
11707 work reliably anymore. try it from boot-9.scm instead.
11708
6a9003d3
MV
117092001-06-09 Marius Vollmer <mvo@zagadka.ping.de>
11710
11711 * ports.c (scm_lfwrite): Maintain columnd and row count in port.
9a5fa6e9 11712 Thanks to Matthias Köppe!
58bee6a8 11713
47bcd646
ML
117142001-06-08 Michael Livshin <mlivshin@bigfoot.com>
11715
a88ff5b6
ML
11716 * snarf.h, filter-doc-snarfage.c: more changes to cope with
11717 space-happy C preprocessors.
11718
47bcd646 11719 * filter-doc-snarfage.c, guile-snarf.in: try to cope with spaces
9a5fa6e9 11720 inside cookies. thanks to Matthias Köppe!
47bcd646 11721
bab246f3
DH
117222001-06-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
11723
11724 * keywords.c (keyword_print): Don't use SCM_C[AD]R to access
11725 keywords. Fix gc protection.
11726
11727 * objects.c (scm_mcache_lookup_cmethod): Don't use side effecting
11728 operations in macro calls.
11729
11730 * pairs.c (scm_error_pair_access): Avoid recursion.
11731
11732 Thanks to Matthias Koeppe for reporting the bugs that correspond
11733 to the following set of patches.
11734
11735 * unif.c (scm_bit_set_star_x, scm_bit_invert_x), vectors.h
11736 (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR): Obtain the
11737 bitvector base address using SCM_BITVECTOR_BASE.
11738
11739 * unif.h (SCM_BITVECTOR_BASE): Return the base address as an
11740 unsigned long*.
11741
dcb410ec
DH
117422001-06-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
11743
11744 * goops.c (SCM_CLASS_REDEF): Removed.
11745
11746 * vectors.h (VECTORSH, SCM_VECTORS_H): Renamed <foo>H to
11747 SCM_<foo>_H.
11748
11749 Thanks to Matthias Koeppe for reporting the bugs that correspond
11750 to the following set of patches.
11751
11752 * goops.c (scm_sys_prep_layout_x, scm_basic_basic_make_class,
11753 create_basic_classes, scm_sys_fast_slot_set_x, set_slot_value,
11754 scm_sys_allocate_instance, clear_method_cache,
11755 scm_sys_invalidate_method_cache_x, scm_make,
11756 create_standard_classes, scm_make_port_classes, scm_make_class,
11757 scm_add_slot): Use SCM_SET_SLOT to set slot values.
11758
11759 (prep_hashsets): Use SCM_SET_HASHSET to set class hash values.
11760
11761 * goops.h (SCM_SET_SLOT, SCM_SET_HASHSET): New macros.
11762
11763 * ramap.c (BINARY_ELTS_CODE, BINARY_PAIR_ELTS_CODE,
11764 UNARY_ELTS_CODE): Remove bogus break statement.
11765
11766 * vectors.h (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR):
11767 Don't access bit vectors elements as SCM objects.
11768
11769 * weaks.c (scm_make_weak_vector, scm_make_weak_key_hash_table,
11770 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
11771 Don't assign to an unpacked value.
11772
e81d98ec
DH
117732001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
11774
11775 * __scm.h (SCM_NORETURN): Moved here from error.h.
11776
11777 (SCM_UNUSED): New macro.
11778
11779 (SCM_DEBUG_PAIR_ACCESSES): New macro.
11780
11781 * backtrace.c (display_error_handler), continuations.c
11782 (continuation_print), debug.c (debugobj_print), dynwind.c
11783 (guards_print), environments.c (observer_print,
11784 core_environments_finalize, leaf_environment_cell,
11785 leaf_environment_print, eval_environment_print,
11786 eval_environment_observer, import_environment_define,
11787 import_environment_undefine, import_environment_print,
11788 import_environment_observer, export_environment_define,
11789 export_environment_undefine, export_environment_print,
11790 export_environment_observer), eval.c (scm_m_quote, scm_m_begin,
11791 scm_m_if, scm_m_set_x, scm_m_and, scm_m_or, scm_m_case,
11792 scm_m_cond, scm_m_lambda, scm_m_letstar, scm_m_do, scm_m_delay,
11793 scm_m_letrec1, scm_m_apply, scm_m_cont, scm_m_nil_cond,
11794 scm_m_nil_ify, scm_m_t_ify, scm_m_0_cond, scm_m_0_ify,
11795 scm_m_1_ify, scm_m_atfop, scm_m_at_call_with_values), evalext.c
11796 (scm_m_generalized_set_x), fluids.c (fluid_print), fports.c
11797 (fport_print), gc.c (gc_start_stats, scm_remember_upto_here_1,
11798 scm_remember_upto_here_2, scm_remember_upto_here, mark_gc_async),
11799 gh_init.c (gh_standard_handler), goops.c (get_slot_value,
11800 set_slot_value, test_slot_existence, scm_change_object_class,
11801 scm_m_atslot_ref, scm_m_atslot_set_x, make_struct_class,
11802 default_setter), guardians.c (guardian_print, guardian_gc_init,
11803 guardian_zombify, whine_about_self_centered_zombies), guile.c
11804 (inner_main), init.c (stream_handler), keywords.c (keyword_print),
11805 mallocs.c (malloc_print), numbers.c (scm_print_real,
11806 scm_print_complex, scm_bigprint), ports.c (flush_port_default,
11807 end_input_default, scm_port_print, fill_input_void_port,
11808 write_void_port), root.c (root_print), smob.c (scm_mark0,
11809 scm_free0, scm_smob_print, scm_smob_apply_1_error,
11810 scm_smob_apply_2_error, scm_smob_apply_3_error, free_print),
11811 stime.c (restorezone), strings.c (scm_makfromstr), struct.c
11812 (scm_struct_free_0, scm_struct_free_standard,
11813 scm_struct_free_entity, scm_struct_gc_init, scm_free_structs),
11814 throw.c (jmpbuffer_print, lazy_catch_print, ss_handler,
11815 scm_handle_by_throw, scm_ithrow), weaks.c
11816 (scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
11817 scm_scan_weak_vectors), ramap.c (scm_array_fill_int), filesys.c
11818 (scm_dir_print): Mark unused parameters with SCM_UNUSED.
11819
11820 * error.h (SCM_NORETURN): Moved to __scm.h.
11821
11822 * error.h (ERRORH, SCM_ERROR_H), pairs.h (PAIRSH, SCM_PAIRS_H):
11823 Renamed <foo>H to SCM_<foo>_H.
11824
11825 * gc.c (debug_cells_gc_interval): New static variable.
11826
11827 (scm_assert_cell_valid): If selected by the user, perform
11828 additional garbage collections.
11829
11830 (scm_set_debug_cell_accesses_x): Extended to let the user specify
11831 if additional garbage collections are desired.
11832
11833 (mark_gc_async): If additional garbage collections are selected
11834 by the user, don't call the after-gc-hook. Instead require the
11835 user to run the hook manually.
11836
11837 * pairs.c (scm_error_pair_access): New function. Only compiled
11838 if SCM_DEBUG_PAIR_ACCESSES is set to 1.
11839
11840 * pairs.h (SCM_VALIDATE_PAIR): New macro.
11841
11842 (SCM_CAR, SCM_CDR, SCM_SETCAR, SCM_SETCDR): If
11843 SCM_DEBUG_PAIR_ACCESSES is set to 1, make sure that the argument
11844 is a real pair object. (Glocs are also accepted, but that may
11845 change.) If not, abort with an error message.
11846
17fa3fcf
DH
118472001-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
11848
11849 * eval.c (SCM_VALIDATE_NON_EMPTY_COMBINATION): New macro.
11850
11851 (SCM_CEVAL, SCM_APPLY): Replace calls to SCM_EVALIM2 with calls
11852 to SCM_VALIDATE_NON_EMPTY_COMBINATION.
11853
feeedafb
MV
118542001-06-05 Marius Vollmer <mvo@zagadka.ping.de>
11855
11856 * extensions.c (scm_c_register_extension): Allow NULL as library
11857 name.
11858 (load_extension): Ignore NULL library names when comparing.
58bee6a8 11859
feeedafb
MV
11860 * hash.c (scm_hasher): Use SCM_UNPACK in the case labels so that
11861 non-pointers are being compared. Thanks to Alexander Klimov!
11862
4bcdfe46
GH
118632001-06-04 Gary Houston <ghouston@arglist.com>
11864
11865 * rw.c (scm_write_string_partial): new procedure implementing
11866 write-string/partial in (ice-9 rw).
11867 * rw.h: declare scm_write_string_partial.
58bee6a8 11868
f480396b
MV
118692001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
11870
feeedafb
MV
11871 * keywords.c (keyword_print): Substract 1 from length of symbol
11872 name, accounting for the silly dash.
11873
11874 * dynl.c (scm_registered_modules, scm_clear_registered_modules):
11875 Do not emit deprecation warning.
11876
f480396b
MV
11877 Added exception notice to all files.
11878
11879 * dynl.c: Include "deprecation.h".
11880
c794483c
MV
118812001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
11882
11883 * dynl.c (scm_register_module_xxx, scm_registered_modules,
11884 scm_clear_registered_modules): Deprecated.
11885
9454d8d5
RB
118862001-06-02 Rob Browning <rlb@cs.utexas.edu>
11887
11888 * .cvsignore: add guile_filter_doc_snarfage guile-snarf-docs
11889 guile-snarf-docs-texi.
11890
11891 * fports.c: HAVE_ST_BLKSIZE changed to
11892 HAVE_STRUCT_STAT_ST_BLKSIZE.
11893 (scm_fport_buffer_add): HAVE_ST_BLKSIZE changed to
11894 HAVE_STRUCT_STAT_ST_BLKSIZE.
11895
11896 * filesys.c (scm_stat2scm): HAVE_ST_RDEV changed to
11897 HAVE_STRUCT_STAT_ST_RDEV.
11898 (scm_stat2scm): HAVE_ST_BLKSIZE changed to
11899 HAVE_STRUCT_STAT_ST_BLKSIZE.
11900 (scm_stat2scm): HAVE_ST_BLOCKS changed to
11901 HAVE_STRUCT_STAT_ST_BLOCKS.
11902
114f9bab
MV
119032001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
11904
b0c16cd9
MV
11905 * strports.c (scm_eval_string): Use scm_primitive_eval_x instead
11906 of scm_eval_x to allow module changes between the forms in the
11907 string. Set/restore module using scm_c_call_with_current_module.
11908
114f9bab
MV
11909 * mkstemp.c: New file, slightly modified from libiberties
11910 mkstemps.c.
11911
c99f9605
ML
119122001-05-31 Michael Livshin <mlivshin@bigfoot.com>
11913
11914 * guile-snarf-docs.in, guile-snarf-docs-texi.in,
11915 filter-doc-snarfage.c: new files.
11916
11917 * Makefile.am: add stuff to [build,] use and distribute
11918 guile-snarf-docs, guile-snarf-docs-texi, guile_filter_doc_snarfage.
11919
11920 * guile-snarf.in: grok the new snarf output.
11921
11922 * snarf.h: make the output both texttools- and `read'-friendly.
11923
47bcd646
ML
11924 * guile-doc-snarf.in: reimplement in terms of guile-snarf and
11925 guile-snarf-docs. (should also deprecate, I guess. maybe not).
c99f9605 11926
7eb5d7b2
MV
119272001-05-31 Marius Vollmer <mvo@zagadka.ping.de>
11928
11929 * print.c (scm_simple_format): Support "~~" and "~%". Signal
11930 error for unsupported format controls and for superflous
ec2667f0 11931 arguments. Thanks to Daniel Skarda!
7eb5d7b2
MV
11932
11933 * print.h, print.c (scm_print_symbol_name): Factored out of
11934 scm_iprin1.
11935 (scm_iprin1): Call it.
58bee6a8 11936
7eb5d7b2
MV
11937 * keywords.c (keyword_print): Use scm_print_symbol_name so that
11938 weird names are printed correctly.
11939
11940 * print.c (scm_print_symbol_name): Symbols whose name starts with
11941 `#' or `:' or ends with `:' are considered weird.
11942
609c3d30
MG
119432001-05-30 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11944
11945 * numbers.c (scm_difference, scm_divide): Clarified comments for -
11946 and /.
11947
119482001-05-29 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11949
11950 * debug.h: Removed prototype for scm_eval_string.
11951
8d09eb04
MG
119522001-05-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11953
11954 * symbols.c (scm_gensym): Fix buffer overrun (try `(gensym
58bee6a8 11955 (make-string 2000 #\!))' in an older version).
8d09eb04
MG
11956
11957 Change strncpy to memcpy to allow embedded NUL characters in
11958 symbol prefix.
11959
dd85ce47
ML
119602001-05-28 Michael Livshin <mlivshin@bigfoot.com>
11961
fde50407
ML
11962 * hooks.c (scm_create_hook): deprecated.
11963 (make_hook): deleted.
11964 (scm_make_hook): all the hook creation code is now here.
11965
11966 * gc.c (scm_init_gc): don't call `scm_create_hook'. instead make
11967 a hook, make it permanent, and do a `scm_c_define' on it.
11968
dd85ce47
ML
11969 * strop.c (s_scm_string_capitalize_x): fix docstring quoting.
11970
11971 * socket.c (s_scm_inet_pton): fix docstring quoting.
11972 (s_scm_inet_ntop): ditto.
11973
11974 * num2integral.i.c (INTEGRAL2NUM): cast to fix a warning.
11975
11976 * hashtab.c (scm_internal_hash_fold): fix argument position in
11977 SCM_ASSERT.
11978
11979 * environments.c (s_scm_import_environment_set_imports_x): fix
11980 argument position in SCM_ASSERT.
11981
11982 * debug.c (s_scm_make_gloc): fix SCM packing/unpacking.
11983 (s_scm_make_iloc): ditto.
11984
729dbac3
DH
119852001-05-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
11986
11987 * __scm.h (SCM_DEBUG_TYPING_STRICTNESS): Make 1 the default.
11988
11989 * eval.c (promise_print): Read the promise's value as an object.
11990
11991 (SCM_CEVAL): Don't perform side-effecting operations in macro
11992 parameters.
11993
11994 * eval.h (SCM_EVALIM2): Fix the typing strictness of the
11995 conditional expression.
11996
11997 * gc.c (scm_master_freelist, scm_master_freelist2): Added missing
11998 initializer.
11999
12000 * gh_data.c (gh_set_substr): Removed redundant unsigned >= 0
12001 text, removed redundant computation of effective_length and fixed
12002 the overflow check.
12003
12004 * goops.c (test_slot_existence): Use SCM_EQ_P to compare SCM
12005 values.
12006
12007 (wrap_init): Don't use SCM_C[AD]R for non pairs.
12008
12009 (hell): Make it a scm_bits_t pointer rather than a SCM pointer.
12010
12011 * goops.c (scm_sys_modify_class), strports.c (st_resize_port),
12012 struct.h (SCM_SET_STRUCT_PRINTER): Store unpacked values.
12013
12014 * goops.h (SCM_ACCESSORS_OF, SCM_SLOT): Return a SCM value.
12015
12016 * goops.h (GOOPSH, SCM_GOOPS_H), modules.h (MODULESH,
12017 SCM_MODULES_H), objects.h (OBJECTSH, SCM_OBJECTS_H), struct.h
12018 (STRUCTH, SCM_STRUCT_H), symbols.h (SYMBOLSH, SCM_SYMBOLS_H),
12019 __scm.h (__SCMH, SCM___SCM_H): Change <foo>H to SCM_<foo>_H.
12020
12021 * modules.[ch] (scm_module_tag): Make it a scm_bits_t value.
12022
12023 * objects.h (SCM_SET_CLASS_INSTANCE_SIZE): Fixed typing.
12024
ea2c3968 12025 * ramap.c (ramap_rp): Removed bogus `;'.
729dbac3
DH
12026
12027 * sort.c (scm_restricted_vector_sort_x): Fixed signedness
12028 problem.
12029
12030 * symbols.h (SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS, SCM_SYMBOL_FUNC,
12031 SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS):
12032 Read SCM objects rather than scm_bits_t values.
12033
12034 * tags.h (SCM_VOIDP_TEST): Removed.
12035
12036 (SCM_DEBUG_TYPING_STRICTNESS): Now takes values 0, 1, 2. The
12037 value of 2 now corresponds to the former 1, the current 1
12038 corresponds to the former situation that SCM_VOIDP_TEST was
12039 defined.
12040
58bee6a8
TTN
12041 (SCM): Now defined as typedef struct scm_unused_struct * SCM;
12042 If this appears to be not ANSI compliant, we will change it to
729dbac3
DH
12043 typedef struct scm_unused_struct { } * SCM;
12044 Thanks to Han-Wen Nienhuys for the suggestion.
12045
12046 * unif.c (scm_array_set_x): Fix typing problem, and use
12047 SCM_UVECTOR_BASE instead of SCM_VELTS or SCM_CELL_WORD_1 when
12048 dealing with uniform vectors.
12049
6b1b030e
ML
120502001-05-27 Michael Livshin <mlivshin@bigfoot.com>
12051
12052 * gc.c (scm_init_storage): init `scm_gc_registered_roots'.
12053 (scm_igc): mark from them, too (precisely, not conservatively!).
12054
12055 * root.h (scm_gc_registered_roots): new object in
12056 scm_sys_protects.
12057
12058 * hooks.c (scm_create_hook): call `scm_gc_protect_object' instead
12059 `scm_protect_object'. shouldn't call it at all, though, it seems.
12060
12061 * gc.c (scm_[un]protect_object): deprecated.
12062 (scm_gc_[un]protect_object): new names for scm_[un]protect_object.
12063 (scm_gc_[un]register_root[s]): new.
12064
12065 * gc.h: add prototypes for scm_gc_[un]protect_object,
12066 scm_gc_[un]register_root[s].
12067
c014a02e
ML
120682001-05-26 Michael Livshin <mlivshin@bigfoot.com>
12069
12070 revert the controversial part of the 2001-05-24 changes.
12071
0120801d
MV
120722001-05-25 Marius Vollmer <mvo@zagadka.ping.de>
12073
f4e0611e
MV
12074 * modules.c (scm_env_module): Exported to Scheme.
12075
0120801d 12076 * eval.c (scm_debug_opts): New option `show-file-name'.
729dbac3 12077
0120801d 12078 * debug.h (SCM_SHOW_FILE_NAME): New.
729dbac3 12079
0120801d
MV
12080 * backtrace.c: Include "libguile/filesys.h".
12081 (sym_base, display_backtrace_get_file_line,
12082 display_backtrace_file, display_backtrace_file_and_line): New.
12083 (display_frame): Call display_backtrace_file_and_line if that is
12084 requested.
12085 (display_backtrace_body): Call scm_display_backtrace_file if
12086 requested.
12087
12088 * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr):
12089 Prototypes removed since there's no definition for these
12090 functions.
12091
880a7d13
MG
120922001-05-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12093
12094 * unif.c (scm_make_ra, array_free), unif.h (SCM_ARRAY_DIMS):
12095 Changed use of scm_array->scm_array_t and
12096 scm_array_dim->scm_array_dim_t to enable build with
12097 --disable-deprecated.
12098
1be6b49c
ML
120992001-05-24 Michael Livshin <mlivshin@bigfoot.com>
12100
12101 The purpose of this set of changes is to regularize Guile's usage
12102 of ANSI C integral types, with the following ideas in mind:
12103
d69c867a
ML
12104 - SCM does not nesessarily have to be long.
12105 - long is not nesessarily enough to store pointers.
1be6b49c
ML
12106 - long is not nesessarily the same size as int.
12107
12108 The changes are incomplete and possibly buggy. Please test on
12109 something exotic.
12110
12111 * validate.h
12112 (SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,BITS,UBITS,INT,UINT}[_DEF]):
12113 new macros.
12114
12115 * unif.h: type renaming:
12116 scm_array -> scm_array_t
12117 scm_array_dim -> scm_array_dim_t
12118 the old names are deprecated, all in-Guile uses changed.
12119
12120 * tags.h (scm_ubits_t): new typedef, representing unsigned
12121 scm_bits_t.
12122
12123 * stacks.h: type renaming:
12124 scm_info_frame -> scm_info_frame_t
12125 scm_stack -> scm_stack_t
12126 the old names are deprecated, all in-Guile uses changed.
12127
12128 * srcprop.h: type renaming:
12129 scm_srcprops -> scm_srcprops_t
12130 scm_srcprops_chunk -> scm_srcprops_chunk_t
12131 the old names are deprecated, all in-Guile uses changed.
12132
12133 * gsubr.c, procs.c, print.c, ports.c, read.c, rdelim.c, ramap.c,
12134 rw.c, smob.c, sort.c, srcprop.c, stacks.c, strings.c, strop.c,
12135 strorder.c, strports.c, struct.c, symbols.c, unif.c, values.c,
12136 vectors.c, vports.c, weaks.c:
12137 various int/size_t -> size_t/scm_bits_t changes.
12138
12139 * random.h: type renaming:
12140 scm_rstate -> scm_rstate_t
12141 scm_rng -> scm_rng_t
12142 scm_i_rstate -> scm_i_rstate_t
12143 the old names are deprecated, all in-Guile uses changed.
12144
12145 * procs.h: type renaming:
12146 scm_subr_entry -> scm_subr_entry_t
12147 the old name is deprecated, all in-Guile uses changed.
12148
12149 * options.h (scm_option_t.val): unsigned long -> scm_bits_t.
12150 type renaming:
12151 scm_option -> scm_option_t
12152 the old name is deprecated, all in-Guile uses changed.
12153
12154 * objects.c: various long -> scm_bits_t changes.
12155 (scm_i_make_class_object): flags: unsigned long -> scm_ubits_t
12156
12157 * numbers.h (SCM_FIXNUM_BIT): deprecated, renamed to
12158 SCM_I_FIXNUM_BIT.
12159
12160 * num2integral.i.c: new file, multiply included by numbers.c, used
12161 to "templatize" the various integral <-> num conversion routines.
12162
12163 * numbers.c (scm_mkbig, scm_big2num, scm_adjbig, scm_normbig,
12164 scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl):
12165 deprecated.
12166 (scm_i_mkbig, scm_i_big2inum, scm_i_adjbig, scm_i_normbig,
12167 scm_i_copybig, scm_i_short2big, scm_i_ushort2big, scm_i_int2big,
12168 scm_i_uint2big, scm_i_long2big, scm_i_ulong2big, scm_i_bits2big,
12169 scm_i_ubits2big, scm_i_size2big, scm_i_ptrdiff2big,
12170 scm_i_long_long2big, scm_i_ulong_long2big, scm_i_dbl2big,
12171 scm_i_big2dbl, scm_short2num, scm_ushort2num, scm_int2num,
12172 scm_uint2num, scm_bits2num, scm_ubits2num, scm_size2num,
12173 scm_ptrdiff2num, scm_num2short, scm_num2ushort, scm_num2int,
12174 scm_num2uint, scm_num2bits, scm_num2ubits, scm_num2ptrdiff,
12175 scm_num2size): new functions.
12176
d69c867a 12177 * modules.c (scm_module_reverse_lookup): i, n: int -> scm_bits_t.
1be6b49c
ML
12178
12179 * load.c: change int -> size_t in various places (where the
12180 variable is used to store a string length).
12181 (search-path): call scm_done_free, not scm_done_malloc.
12182
12183 * list.c (scm_ilength): return a scm_bits_t, not long.
12184 some other {int,long} -> scm_bits_t changes.
12185
12186 * hashtab.c: various [u]int -> scm_bits_t changes.
12187 scm_ihashx_closure -> scm_ihashx_closure_t (and made a typedef).
12188 (scm_ihashx): n: uint -> scm_bits_t
12189 use scm_bits2num instead of scm_ulong2num.
12190
12191 * gsubr.c: various int -> scm_bits_t changes.
12192
12193 * goops.[hc]: various {int,long} -> scm_bits_t changes.
12194
d69c867a 12195 * gh_data.c (gh_num2int): no loss of precision any more.
1be6b49c
ML
12196
12197 * gh.h (gh_str2scm): len: int -> size_t
12198 (gh_{get,set}_substr): start: int -> scm_bits_t,
12199 len: int -> size_t
12200 (gh_<num>2scm): n: int -> scm_bits_t
12201 (gh_*vector_length): return scm_[u]size_t, not unsigned long.
12202 (gh_length): return scm_bits_t, not unsigned long.
12203
12204 * gc.[hc]: various small changes relating to many things stopping
12205 being long and starting being scm_[u]bits_t instead.
12206 scm_mallocated should no longer wrap around.
12207
12208 * fports.h: type renaming:
12209 scm_fport -> scm_fport_t
12210 the old name is deprecated, all in-Guile uses changed.
12211
12212 * fports.c (fport_fill_input): count: int -> scm_bits_t
12213 (fport_flush): init_size, remaining, count: int -> scm_bits_t
12214
12215 * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr): removed
12216 those prototypes, as the functions they prototype don't exist.
12217
12218 * fports.c (default_buffer_size): int -> size_t
12219 (scm_fport_buffer_add): read_size, write_size: int -> scm_bits_t
12220 default_size: int -> size_t
12221 (scm_setvbuf): csize: int -> scm_bits_t
12222
12223 * fluids.c (n_fluids): int -> scm_bits_t
12224 (grow_fluids): old_length, i: int -> scm_bits_t
12225 (next_fluid_num, scm_fluid_ref, scm_fluid_set_x): n: int ->
12226 scm_bits_t
12227 (scm_c_with_fluids): flen, vlen: int -> scm_bits_t
12228
12229 * filesys.c (s_scm_open_fdes): changed calls to SCM_NUM2LONG to
12230 the new and shiny SCM_NUM2INT.
12231
12232 * extensions.c: extension -> extension_t (and made a typedef).
12233
12234 * eval.h (SCM_IFRAME): cast to scm_bits_t, not int. just so
12235 there are no nasty surprises if/when the various deeply magic tag
12236 bits move somewhere else.
12237
12238 * eval.c: changed the locals used to store results of SCM_IFRAME,
12239 scm_ilength and such to be of type scm_bits_t (and not int/long).
12240 (iqq): depth, edepth: int -> scm_bits_t
12241 (scm_eval_stack): int -> scm_bits_t
12242 (SCM_CEVAL): various vars are not scm_bits_t instead of int.
12243 (check_map_args, scm_map, scm_for_each): len: long -> scm_bits_t
12244 i: int -> scm_bits_t
12245
12246 * environments.c: changed the many calls to scm_ulong2num to
12247 scm_ubits2num.
12248 (import_environment_fold): proc_as_ul: ulong -> scm_ubits_t
12249
12250 * dynwind.c (scm_dowinds): delta: long -> scm_bits_t
12251
12252 * debug.h: type renaming:
12253 scm_debug_info -> scm_debug_info_t
12254 scm_debug_frame -> scm_debug_frame_t
12255 the old names are deprecated, all in-Guile uses changed.
12256 (scm_debug_eframe_size): int -> scm_bits_t
12257
12258 * debug.c (scm_init_debug): use scm_c_define instead of the
12259 deprecated scm_define.
12260
12261 * continuations.h: type renaming:
12262 scm_contregs -> scm_contregs_t
12263 the old name is deprecated, all in-Guile uses changed.
12264 (scm_contregs_t.num_stack_items): size_t -> scm_bits_t
12265 (scm_contregs_t.num_stack_items): ulong -> scm_ubits_t
12266
12267 * continuations.c (scm_make_continuation): change the type of
d69c867a 12268 stack_size from long to scm_bits_t.
1be6b49c
ML
12269
12270 * ports.h: type renaming:
12271 scm_port_rw_active -> scm_port_rw_active_t (and made a typedef)
12272 scm_port -> scm_port_t
12273 scm_ptob_descriptor -> scm_ptob_descriptor_t
12274 the old names are deprecated, all in-Guile uses changed.
12275 (scm_port_t.entry): int -> scm_bits_t.
12276 (scm_port_t.line_number): int -> long.
12277 (scm_port_t.putback_buf_size): int -> size_t.
12278
12279 * __scm.h (long_long, ulong_long): deprecated (they pollute the
d69c867a 12280 global namespace and have little value beside that).
1be6b49c
ML
12281 (SCM_BITS_LENGTH): new, is the bit size of scm_bits_t (i.e. of an
12282 SCM handle).
12283 (ifdef spaghetti): include sys/types.h and sys/stdtypes.h, if they
d69c867a 12284 exist (for size_t & ptrdiff_t).
1be6b49c
ML
12285 (scm_sizet): deprecated.
12286
12287 * Makefile.am (noinst_HEADERS): add num2integral.i.c
12288
a6219f22
MV
122892001-05-23 Marius Vollmer <mvo@zagadka.ping.de>
12290
12291 * snarf.h (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of
12292 SCM_VARIABLE_INIT since that it what it used to be.
12293
12294 * deprecation.c (scm_include_deprecated_features): Make docstring
9a5fa6e9 12295 ANSIsh. Thanks to Matthias Köppe!
a6219f22 12296
311b6a3c
MV
122972001-05-21 Marius Vollmer <mvo@zagadka.ping.de>
12298
9dfc4faa
MV
12299 * symbols.c (scm_mem2symbol): Re-introduce indirect cell. It is
12300 needed for weak-key hashtables.
12301
12302 * procs.c (scm_make_subr_with_generic): Add missing last argument
12303 in call to scm_c_define_gsubr_with_generic. Thanks to Ariel Rios.
12304
12305 * eval.c: Use SCM_EQ_P instead of `==' or `!=' in certain
12306 places. (scm_c_improper_memq): Return 1 instead of SCM_BOOL_T.
311b6a3c
MV
12307
12308 * eval.h (SCM_EVALIM2): Use SCM_EQ_P instead of `=='.
12309
2fc933fe
MV
123102001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
12311
57ae112d
MV
12312 * symbols.c (scm_mem2symbol): Call `scm_must_strndup' instead of
12313 `duplicate_string'. Do not use an indirect cell, store symbol
12314 directly in collision list of hash table.
12315 (duplicate_string): Removed.
58bee6a8 12316
57ae112d
MV
12317 * init.c (scm_init_guile_1): Call scm_init_extensions.
12318
12319 * Makefile.am: Add "extensions.c" and related files in all the
12320 right places.
12321
12322 * extensions.h, extension.c: New files.
12323
12324 * gc.h, gc.c (scm_must_strdup, scm_must_strndup): New.
12325
2fc933fe
MV
12326 * modules.h (scm_system_module_env_p): Move out of deprecated
12327 section.
12328
12329 * rw.h (scm_init_rw): Added prototype.
12330
12331 * gsubr.h, gsubr.c (scm_c_make_gsubr, scm_c_define_gsubr,
12332 scm_c_make_gsubr_with_generic, scm_c_define_gsubr_with_generic):
12333 New functions. They replace scm_make_gsubr and
12334 scm_make_gsubr_with_generic. The `make' variants only create the
12335 gsubr object, while the `define' variants also put it into the
12336 current module. Changed all callers.
12337 (scm_make_gsubr, scm_make_gsubr_with_generic): Deprecated.
12338
12339 * procs.h, procs.c (scm_c_make_subr, scm_c_define_subr,
12340 scm_c_make_subr_with_generic, scm_c_define_subr_with_generic): New
12341 functions. They replace scm_make_subr, scm_make_subr_opt and
12342 scm_make_subr_with_generic. The `make' variants only create the
12343 subr object, while the `define' variants also put it into the
12344 current module. Changed all callers.
12345 (scm_make_subr, scm_make_subr_opt, scm_make_subr_with_generic):
12346 Deprecated.
12347
12348 * eval.c, gc.c, gh_funcs.c, goops.c, macros.c, pairs.c, ramap.c,
12349 rdelim.c, rw.c, scmsigs.c, snarf.h, values.c: Changed according to
12350 the comments above.
58bee6a8 12351
18928596
NJ
123522001-05-19 Neil Jerram <neil@ossau.uklinux.net>
12353
12354 * throw.c (scm_lazy_catch): Slight docstring clarification.
12355
21a13beb
MV
123562001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
12357
e2b6ddc6
MV
12358 * throw.c: Lazy-catch handlers are no longer allowed to return.
12359 Fixed comments throughout.
12360 (scm_ithrow): Signal an error when a lazy-catch handler returns.
12361 Moved actual jump to jmpbuf into if-branch where the jmpbuf is
12362 recognized as such.
12363
21a13beb
MV
12364 * version.c (s_scm_micro_version): Fix typo in FUNC_NAME, it
12365 refered to s_scm_minor_version previously.
12366
12367 * modules.h, modules.c: Moved around a lot of code so that
12368 deprecated features appear at the bottom.
12369 (root_module_lookup_closure, scm_sym_app, scm_sym_modules,
12370 module_prefix, make_modules_in_var, beautify_user_module_x_var,
12371 scm_the_root_module, scm_make_module, scm_ensure_user_module,
12372 scm_load_scheme_module): Deprecated.
12373 (scm_system_module_env_p): Return SCM_BOOL_T directly for
12374 environments corresponding to the root module.
12375 (convert_module_name, scm_c_resolve_module,
12376 scm_c_call_with_current_module, scm_c_define_module,
12377 scm_c_use_module, scm_c_export): New.
12378 (the_root_module): New static variant of scm_the_root_module. Use
12379 it everywhere instead of scm_the_root_module.
58bee6a8 12380
21a13beb
MV
12381 * fluids.h, fluids.c (scm_internal_with_fluids): Deprecated.
12382 (scm_c_with_fluids): Renamed from scm_internal_with_fluids.
12383 (scm_c_with_fluid): New.
12384 (scm_with_fluids): Use scm_c_with_fluids instead of
12385 scm_internal_with_fluids.
58bee6a8 12386
21a13beb
MV
12387 * goops.h, goops.c (scm_init_goops_builtins): Renamed from
12388 `scm_init_goops'. Do not explicitly create/switch modules.
12389 Return SCM_UNSPECIFIED.
12390 (scm_init_goops): Only register `%init-goops-builtins' procedure.
12391 (scm_load_goops): Use scm_c_resolve_module instead of
12392 scm_resolve_module.
58bee6a8 12393
21a13beb
MV
12394 * init.c (scm_init_guile_1): Call `scm_init_goops' instead of
12395 `scm_init_oop_goops_goopscore_module'. Call `scm_init_rdelim' and
12396 `scm_init_rw' prior to loading the startup files.
12397
12398 * rdelim.h, rdelim.c: (scm_init_rdelim_builtins): Renamed from
12399 scm_init_rdelim. Do not explicitly create/switch modules.
12400 Return SCM_UNSPECIFIED.
12401 (scm_init_rdelim): Only register `%init-rdelim-builtins'
12402 procedure.
58bee6a8 12403
21a13beb
MV
12404 * rw.c (scm_init_rw_builtins): Renamed from scm_init_rw. Do not
12405 explicitly create/switch modules. Return SCM_UNSPECIFIED.
12406 (scm_init_rw): Only register `%init-rw-builtins' procedure.
12407
12408 * script.c (scm_shell): Evaluate the compiled switches in the
12409 current module, not in the root module.
12410
124112001-05-18 Marius Vollmer <mvo@zagadka.ping.de>
12412
12413 * fluids.c (scm_c_with_fluids): Rename from
12414 scm_internal_with_fluids.
12415 (scm_internal_with_fluids): Deprecated.
12416 (scm_c_with_fluid): New.
12417
09cb9e73
DH
124182001-05-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
12419
12420 * print.h (PRINTH, SCM_PRINT_H): Renamed PRINTH to SCM_PRINT_H.
12421
12422 (SCM_PORT_WITH_PS_PORT, SCM_PORT_WITH_PS_PS): Only pairs may be
12423 accessed with SCM_C[AD]R.
12424
12425 (SCM_COERCE_OUTPORT): Removed redundant SCM_NIMP test.
12426
c81ea65d
RB
124272001-05-16 Rob Browning <rlb@cs.utexas.edu>
12428
12429 * version.c (s_scm_major_version): doc fixes.
12430 (s_scm_minor_version): doc fixes.
12431 (s_scm_minor_version): new function.
12432
12433 * version.h (scm_init_version): new function.
12434
12435 * versiondat.h.in: add GUILE_MICRO_VERSION.
12436
887dfa7d
DH
124372001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
12438
12439 * deprecation.c (scm_init_deprecation): Renamed
12440 GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
12441
78930a69
MV
124422001-05-16 Marius Vollmer <mvo@zagadka.ping.de>
12443
12444 * Makefile.am (cpp_sig_symbols.c, cpp_err_symbols.c): Make
12445 dependent on cpp_cnvt.awk
12446
39cde5c5
MG
124472001-05-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12448
12449 * script.c (scm_compile_shell_switches): New command line option
12450 `--use-srfi' for loading a list of SRFIs on startup.
12451 (scm_shell_usage): Added `--use-srfi' to help message.
12452
f3f9dcbc
MV
124532001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
12454
78930a69 12455 Merged from mvo-vcell-cleanup-1-branch.
887dfa7d 12456
f3f9dcbc
MV
12457 The concept of vcells has been removed from Guile. With it,
12458 explicit obarrays and associated operations are gone. Use
12459 hashtables instead of obarrays.
887dfa7d 12460
f3f9dcbc
MV
12461 Throughout: use scm_sym2var instead of scm_sym2vcell and treat
12462 result as variable instead of vcell. Glocs no longer point to a
12463 vcell but to a variable. Use scm_c_define instead of
12464 scm_sysintern and treat the result as a variable (which it is),
12465 not a vcell.
887dfa7d 12466
f3f9dcbc
MV
12467 * variable.c, variable.h (SCM_VARVCELL, SCM_UDVARIABLEP,
12468 SCM_DEFVARIABLEP): Deprecated.
12469 (SCM_VARIABLE_REF, SCM_VARIABLE_SET, SCM_VARIABLE_LOC): New.
12470 (variable_print): Do not print name of variable.
12471 (variable_equalp): Compare values, not vcells.
12472 (anonymous_variable_sym): Removed.
12473 (make_vcell_variable): Removed.
12474 (make_variable): New, as replacement.
12475 (scm_make_variable, scm_make_undefined_variable): Do not take name
12476 hint parameter.
12477 (scm_variable_ref): Check for SCM_UNDEFINED and throw "unbound"
12478 error in that case.
12479 (scm_builtin_variable): Deprecated.
12480
12481 * symbols.c, symbols.h (scm_sym2vcell, scm_sym2ovcell_soft,
12482 scm_sym2ovcell, scm_intern_obarray_soft, scm_intern_obarray,
12483 scm_intern, scm_intern0, scm_sysintern0_no_module_lookup,
12484 scm_sysintern, scm_sysintern0, scm_symbol_value0,
12485 scm_string_to_obarray_symbol, scm_intern_symbol,
12486 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned,
12487 scm_symbol_bound_p, scm_symbol_set_x, scm_gentmp, gentmp_counter):
12488 Deprecated and moved to "symbols-deprecated.c".
12489 (copy_and_prune_obarray, scm_builtin_bindings): Removed.
12490 (scm_init_symbols): Call scm_init_symbols_deprecated.
12491 * symbols-deprecated.c: New file.
12492 * Makefile.am: Added symbols-deprecated.c and related files in all
12493 the right places.
887dfa7d 12494
f3f9dcbc
MV
12495 * snarf.h (SCM_VCELL, SCM_GLOBAL_VCELL, SCM_VCELL_INIT,
12496 SCM_GLOBAL_VCELL_INIT): Deprecated.
12497 (SCM_VARIABLE, SCM_GLOBAL_VARIABLE, SCM_VARIABLE_INIT,
12498 SCM_GLOBAL_VARIABLE_INIT): New, as replacement. Changed all uses.
887dfa7d 12499
f3f9dcbc
MV
12500 * print.c (scm_iprin1): Use scm_module_reverse_lookup instead of
12501 SCM_GLOC_SYM.
12502
12503 * evalext.c, filesys.c, fports.c, gdbint.c, gh_data.c, gsubr.c,
12504 hooks.c, load.c, numbers.c, objects.c, ports.c, posix.c, procs.c,
12505 ramap.c, random.c, read.c, regex-posix.c, scmsigs.c, script.c,
12506 socket.c, srcprop.c, stacks.c, stime.c, struct.c, tag.c, throw.c:
12507 Changed according to the `throughout' comments.
12508
12509 * modules.h, modules.c (scm_module_system_booted_p): Changed type
12510 to `int'.
12511 (scm_module_type): Removed.
12512 (the_root_module): Renamed to the_root_module_var. Now points to
12513 a variable instead of a vcell. Updated all uses.
12514 (scm_the_root_module): Return SCM_BOOL_F when module systems
12515 hasn't been booted yet.
12516 (SCM_VALIDATE_STRUCT_TYPE): Removed.
12517 (scm_post_boot_init_modules): Made static.
12518 (scm_set_current_module): Call scm_post_boot_init_modules on first
12519 call.
12520 (make_modules_in, beautify_user_module_x, resolve_module,
12521 try_module_autoload, module_make_local_var_x): Tacked on "_var"
12522 suffix. Now point to variables instead of vcells. Updated all
12523 uses.
12524 (scm_module_lookup_closure): Deal with the module being SCM_BOOL_F
12525 and return SCM_BOOL_F in that case.
12526 (scm_module_transformer): Likewise.
12527 (sym_module, scm_lookup_closure_module, scm_env_module): New.
12528 (SCM_F_EVAL_CLOSURE_INTERFACE, SCM_EVAL_CLOSURE_INTERFACE_P): New.
12529 (scm_eval_closure_lookup): Do not allow new definitions when
12530 `interface' flag is set.
12531 (scm_standard_interface_eval_closure): New.
12532 (scm_pre_modules_obarray, scm_sym2var, scm_module_lookup,
12533 scm_lookup, scm_module_define, scm_define, scm_c_module_lookup,
12534 scm_c_lookup, scm_c_module_define, scm_c_define,
12535 scm_module_reverse_lookup, scm_get_pre_modules_obarray,
12536 scm_modules_prehistory): New.
12537 (scm_post_boot_init_modules): Use scm_c_define and scm_c_lookup
12538 instead of scm_intern0.
887dfa7d 12539
f3f9dcbc
MV
12540 * macros.c (scm_make_synt): Return SCM_UNSPECIFIED instead of the
12541 symbol.
12542
12543 * keywords.c (s_scm_make_keyword_from_dash_symbol): Use a regular
12544 hashtable operations to maintain the keywords, not obarray ones.
12545
12546 * init.c (scm_load_startup_files): Do not call
12547 scm_post_boot_init_modules. This is done by
12548 scm_set_current_module now.
12549 (scm_init_guile_1): Call scm_modules_prehistory. Call
12550 scm_init_variable early on.
12551
12552 * goops.c (s_scm_sys_goops_loaded): Get
12553 var_compute_applicable_methods from scm_sym2var, not from a direct
12554 invocation of scm_goops_lookup_closure.
12555
12556 * gh_funcs.c (gh_define): Return SCM_UNSPECIFIED instead of vcell.
12557
12558 * gc.c: Added simple debugging hack to mark phase of GC: When
12559 activated, do not tail-call scm_gc_mark. This gives nice
12560 backtraces.
12561 (scm_unhash_name): Removed.
12562
12563 * feature.c (features): Renamed to features_var. Now points to a
12564 variable instead of a vcell. Updated all uses.
12565
12566 * eval.h (SCM_TOP_LEVEL_LOOKUP_CLOSURE): Use
12567 `scm_current_module_lookup_closure' which will do the right thing
12568 when the module system hasn't been booted yet.
12569 (SCM_GLOC_SYM): Removed.
12570 (SCM_GLOC_VAR, SCM_GLOC_SET_VAL): New.
12571 (SCM_GLOC_VAL, SCM_GLOC_LOC): Reimplemented in terms of variables.
887dfa7d 12572
f3f9dcbc
MV
12573 * eval.c (scm_lookupcar, scm_lookupcar1): Deal with variables
12574 instead of with vcells. Do not overwrite `var' with the result of
12575 the lookup, use the new `real_var' instead. Remove `var2' in
12576 exchange (which was only used with threads).
12577 (sym_three_question_marks): New.
12578 (scm_unmemocar): Use `scm_module_reverse_lookup' instead of
12579 `SCM_GLOC_SYM'.
12580 (scm_lisp_nil, scm_lisp_t): Directly define as symbols.
12581 (scm_m_atfop): Expect the function definition to be a variable
12582 instead of a vcell.
12583 (scm_macroexp): Do not use `unmemocar', explicitely remember the
12584 symbol instead.
12585 (scm_unmemocopy): Removed thoughts about anti-macro interface.
12586 (scm_eval_args): Use more explicit code in the gloc branch of the
12587 atrocious struct ambiguity test. The optimizer will sort this
12588 out.
12589 (scm_deval_args): Likewise.
12590 (SCM_CEVAL): Likewise. Also, do not use unmemocar, explicitely
12591 remember the symbol instead. Added some comments where
12592 scm_tc3_cons_gloc really exclusively refers to structs.
12593 (scm_init_eval): Use scm_define to initialize "nil" and "t" to
12594 scm_lisp_nil and scm_lisp_t, respectively. Use scm_define instead
12595 of scm_sysintern in general.
12596
12597 * dynwind.c (scm_swap_bindings): Use SCM_GLOC_SET_VAL instead of
12598 explicit magic.
12599
12600 * debug.c (s_scm_make_gloc): Only allow proper variables, no
12601 pairs. Put the variable directly in the gloc.
12602 (s_scm_gloc_p): Use `scm_tc3_cons_gloc' instead of the magic `1'.
12603 (scm_init_debug): Use scm_c_define instead scm_sysintern.
12604
12605 * cpp_cnvt.awk: Emit "scm_c_define" instead of "scm_sysintern".
12606
12607 * backtrace.h, backtrace.c (scm_the_last_stack_fluid): Renamed to
12608 scm_the_last_stack_fluid_var. It now points to a variable instead
12609 of a vcell. Updated all uses.
12610 (scm_has_shown_backtrace_hint_p_var): Now points to a variable
12611 instead of a vcell. Updated all uses.
12612
12613 * _scm.h: Include "variables.h" and "modules.h" since almost
12614 everybody needs them now.
12615
12616 * root.h (scm_symhash, scm_symhash_vars): Removed.
12617 * gc.c (scm_init_storage): Do not initialize them.
887dfa7d 12618
7c33806a
DH
126192001-05-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
12620
12621 * eval.c (scm_init_eval): Initialize scm_undefineds and
58bee6a8 12622 scm_listofnull.
7c33806a
DH
12623
12624 * gc.c (scm_debug_newcell, scm_debug_newcell2): Fixed to behave
12625 like the SCM_NEWCELL macro counterparts.
12626
12627 (scm_init_storage, scm_init_gc): Moved initialization of
12628 scm_tc16_allocated from scm_init_gc to scm_init_storage.
12629
12630 (scm_init_storage): Moved initialization of scm_undefineds and
12631 scm_listofnull to eval.c, initializion of scm_nullstr to
12632 strings.c, initializion of scm_nullvect to vectors.c.
12633
12634 * gc.h (SCM_NEWCELL, SCM_NEWCELL2): Prefer SCM_NULLP over
12635 SCM_IMP, as in scm_debug_newcell and scm_debug_newcell2.
12636
12637 * init.c (scm_init_guile_1): Reordered some initializations and
12638 added dependcy information comments.
12639
12640 * load.c (scm_init_load): Use scm_nullstr.
12641
12642 * strings.c (scm_init_strings): Initialize scm_nullstr.
12643
12644 * vectors.c (scm_init_vectors): Initialize scm_nullvect.
12645
11bbab47
MV
126462001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
12647
12648 * values.c (print_values): Print as a unreadable object, not as
9a5fa6e9 12649 multiple lines. Thanks to Matthias Köppe!
11bbab47 12650
5cd06d5e
DH
126512001-05-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
12652
12653 * deprecation.c: Fixed copyright date.
12654
12655 * deprecation.h (DEPRECATION_H, SCM_DEPRECATION_H): Renamed
12656 DEPRECATION_H to SCM_DEPRECATION_H.
12657
32bac999
TTN
126582001-05-10 Thien-Thi Nguyen <ttn@revel.glug.org>
12659
12660 * guile-doc-snarf.in: Update copyright.
12661 Fix relative path bug. Thanks to Sergey Poznyakoff.
12662
c9dcc5ae
MV
126632001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
12664
12665 * ports.c (scm_port_revealed, scm_set_port_revealed_x): Only
12666 accept open ports. Thanks to Quetzalcoatl Bradley!
12667
7c582ec9
MG
126682001-05-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12669
12670 * procs.c: Increased `scm_subr_table_room' to 800 because Guile now
12671 has 779 primitives on startup.
12672
284ab601
MV
126732001-05-09 Marius Vollmer <mvo@zagadka.ping.de>
12674
12675 * eval.c (scm_i_eval): Copy expression before passing it to
12676 SCM_XEVAL. The copy operation was removed unintendedly during my
12677 change on 2001-03-25.
12678
910d1e40
ML
126792001-05-09 Michael Livshin <mlivshin@bigfoot.com>
12680
9a5fa6e9 12681 from Matthias Köppe (thanks!):
910d1e40
ML
12682
12683 * ports.c (scm_c_read): pointer arithmetic on void pointers isn't
12684 portable.
12685
12686 * deprecation.c (s_scm_include_deprecated_features): ANSI'fied the
12687 docstring.
12688
56e55ac7
DH
126892001-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
12690
12691 * gc.c (scm_init_gc): Added FIXME comment.
12692
12693 * hooks.c: Since hooks don't have a name any more, it is not
12694 necessary to include objprop.h.
12695
12696 (hook_print, scm_add_hook_x): Replace SCM_NFALSEP by !SCM_FALSEP.
12697
12698 (symbol_name, scm_make_hook_with_name): Removed.
12699
12700 (scm_create_hook): Don't set the hook's name property.
12701
12702 * hooks.h (HOOKSH, SCM_HOOKS_H): Renamed HOOKSH to SCM_HOOKS_H.
12703
12704 (SCM_HOOK_NAME, scm_make_hook_with_name): Removed.
12705
12706 * init.c (scm_init_guile_1): Hooks don't use objprops any more.
12707
12708 * numbers.c (SCM_FLOBUFLEN, FLOBUFLEN, scm_number_to_string,
12709 scm_print_real, scm_print_complex): Renamed SCM_FLOBUFLEN to
12710 FLOBUFLEN and define it unconditionally.
12711
d204b24c
MV
127122001-05-07 Marius Vollmer <mvo@zagadka.ping.de>
12713
438201b4
MV
12714 * gh_data.c (gh_lookup): Call gh_module_lookup with
12715 `scm_current_module ()', not `#f'.
12716 (gh_module_lookup): Expect a module instead of an obarray as first
12717 argument and do lookup in that module.
56e55ac7 12718
d204b24c
MV
12719 * ramap.c (raeql_1): Do not call scm_uniform_vector_length on
12720 arrays. The length of array is already determined differently and
12721 scm_uniform_vector_length does not work on arrays.
12722
26c1d549
MV
127232001-05-06 Marius Vollmer <mvo@zagadka.ping.de>
12724
fe7c2f88
MV
12725 * snarf.h (SCM_FUNC_CAST_ARBITRARY_ARGS): Use "SCM (*)()" for C++
12726 as well. "SCM (*)(...)" does not work on RedHat 7.1.
12727
26c1d549
MV
12728 * __scm.h (SCM_WTA_DISPATCH_0): Removed ARG and POS parameters,
12729 they are not used. Changed `wrong type' error into `wrong num
12730 args' error. Changed all callers.
56e55ac7 12731
26c1d549
MV
12732 * numbers.c (scm_difference): Call SCM_WTA_DISPATCH_0 when zero
12733 arguments are supplied.
12734
1c938eb8
TTN
127352001-05-05 Thien-Thi Nguyen <ttn@revel.glug.org>
12736
12737 * regex-posix.c (scm_regexp_exec): Expand docstring to briefly
12738 describe `regexp/notbol' and `regexp/noteol' execution flags.
12739
3a6379f7
TTN
12740 * strop.c (scm_substring_move_x): Doc fix; nfc.
12741
c10ecc4c
MV
127422001-05-05 Marius Vollmer <mvo@zagadka.ping.de>
12743
12744 * objects.c, objects.h (scm_valid_object_procedure_p): New.
12745 (scm_set_object_procedure_x): Use it to check argument. Fix
12746 docstring.
12747
12748 * evalext.c (scm_definedp): Fix docstring.
12749
a57a0b1e
GH
127502001-05-05 Gary Houston <ghouston@arglist.com>
12751
12752 * socket.c: use HAVE_IPV6 instead of AF_INET6 to enable IPv6
12753 support.
12754
7a095584
NJ
127552001-05-04 Neil Jerram <neil@ossau.uklinux.net>
12756
12757 * eval.c (scm_promise_p), list.c (scm_append_x, scm_reverse_x),
12758 symbols.c (scm_symbol_to_string), vports.c (scm_make_soft_port):
12759 Change R4RS references to R5RS.
12760
12761 * guile-snarf.awk.in: Fixes so that (i) blank lines in the
12762 docstring source are correctly reproduced in the output (ii)
12763 we don't anymore get occasional trailing quotes. Also reorganized
12764 and commented the code a little.
12765
12766 * scmsigs.c (scm_raise), throw.c (scm_throw): Docstring format
12767 fixes.
12768
dd2a6f3a
MG
127692001-05-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12770
12771 * strop.c (scm_string_split): New procedure.
12772
12773 * strop.h (scm_string_split): Added prototype.
12774
00120130
GH
127752001-05-04 Gary Houston <ghouston@arglist.com>
12776
12777 * socket.c: define uint32_t if netdb.h doesn't. thanks to
12778 Dale P. Smith.
12779
b65e6bfe
MV
127802001-05-02 Marius Vollmer <mvo@zagadka.ping.de>
12781
12782 * rw.c: Include "modules.h" and "strports.h".
12783
12784 * net_db.h (scm_gethost): Added prototype.
12785
12786 * deprecation.h, deprecation.c: New.
12787 * Makefile.am (libguile_la_SOURCES): Added "deprecation.c".
12788 (DOT_X_FILES): Added "deprecation.x".
12789 (modinclude_HEADERS): Added "deprecation.h".
12790
12791 * init.c: Include "deprecation.h".
12792 (scm_init_guile_1): Call scm_init_deprecation.
1c938eb8 12793
b65e6bfe
MV
127942001-05-01 Marius Vollmer <mvo@zagadka.ping.de>
12795
12796 * gh.h (gh_init_guile, gh_make_string, gh_string_length,
12797 gh_string_ref, gh_string_set_x, gh_substring, gh_string_append):
12798 New.
12799
b0e5fd8c
GH
128002001-04-29 Gary Houston <ghouston@arglist.com>
12801
12802 * rw.c: new file, implementing C part of module (ice-9 rw).
12803 (scm_read_string_x_partial): moved from ioext.c
12804 (scm_init_rw): new proc.
12805 * rw.h: new file.
12806 init.c: include rw.h and call scm_init_rw.
12807 Makefile.am: include rw.c and rw.h.
12808
0b2da99c
RB
128092001-04-28 Rob Browning <rlb@cs.utexas.edu>
12810
12811 * numbers.c: enabled local definition of SCM_FLOBUFLEN until we
12812 know what's supposed to happen to it.
12813
12814 * list.h (scm_list_star): deprecation expired - removed.
12815
12816 * numbers.h (scm_dblproc): deprecation expired - removed.
12817 (SCM_UNEGFIXABLE): deprecation expired - removed.
12818 (SCM_FLOBUFLEN): deprecation expired - removed.
12819 (SCM_INEXP): deprecation expired - removed.
12820 (SCM_CPLXP): deprecation expired - removed.
12821 (SCM_REAL): deprecation expired - removed.
12822 (SCM_IMAG): deprecation expired - removed.
12823 (SCM_REALPART): deprecation expired - removed.
12824 (scm_makdbl): deprecation expired - removed.
12825 (SCM_SINGP): deprecation expired - removed.
12826 (SCM_NUM2DBL): deprecation expired - removed.
12827 (SCM_NO_BIGDIG): deprecation expired - removed.
12828
12829 * tags.h (SCM_DOUBLE_CELLP): deprecation expired - removed.
12830 (scm_tc_dblr): deprecation expired - removed.
12831 (scm_tc_dblc): deprecation expired - removed.
12832 (scm_tc16_flo): deprecation expired - removed.
12833 (scm_tc_flo): deprecation expired - removed.
12834
12835 * tag.h (scm_tag): deprecation expired - removed.
12836
12837 * tag.c: (scm_tag): deprecation expired - removed.
12838
12839 * ioext.c: (scm_fseek): deprecation expired - removed.
12840
12841 * ioext.h (scm_fseek): deprecation expired - removed.
12842
12843 * gh_data.c (gh_int2scmb): deprecation expired - removed.
12844
12845 * gh.h (gh_int2scmb): deprecation expired - removed.
12846
e3334972
NJ
128472001-04-28 Neil Jerram <neil@ossau.uklinux.net>
12848
12849 * stacks.c (scm_make_stack): Fix typo in docstring.
12850
a0f979ac
RB
128512001-04-27 Rob Browning <rlb@cs.utexas.edu>
12852
12853 * error.c (scm_sysmissing): deprecation expired - removed.
12854
12855 * error.h (scm_sysmissing): deprecation expired - removed.
12856
12857 * gc.c
12858 (scm_init_gc): gc-thunk deprecation expired - removed.
12859 (scm_gc_vcell): deprecation expired - removed.
12860 (gc_async_thunk): scm_gc_vcell related code removed.
12861
12862 * vectors.h (SCM_NVECTORP): deprecation expired - removed.
12863
12864 * strings.h
12865 (SCM_NSTRINGP): deprecation expired - removed.
12866 (SCM_NRWSTRINGP): deprecation expired - removed.
12867
12868 * continuations.h (SCM_SETJMPBUF): deprecation expired - removed.
12869
12870 * chars.h
12871 (SCM_ICHRP): deprecation expired - removed.
12872 (SCM_ICHR): deprecation expired - removed.
12873 (SCM_MAKICHR): deprecation expired - removed.
12874
12875 * ports.h
12876 (SCM_INPORTP): deprecation expired - removed.
12877 (SCM_OUTPORTP): deprecation expired - removed.
12878
253081cf
MV
128792001-04-25 Marius Vollmer <mvo@zagadka.ping.de>
12880
12881 * modules.c (scm_module_type): New.
12882 (scm_post_boot_init_modules): Initialize from Scheme value.
12883 (the_module, scm_current_module, scm_init_modules): the_module is
12884 now a C only fluid.
12885 (scm_current_module): Export to Scheme.
12886 (scm_set_current_module): Do not call out to Scheme, do all the
12887 work in C. Export procedure to Scheme. Only accept modules, `#f'
12888 is no longer valid as the current module. Only set
12889 scm_top_level_lookup_closure_var and scm_system_transformer when
12890 they are not deprecated.
12891 (scm_module_transformer, scm_current_module_transformer): New.
12892
12893 * modules.h (scm_module_index_transformer, SCM_MODULE_TRANSFORMER,
12894 scm_current_module_transformer, scm_module_transformer): New.
1c938eb8 12895
253081cf
MV
12896 * gh_data.c: Removed FIXME comment about gh_lookup returning
12897 SCM_UNDEFINED. That's the right thing to do.
12898
12899 * eval.h, eval.c (scm_system_transformer): Deprecated by moving it
12900 into the conditionally compiled sections.
12901 * eval.c (scm_primitive_eval_x, scm_primitive_eval): Use
12902 scm_current_module_transformer instead of scm_system_transformer.
12903 * init.c (start_stack): Move initialization of
12904 scm_system_transformer to the deprecated section.
1c938eb8 12905
1f7f9ed4
NJ
129062001-04-22 Neil Jerram <neil@ossau.uklinux.net>
12907
12908 * throw.c (scm_throw): Correct docstring.
12909
66c73b76
GH
129102001-04-22 Gary Houston <ghouston@arglist.com>
12911
eefae538
GH
12912 * socket.c: attempted to improve the docstrings slightly.
12913
66c73b76
GH
12914 * net_db.c: remove bogus "close" declaration.
12915 (inet_aton declaration, scm_inet_aton, scm_inet_ntoa,
12916 scm_inet_netof, scm_lnaof, scm_inet_makeaddr, INADDR_ANY etc.):
12917 moved to socket.c.
12918 * net_db.h: declarations moved too.
12919
12920 * socket.c (scm_htonl, scm_ntohl): use uint32_t instead of unsigned
12921 long.
12922 (ipv6_net_to_num, ipv6_num_to_net): new static procedures.
12923 (VALIDATE_INET6): new macro.
12924 (scm_inet_pton, scm_inet_ntop): new procedures, implementing
12925 inet-pton and inet-ntop.
12926 (scm_fill_sockaddr): use VALIDATE_INET6 and ipv6_num_to_net.
12927 (scm_addr_vector): use ipv6_net_to_num.
1c938eb8 12928
7a7f7c53
DH
129292001-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
12930
12931 * eq.c (scm_equal_p), ramap.c (scm_init_ramap): Don't compute the
12932 smob number explicitly. Use SCM_TC2SMOBNUM instead.
12933
12934 * gc.c (MARK, scm_gc_sweep): Only check for illegal heap objects
12935 when compiled in debug mode.
12936
12937 (scm_gc_sweep): Only call smob's free function if it is defined.
12938
12939 * print.c (scm_iprin1): No need to check for validity of smob
12940 type or existence of print function.
12941
12942 * smob.[ch] (scm_smobs): Made into a fixed size global array.
12943 Resizing will not work well with preemptive threading.
12944
12945 * smob.c (scm_smob_print): Don't use SCM_CDR to access smob data.
12946
12947 (scm_make_smob_type): Extracted initialization of smob
12948 descriptors to scm_smob_prehistory. Don't use scm_numsmob outside
12949 of the critical section.
12950
12951 (scm_smob_prehistory): Initialize all smob descriptors. By
12952 default, don't assign a smob free function: Most smob types don't
12953 need one.
12954
12955 * smob.h (SMOBH, SCM_SMOB_H): Renamed SMOBH to SCM_SMOB_H.
12956
e1368a8d
GH
129572001-04-21 Gary Houston <ghouston@arglist.com>
12958
12959 * socket.c (FLIP_NET_HOST_128): new macro.
12960 (scm_fill_sockaddr): use new macro.
12961 (scm_addr_vector): completed IPv6 address support. added const
12962 to the address parameter.
12963
5a525b84
GH
129642001-04-20 Gary Houston <ghouston@arglist.com>
12965
12966 * socket.c (scm_fill_sockaddr): call htons for sin6_port.
12967 Don't assign sin6_scope_id in structure unless HAVE_SIN6_SCOPE_ID
12968 is defined.
12969 (scm_addr_vector): use a switch instead of multiple if statements.
12970 Add support for IPv6 (incomplete) .
e1368a8d 12971 MAX_ADDR_SIZE: increase to size of struct sockaddr_in6 if needed.
5a525b84 12972
1a551638
DH
129732001-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
12974
12975 * struct.c (scm_free_structs): Only pairs may be accessed with
12976 SCM_C[AD]R.
12977
c07b3fef
MD
129782001-04-19 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
12979
a9d861e3
MD
12980 * unif.h (SCM_ARRAY_CONTIGUOUS): Reintroduced as deprecated.
12981
c07b3fef
MD
12982 * __scm.h (SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1,
12983 SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_n): Inserted required
12984 parentheses in order to get the correct associativity.
12985
af7546eb
DH
129862001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12987
12988 * unif.c (scm_array_to_list): Added missing handling of arrays of
12989 bytes. Thanks to Masao Uebayashi for the bug report.
12990
4daecfee
DH
129912001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12992
12993 * debug.c (scm_procedure_source): Use SCM_CLOSURE_FORMALS more
12994 consistently.
12995
726d810a
DH
129962001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12997
12998 * procs.h (SCM_CLOSURE_FORMALS): New macro.
12999
13000 * debug.c (scm_procedure_source), eval.c (scm_badformalsp,
13001 SCM_CEVAL, SCM_APPLY), goops.c (get_slot_value, set_slot_value),
1c938eb8 13002 procprop.c (scm_i_procedure_arity), sort.c (closureless): Use
726d810a
DH
13003 SCM_CLOSURE_FORMALS.
13004
13005 * eval.c (scm_badformalsp, SCM_CEVAL), procprop.c
13006 (scm_i_procedure_arity): Prefer stronger predicates like
13007 SCM_NULLP or SCM_FALSEP over SCM_IMP.
13008
13009 * macros.c (macro_print): Extracted macro printing code from
13010 print.c and simplified it.
13011
13012 (scm_macro_type): Use SCM_MACRO_TYPE;
13013
13014 (scm_init_macros): Use macro_print for printing macros.
13015
13016 * print.c (scm_print_opts): Improved option documentation.
13017
13018 (scm_iprin1): Extracted printing of macros to macros.c.
13019 Simplified printing of ordinary closures.
13020
13021 * procs.c (scm_thunk_p): Fixed handling of closures. Thanks to
13022 Martin Grabmueller for the bug report.
13023
e038c042
DH
130242001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
13025
13026 This patch eliminates some further applications of SCM_C[AD]R to
13027 non pair cells.
13028
13029 * gc.h (SCM_SETAND_CAR, SCM_SETOR_CAR): Deprecated. These have
13030 never been applied to real pairs.
13031
13032 * srcprop.h (SCM_SOURCE_PROPERTY_FLAG_BREAK): Added.
13033
13034 (SRCPROPBRK): Use SCM_SOURCE_PROPERTY_FLAG_BREAK.
13035
13036 * unif.h (SCM_ARRAY_CONTIGUOUS, SCM_ARRAY_FLAG_CONTIGUOUS,
13037 SCM_ARRAY_CONTP): Renamed SCM_ARRAY_CONTIGUOUS to
13038 SCM_ARRAY_FLAG_CONTIGUOUS and use it.
13039
13040 (SCM_SET_ARRAY_CONTIGUOUS_FLAG, SCM_CLR_ARRAY_CONTIGUOUS_FLAG):
13041 Added.
13042
13043 * srcprop.h (SRCPROPH), unif.h (UNIFH): Renamed to
13044 SCM_SOURCE_PROPERTIES_H and SCM_UNIFORM_VECTORS_H, respectively.
13045
13046 * srcprop.h (SETSRCPROPBRK, CLEARSRCPROPBRK), unif.c
13047 (scm_dimensions_to_uniform_array, scm_ra_set_contp): Don't use
13048 SCM_SET{AND,OR}_CAR.
13049
3453619b
GH
130502001-04-17 Gary Houston <ghouston@arglist.com>
13051
13052 * some initial support for IPv6:
1c938eb8 13053
3453619b
GH
13054 * socket.c (scm_fill_sockaddr): improve the argument validation.
13055 don't allocate memory until all args are checked. instead of
13056 unconditional memset of soka, try setting sin_len to 0 if
13057 SIN_LEN is defined. add support for AF_INET6. define FUNC_NAME.
13058 (scm_socket, scm_connect): extend docstrings for IPv6.
13059 (scm_init_socket): intern AF_INET6 and PF_INET6.
13060
216eedfc
DH
130612001-04-17 Niibe Yutaka <gniibe@m17n.org>
13062
13063 * srcprop.c (scm_make_srcprops): Added SCM_ALLOW_INTS which
13064 matches SCM_DEFER_INTS at the beginning of the function.
13065
13066 * mallocs.c (scm_malloc_obj): Remove un-matched SCM_ALLOW_INTS.
13067
13068 * gc.c (scm_igc): Unconditionally call
13069 SCM_CRITICAL_SECTION_START/END.
13070
13071 * fluids.c (next_fluid_num): Unconditionally call
13072 SCM_CRITICAL_SECTION_START/END.
13073 (s_scm_make_fluid): Remove un-matched SCM_DEFER_INTS.
13074
13075 * coop-defs.h (SCM_THREAD_DEFER, SCM_THREAD_ALLOW,
13076 SCM_THREAD_REDEFER, SCM_THREAD_REALLOW_1, SCM_THREAD_REALLOW_2):
13077 Removed.
13078
13079 * __scm.h (SCM_CRITICAL_SECTION_START, SCM_CRITICAL_SECTION_END):
13080 Defined as nothing for the case of !defined(USE_THREADS).
13081 (SCM_THREAD_DEFER, SCM_THREAD_ALLOW, SCM_THREAD_REDEFER):
13082 Removed.
13083 (<stdio.h>): Include when (SCM_DEBUG_INTERRUPTS == 1).
13084 (SCM_CHECK_NOT_DISABLED, SCM_CHECK_NOT_ENABLED): Print FILE and
13085 LINE.
13086 (SCM_DEFER_INTS, SCM_ALLOW_INTS_ONLY, SCM_ALLOW_INTS,
13087 SCM_REDEFER_INTS, SCM_REALLOW_INTS): Don't use
13088 SCM_THREAD_DEFER/SCM_THREAD_ALLOW. Instead, use
13089 SCM_CRITICAL_SECTION_START/END.
13090 (SCM_REALLOW_INTS: Bug fix. Don't call
13091 SCM_THREAD_SWITCHING_CODE.
13092 (SCM_TICK): Don't use SCM_DEFER_INTS/SCM_ALLOW_INTS. Instead, use
13093 SCM_THREAD_SWITCHING_CODE directly.
13094 (SCM_ENTER_A_SECTION): Unconditionally use
13095 SCM_CRITICAL_SECTION_START/END. (was:
13096 SCM_DEFER_INTS/SCM_ALLOW_INTS when SCM_POSIX_THREADS defined).
13097
130982001-04-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13099
13100 * __scm.h (SCM_CAREFUL_INTS, SCM_DEBUG_INTERRUPTS): Replaced the
13101 macro SCM_CAREFUL_INTS by the macro SCM_DEBUG_INTERRUPTS and
13102 allowed to explicitly set this macro via the CFLAGS variable
13103 during make.
13104
13105 * fluids.c (next_fluid_num), gc.c (scm_igc), coop-defs.h
13106 (SCM_THREAD_CRITICAL_SECTION_START,
13107 SCM_THREAD_CRITICAL_SECTION_END): Renamed
13108 SCM_THREAD_CRITICAL_SECTION_START/END to
13109 SCM_CRITICAL_SECTION_START/END.
13110
f22ed5a0
KN
131112001-04-11 Keisuke Nishida <kxn30@po.cwru.edu>
13112
13113 * debug-malloc.c (grow, scm_debug_malloc_prehistory): Use memset
13114 instead of bzero.
1c938eb8 13115
f22ed5a0 13116 * coop.c, iselect.c (FD_ZERO_N): Unconditionally use memset.
1c938eb8 13117 (MISSING_BZERO_DECL): Remove the declaration.
f22ed5a0
KN
13118
13119 Thanks to NIIBE Yutaka.
13120
508ded1c
MD
131212001-04-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13122
a087ba81
MD
13123 * init.c, goops.c, goops.h: Reverted change of 2001-03-29. (The
13124 goops module should be registered in order to work for an
13125 application which uses libguile statically linked.)
508ded1c 13126
e4b265d8
DH
131272001-04-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
13128
13129 * numbers.[ch] (scm_num2long, scm_num2long_long,
13130 scm_num2ulong_long, scm_num2ulong): Argument position is an
13131 unsigned integer.
13132
13133 * environments.c (eval_environment_folder,
13134 import_environment_folder), gh_data.c (gh_scm2longs,
13135 gh_scm2floats, gh_scm2doubles): Distinguish between 0 and NULL
13136 for integers and pointers, respectively.
13137
13138 * gh_data.c (gh_scm2ulong, gh_scm2long, gh_scm2int), socket.c
13139 (scm_fill_sockaddr), unif.c (scm_array_set_x), validate.h
13140 (SCM_NUM2ULONG, SCM_NUM2LONG, SCM_NUM2LONG_DEF,
13141 SCM_NUM2LONG_LONG): Don't pass argument positions as pointers.
13142
13143 * filesys.c (scm_open_fdes, scm_open), net_db (scm_inet_ntoa,
13144 scm_inet_netof, scm_lnaof, scm_gethost, scm_getproto), posix.c
13145 (scm_utime), ramap.c (scm_array_fill_int), scmsigs.c
13146 (scm_sigaction), socket.c (scm_htonl, scm_ntohl, scm_sendto),
13147 stime.c (scm_localtime, scm_gmtime), struct.c (scm_struct_set_x),
13148 validate.h (SCM_VALIDATE_LONG_COPY): Whitespace fixes.
13149
89d04205
NJ
131502001-04-09 Neil Jerram <neil@ossau.uklinux.net>
13151
13152 * strings.c (scm_read_only_string_p): Update docstring to reflect
13153 current (non-)usage of "read only" strings.
40f83c3e
NJ
13154 (scm_make_shared_substring): Clarify docstring by changing
13155 "semantics" to "arguments".
89d04205 13156
4d66be54
MG
131572001-04-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13158
13159 * hooks.c (scm_make_hook, scm_make_hook_with_name),
13160 (scm_hook_p, scm_hook_empty_p, scm_run_hook): Docstring
13161 improvements.
13162
1e6808ea
MG
131632001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13164
13165 The following changes make the documentation more consistent.
1c938eb8 13166
1e6808ea
MG
13167 * rdelim.c (scm_write_line), posix.c (scm_utime), ports.c
13168 (scm_seek), net_db.c (scm_inet_aton, scm_inet_ntoa),
13169 (scm_inet_netof, scm_lnaof, scm_inet_makeaddr), ioext.c
13170 (scm_ftell): Changed @smalllisp ... @end smalllisp to @lisp
13171 ... @end lisp.
13172
13173 * vports.c (scm_make_soft_port), version.c (scm_version), unif.c
13174 (scm_array_dimensions, scm_make_shared_array),
13175 (scm_transpose_array, scm_enclose_array, scm_bit_count_star),
13176 throw.c (scm_catch), struct.c (scm_make_vtable_vtable), strop.c
13177 (scm_string_rindex, scm_string_index, scm_substring_fill_x),
13178 (scm_string_null_p), strings.c (scm_read_only_string_p), root.c
13179 (scm_call_with_dynamic_root), ramap.c (scm_array_index_map_x),
13180 posix.c (scm_mknod), numbers.c (scm_logtest, scm_logbit_p),
13181 macros.c (scm_makmmacro), list.c (scm_append), environments.c
13182 (scm_environment_fold), dynwind.c (s_scm_dynamic_wind): Changed
13183 @example ... @end example to @lisp ... @end lisp.
13184
13185 * weaks.c (scm_weak_vector): Corrected docstring.
13186
13187 * hashtab.c (scm_hashq_ref, scm_hashq_set_x, scm_hashq_remove_x),
13188 (scm_hashv_ref, scm_hashv_set_x, scm_hashv_remove_x),
13189 (scm_hash_ref, scm_hash_set_x, scm_hash_remove_x, scm_hashx_ref),
13190 (scm_hashx_set_x, scm_hashx_get_handle),
13191 (scm_hashx_create_handle_x), regex-posix.c (scm_make_regexp),
13192 (scm_regexp_exec, scm_regexp_p), numbers.c (scm_logtest),
13193 vectors.c (scm_vector_fill_x), strings.c
13194 (scm_make_shared_substring), symbols.c (scm_string_to_symbol),
13195 objprop.c (scm_set_object_properties_x):
13196 (scm_set_object_property_x), throw.c (scm_catch, scm_lazy_catch),
13197 strports.c (scm_call_with_input_string), ports.c
13198 (scm_truncate_file), ioext.c (scm_ftell), ports.c (scm_seek),
13199 list.c (scm_append_x), dynwind.c (scm_dynamic_wind), error.c
13200 (scm_error_scm), vports.c (scm_make_soft_port), weaks.c
13201 (scm_make_weak_vector,scm_weak_vector_p),
13202 (scm_make_weak_key_hash_table, scm_make_weak_value_hash_table),
13203 (scm_make_doubly_weak_hash_table, scm_weak_key_hash_table_p),
13204 (scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
13205 macros.c (scm_macro_type), dynl.c (scm_dynamic_link),
13206 (scm_dynamic_unlink, scm_dynamic_call, scm_dynamic_args_call):
13207 Made parameter names match documentation by renaming parameters
13208 and/or fixing docstrings.
1c938eb8 13209
1e6808ea
MG
13210 * numbers.c (scm_ash): Corrected Texinfo markup.
13211
13212 * strop.c (scm_string_index, scm_string_rindex),
13213 (scm_substring_fill_x, scm_string_null_p): Removed `qdocs'.
13214
13215 * vports.c (scm_make_soft_port), unif.c
13216 (scm_uniform_vector_length, scm_array_p, scm_array_rank),
13217 (scm_dimensions_to_uniform_array, scm_transpose_array),
13218 (scm_array_in_bounds_p, scm_uniform_vector_ref),
13219 (scm_bit_count, scm_bit_position, scm_bit_count_star),
13220 (scm_array_to_list, scm_list_to_uniform_array),
13221 (scm_array_prototype, symbols.c (scm_string_to_symbol), strports.c
13222 (scm_open_input_string, scm_open_output_string),
13223 (scm_get_output_string), strop.c (scm_string_copy),
13224 (scm_string_fill_x), strings.c (scm_string_p, scm_string), stime.c
13225 (scm_get_internal_real_time, scm_times),
13226 (scm_get_internal_run_time, scm_current_time, scm_gettimeofday),
13227 (scm_localtime, scm_gmtime), socket.c (scm_htons, scm_ntohs),
13228 (scm_htonl, scm_ntohl, scm_socket, scm_socketpair),
13229 (scm_getsockopt, scm_getsockname, scm_getpeername, scm_recvfrom),
13230 simpos.c (scm_system), random.c (scm_random_uniform),
13231 (scm_random_normal, scm_random_exp), ramap.c
13232 (scm_array_equal_p), posix.c (scm_pipe, scm_getgroups),
13233 (scm_status_exit_val, scm_status_term_sig, scm_status_stop_sig),
13234 (scm_getppid, scm_getuid, scm_getgid, scm_geteuid, scm_getegid),
13235 (scm_getpgrp, scm_ttyname, scm_ctermid, scm_tcgetpgrp, scm_uname),
13236 (scm_environ, scm_tmpnam, scm_mkstemp, scm_access, scm_getpid),
13237 (scm_setlocale), ports.c (scm_char_ready_p, scm_drain_input),
13238 (scm_pt_size, scm_pt_member, scm_port_revealed, scm_port_mode),
13239 (scm_close_port, scm_input_port_p, scm_output_port_p, scm_port_p),
13240 (scm_port_closed_p, scm_eof_object_p, scm_read_char),
13241 (scm_peek_char), pairs.c (scm_pair_p, scm_cons), numbers.c
13242 (scm_logand, scm_logior, scm_logxor, scm_lognot),
13243 (scm_integer_expt, scm_bit_extract, scm_logcount),
13244 (scm_integer_length, scm_string_to_number, scm_inexact_to_exact),
13245 net_db.c (scm_inet_netof, scm_lnaof), modules.c
13246 (scm_interaction_environment), macros.c (scm_makacro),
13247 (scm_makmacro, scm_makmmacro), keywords.c (scm_keyword_p), ioext.c
13248 (scm_ftell, scm_dup_to_fdes, scm_fileno, scm_isatty_p),
13249 (scm_fdopen, scm_fdes_to_ports), gc.c (scm_gc_stats), fluids.c
13250 (scm_fluid_ref), filesys.c (scm_open_fdes),
13251 (scm_stat, scm_directory_stream_p, scm_getcwd, scm_readlink):
13252 Docstring correction: `Returns' -> `Return'
13253
1c938eb8
TTN
13254 * gc.c (scm_set_debug_cell_accesses_x):
13255 (s_scm_gc_set_debug_check_freelist_x):
1e6808ea
MG
13256 * fluids.c (scm_fluid_p): Added texinfo markup.
13257
13258 * error.c (scm_strerror): Made docstring more precise.
13259
13260 * vectors.c (scm_vector_p, scm_vector, scm_make_vector),
13261 (scm_vector_to_list, _scm_vector_fill_x), symbols.c
13262 (scm_symbol_p, scm_symbol_to_string), strorder.c
13263 (scm_string_equal_p, scm_string_ci_equal_p, scm_string_less_p),
13264 (scm_string_leq_p, scm_string_gr_p, scm_string_geq_p),
13265 (scm_string_ci_less_p, scm_string_ci_leq_p, scm_string_ci_gr_p):
13266 (scm_string_ci_geq_p), strop.c (scm_string_copy),
13267 (scm_string_fill_x): Removed `(r5rs)' from docstrings.
13268
9a6976cd
DH
132692001-04-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
13270
13271 * gc.c (MARK): Re-introduce a cheap sanity test for non debug
13272 mode, as suggested by Michael Livshin.
13273
463b2219
ML
132742001-03-31 Michael Livshin <mlivshin@bigfoot.com>
13275
13276 * backtrace.c (display_backtrace_body): since the `print_state'
13277 variable is not used (instead its data field is used directly as
13278 `pstate'), protect it from the hungry compiler optimizations.
13279 thanks to Bill Schottstaedt for the report.
13280
61045190
DH
132812001-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
13282
13283 * gc.[ch] (scm_tc16_allocated): New type tag for allocated cells.
13284 It is only defined and used if guile is compiled with
13285 SCM_DEBUG_CELL_ACCESSES set to true. It's purpose is, to never
13286 let cells with a free_cell type tag be visible outside of the
13287 garbage collector when in debug mode.
13288
13289 * gc.c (scm_debug_cell_accesses_p): Set to true as default.
13290
13291 (scm_assert_cell_valid): Use a local static variable to avoid
13292 recursion.
13293
13294 (MARK): Only check for rogue cell pointers in debug mode. Use
13295 scm_cellp for this purpose and place all checks for rogue pointers
13296 into that function. Further, since due to conservative scanning
13297 we may encounter free cells during marking, don't use the standard
13298 cell type accessor macro to determine the cell type.
13299
13300 (scm_cellp): Check if the cell pointer actually points into a
13301 card header.
13302
13303 (scm_init_gc): Initalize scm_tc16_allocated.
13304
13305 * gc.h (GCH): Renamed to SCM_GC_H.
13306
13307 (SCM_VALIDATE_CELL): Enclose the expression in brackets. This
13308 might be unnecessary, but I feel better this way :-)
13309
13310 (SCM_GC_CELL_TYPE): New macro.
13311
13312 (SCM_SETAND_CDR, SCM_SETOR_CDR): Deprecated. These are not used
13313 in guile, and it is unlikely that they will be applied to real
13314 pairs anyway.
13315
13316 (SCM_SET_FREE_CELL_TYPE): Removed. It was not used.
13317
13318 (SCM_GC_SET_ALLOCATED): New macro. Only non-empty if guile is
13319 compiled with SCM_DEBUG_CELL_ACCESSES set to true.
13320
13321 (SCM_NEWCELL, SCM_NEWCELL2): Use of SCM_GC_SET_ALLOCATED will
13322 make sure that in debug mode no free cell will ever be visible
13323 outside of the garbage collector.
13324
85d6df6a
DH
133252001-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
13326
13327 * async.c (scm_asyncs_pending): Don't use != to compare SCM
13328 values.
13329
13330 * async.c (scm_system_async), variable.c (scm_make_variable,
13331 scm_make_undefined_variable): Use scm_cons to create a pair.
13332
13333 * debug.c (scm_reverse_lookup): Perform proper type checking.
13334 Remove suspicious use of SCM_SLOPPY_CONSP.
13335
13336 * eq.c (scm_equal_p), tags.h (SCM_ECONSP): Use SCM_CONSP instead
13337 of SCM_SLOPPY_CONSP. A sane compiler should be able to perform
13338 the corresponding optimization.
13339
13340 * eval.c (iqq): Use proper type check.
13341
13342 (scm_m_expand_body): Remove redundant type checks.
13343
13344 (promise_print): Don't access promise cells as pairs.
13345
13346 * eval.c (EVALCAR, iqq, scm_m_expand_body, scm_eval_args,
13347 scm_deval_args SCM_CEVAL), guardians.c (scm_guard), hashtab.c
13348 (scm_internal_hash_fold), print.c (scm_iprlist): Use !SCM_CELLP
13349 for SCM_NCELLP, !SCM_CONSP for SCM_NCONSP, !SCM_IMP for SCM_NIMP,
13350 !SCM_FALSEP for SCM_NFALSEP, !SCM_NULLP for SCM_NNULLP
13351
13352 * eval.c (scm_m_define, scm_macroexp, SCM_CEVAL), print.c
13353 (scm_iprin1): Use new macro predicate and accessors.
13354
13355 * eval.h (scm_tc16_macro): Removed declaration. It is declared
13356 in macros.h.
13357
13358 * eval.h (EVALH), macros.h (MACROSH), ports.h (PORTSH), procs.h
13359 (PROCSH), tags.h (TAGSH), variable.h (VARIABLEH): Renamed to
13360 SCM_EVAL_H, SCM_MACROS_H, SCM_PORTS_H, SCM_PROCS_H, SCM_TAGS_H and
13361 SCM_VARIABLE_H. Even the macros that are used to inhibit
13362 including a header file twice should be in the SCM_ namespace.
13363
13364 * fluids.c (scm_swap_fluids, scm_swap_fluids_reverse),
13365 properties.c (scm_primitive_property_ref,
13366 scm_primitive_property_del_x): Prefer stronger predicates like
13367 SCM_NULLP or SCM_FALSEP over SCM_IMP.
13368
13369 * gc.c (MARK): Use proper macros to access procedure-with-setter
13370 cell elements and closure cell elements.
13371
13372 (gc_sweep_freelist_finish, scm_gc_sweep, init_heap_seg): Don't
13373 access free cells as pairs.
13374
13375 (scm_unprotect_object): scm_hashq_get_handle returns #f if
13376 no hashtab entry is found.
13377
13378 * gc.c (scm_gc_sweep), ports.c (scm_close_port): Use new macro
13379 SCM_CLR_PORT_OPEN_FLAG.
13380
13381 * guardians.c (TCONC_IN), print.c (scm_free_print_state): Don't
13382 use SCM_SET_C[AD]R for uninitialized cells.
13383
13384 * hashtab.c (scm_hash_fn_get_handle): Use SCM_VALIDATE_VECTOR.
13385 If the hashtable has no slots, return #f instead of '(). This
13386 unifies the return value with most assoc-functions.
13387
13388 (scm_hash_fn_ref): Use proper type check.
13389
13390 (scm_hashq_get_handle, scm_hashv_get_handle, scm_hash_get_handle):
13391 Removed references to non-existing functions from documentation.
13392
13393 * keywords.c (scm_keyword_dash_symbol): Use proper macros to
13394 access keyword cell elements.
13395
13396 * macros.h (SCM_MACROP, SCM_MACRO_TYPE, SCM_MACRO_CODE): New
13397 macros.
13398
13399 * ports.h (SCM_CLR_PORT_OPEN_FLAG): New macro.
13400
13401 * print.c (scm_iprlist): Added comment. Improved loop
13402 conditions.
13403
13404 * procs.h (SCM_ENV, SCM_SETENV): Don't access closure cells as
13405 pairs.
13406
13407 * smob.c (scm_markcdr): Don't access smob cells as pairs.
13408
13409 * tags.h (SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP): Deprecated.
13410
13411 * throw.c (ACTIVATEJB, DEACTIVATEJB): Don't access jump buffer
13412 cells as pairs.
13413
13414 * variable.c (variable_print, variable_equalp, scm_variable_ref,
13415 scm_variable_set_x): Use proper macros to access variable cell
13416 elements.
13417
13418 (scm_variable_bound_p): Don't use SCM_NEGATE_BOOL.
13419
13420 * variable.h (SCM_VARVCELL): Don't access variable cells as
13421 pairs.
13422
13423 * vectors.c (scm_vector), weaks.c (scm_weak_vector): Simplified,
13424 added FIXME comment, removed register specifier.
13425
1b27e91a
KN
134262001-03-29 Keisuke Nishida <kxn30@po.cwru.edu>
13427
13428 * goops.c, goops.h (scm_init_oop_goops_goopscore_module): Deprecated.
13429 * init.c (scm_init_guile_1): Don't init goopscore module.
13430
16c634ec
MV
134312001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
13432
13433 * eval.c (SCM_APPLY): Check that arg1 is bound for scm_tc7_cxr.
13434
91344ceb
MG
134352001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13436
13437 * strop.c (scm_string_to_list): Fixed docstring markup.
13438 (scm_string_upcase_x, scm_string_upcase, scm_string_downcase_x),
13439 (scm_string_downcase, scm_string_capitalize_x),
13440 (scm_string_capitalize): Rewrote and corrected docstrings.
13441 (scm_string_ci_to_symbol): Made docstring more explicit.
13442
07576812
MV
134432001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
13444
13445 * values.h (scm_values_vtable, SCM_VALUESP): Moved here so that
13446 eval.c can use it.
13447 (scm_call_with_values): Removed.
13448 * values.c (values_vtable, scm_values_vtable): Added "scm_" prefix
13449 so that it can be exported.
13450 (scm_call_with_values): Removed.
1c938eb8 13451
07576812
MV
13452 * tags.h (SCM_IM_CALL_WITH_VALUES): New isym.
13453 * eval.c: Include "libguile/values.h"
13454 (scm_m_at_call_with_values, scm_sym_at_call_with_values):
13455 New.
13456 (unmemocopy, scm_ceval, scm_deval): Handle new isym.
13457 * eval.h (scm_sym_at_call_with_values, scm_m_at_call_with_values):
13458 New delcarations to support above change.
13459
13460 * eval.c (scm_primitive_eval_x, scm_primitive_eval): Fix syntax
13461 errors with last change.
1c938eb8 13462
07576812
MV
134632001-03-25 Marius Vollmer <mvo@zagadka.ping.de>
13464
13465 * eval.c (scm_primitive_eval_x, scm_primitive_eval, scm_i_eval_x,
13466 scm_i_eval): Moved the application of the system transformer from
13467 scm_i_eval to scm_primitive_eval.
13468
a17bb5fd
NJ
134692001-03-23 Neil Jerram <neil@ossau.uklinux.net>
13470
a6be01a4
NJ
13471 * guile-snarf.awk.in: Substitute "\\" with "\" in .doc output.
13472
a17bb5fd
NJ
13473 * strop.c (scm_string_index): Fix docstring line break
13474 regression.
13475
13476 * list.c (scm_cons_star): Fix docstring typo.
13477
be54b15d
DH
134782001-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
13479
13480 * gc.c (scm_init_storage), gdbint.c (scm_init_gdbint), numbers.c
13481 (big2str), ports.c (scm_drain_input), read.c (scm_read,
13482 scm_grow_tok_buf), strings.c (scm_string, scm_makfromstr,
13483 scm_make_string, scm_string_append), strports.c (st_resize_port,
13484 scm_object_to_string), unif.c (scm_make_uve): Replace calls to
13485 scm_makstr with calls to scm_allocate_string.
13486
13487 * strings.[ch] (scm_allocate_string): New function.
13488
13489 * strings.[ch] (scm_makstr): Deprecated.
13490
789ecc05
GH
134912001-03-18 Gary Houston <ghouston@arglist.com>
13492
6d163216
GH
13493 * posix.c (scm_tmpnam): check that return value from tmpnam is not
13494 NULL. rewrote the docstring.
13495 (scm_mkstemp): new procedure implementing "mkstemp!".
13496 * posix.h: declare scm_mkstemp.
13497
789ecc05
GH
13498 * net_db.c: declare h_errno if configure didn't define HAVE_H_ERRNO.
13499 normally it would be found in netdb.h.
13500
c6c79933
GH
135012001-03-17 Gary Houston <ghouston@arglist.com>
13502
e9e225e5
GH
13503 * sort.c (scm_sort): move sortvec variable to avoid a compiler
13504 warning when HAVE_ARRAYS is not defined. move len too.
13505
13506 * Makefile.am (DOT_X_FILES): remove net_db.x, posix.x, socket.x.
13507 (EXTRA_DOT_X_FILES): let configure set the value.
13508 (DOT_DOC_FILES): remove net_db.doc, posix.doc, socket.doc.
13509
c6c79933
GH
13510 * gc.c (scm_must_malloc): changed the comment explaining when
13511 scm_must variants of malloc/free etc., should be used, based on
13512 explanation from Dirk Herrmann.
13513 * fports.c (scm_fport_buffer_add): use FUNC_NAME instead of a local
13514 string with procedure name. use scm_must_malloc instead of malloc.
13515 (scm_setvbuf, scm_fdes_to_port, fport_close): use scm_must variants
13516 of malloc/free.
13517 * ports.c (scm_add_to_port_table, scm_remove_from_port_table,
13518 scm_ungetc): use scm_must variants of malloc/realloc/free.
13519 (scm_add_to_port_table, scm_ungetc): define FUNC_NAME.
13520
b3fcac34
DH
135212001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13522
13523 * __scm.h (SCM_ASSERT, SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1,
13524 SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_n): Don't call scm_wta, call
13525 scm_wrong_type_arg instead.
13526
13527 (SCM_WNA): Deprecated.
13528
13529 * error.[ch] (scm_wta): Deprecated.
13530
13531 * numbers.c (s_i_log): Minor comment fix.
13532
13533 * read.c (scm_lreadr), unif.c (scm_aind, scm_shap2ra,
13534 scm_make_shared_array, scm_transpose_array, scm_enclose_array,
13535 scm_array_in_bounds_p): Don't use SCM_ASSERT to check for
13536 wrong-num-args or misc errors.
13537
13538 * unif.c (scm_make_shared_array, scm_transpose_array,
13539 scm_enclose_array, scm_array_in_bounds_p, scm_array_set_x):
13540 Validate the rest argument (note: this is only done when guile is
13541 built with SCM_DEBUG_REST_ARGUMENT=1)
13542
13543 (scm_array_in_bounds_p, scm_uniform_vector_ref, scm_array_set_x):
13544 Replace calls to scm_wrong_num_args by SCM_WRONG_NUM_ARGS.
13545
13546 * validate.h (SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
13547 SCM_VALIDATE_NUMBER_DEF_COPY): Deprecated.
13548
68baa7e7
DH
135492001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13550
13551 * validate.h (SCM_WRONG_NUM_ARGS): Call scm_error_num_args_subr
13552 instead of scm_wrong_num_args.
13553
13554 * coop-threads.c: Don't include libguile/strings.h. (Was only
13555 needed for former implementation of SCM_WRONG_NUM_ARGS.)
13556
13557 * debug.c (scm_m_start_stack): Don't use SCM_ASSERT to check for
13558 wrong-num-args errors.
13559
9f40cd87
DH
135602001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
13561
13562 * error.[ch] (scm_error_num_args_subr): New function.
13563
5352393c
MG
135642001-03-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13565
13566 * list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
13567 (scm_length, scm_append, scm_reverse, scm_list_ref),
13568 (scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
13569 (scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
13570 (scm_delete1_x), gc.c (scm_map_free_list),
13571 (scm_free_list_length), hash.c (scm_hashq, scm_hashv),
13572 (scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
13573 (scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
13574 (scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
13575 (scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
13576 (scm_current_pstate), scmsigs.c (scm_usleep), goops.c
13577 (scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
13578
13579 * weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
13580 (scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
13581 rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
13582 symbols.c (scm_symbol_interned_p), numbers.c
13583 (scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
13584 markup.
13585
a9205f07
KN
135862001-03-16 Keisuke Nishida <kxn30@po.cwru.edu>
13587
13588 * snarf.h (SCM_CONST_LONG): Deprecated.
13589 * tag.c (CONST_INUM): New macro. Use it to define scm_utag_*.
13590
6d583887
MV
135912001-03-15 Marius Vollmer <marius.vollmer@uni-dortmund.de>
13592
13593 * numbers.c (scm_num2ulong): Check that a bignum is positive
13594 before looking at the magnitude. Correctly check for overflow
13595 during conversion.
13596 (scm_num2long_long): Likewise.
13597 (scm_num2ulong_long): New.
13598 (ULONG_LONG_MAX): Define if not already defined.
13599 * numbers.h: (scm_num2ulong_long): New prototype.
1c938eb8 13600
e87a03fc
MG
136012001-03-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13602
13603 * validate.h (SCM_VALIDATE_OPOUTSTRPORT): New macro.
13604
13605 * strports.h (SCM_STRPORTP, SCM_OPSTRPORTP, SCM_OPINSTRPORTP),
13606 (SCM_OPOUTSTRPORTP): New predicate macros.
13607 (scm_open_input_string, scm_open_output_string),
13608 (scm_get_output_string): New prototypes.
1c938eb8 13609
e87a03fc
MG
13610 * strports.c (scm_open_input_string, scm_open_output_string),
13611 (scm_get_output_string): New procedures (SRFI-6 compliant).
13612 Made scm_tc16_strport non-static.
13613
160bb34a
DH
136142001-03-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13615
13616 * macros.h (SCM_ASSYNT): Removed unused object argument from
13617 signature.
13618
13619 * eval.c (scm_m_body, scm_m_quote, scm_m_begin, scm_m_if,
13620 scm_m_set_x, scm_m_and, scm_m_or, scm_m_case, scm_m_cond,
13621 scm_m_letstar, scm_m_do, scm_m_quasiquote, scm_m_delay,
13622 scm_m_define, scm_m_letrec1, scm_m_letrec, scm_m_let, scm_m_apply,
13623 scm_m_cont, scm_m_nil_cond, scm_m_nil_ify, scm_m_t_ify,
13624 scm_m_0_cond, scm_m_0_ify, scm_m_1_ify, scm_m_atfop, scm_m_atbind,
13625 scm_m_expand_body), evalext.c (scm_m_generalized_set_x,
13626 scm_m_undefine), goops.c (scm_m_atslot_ref, scm_m_atslot_set_x,
13627 scm_m_atdispatch): Removed unused object argument from call to
13628 SCM_ASSYNT.
13629
80dee77b
DH
136302001-03-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13631
13632 * gh.h/gh_data.c (gh_ints2scm): Changed the signature to use a
13633 const int* to reflect that the input array of integers remains
13634 unchanged. Thanks to Brett Viren for the hint.
13635
d3dd80ab
MG
136362001-03-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13637
13638 * gh_data.c (gh_scm2chars, gh_scm2shorts, gh_scm2longs),
13639 (gh_scm2floats, gh_scm2doubles): Check for malloc() returning NULL
13640 in various places.
13641 (gh_scm2newstr, gh_symbol2newstr): Change call to
13642 scm_must_malloc() to malloc(), because user-free()able memory is
13643 allocated.
13644
13645 * gc.c: Added declaration of `scm_debug_check_freelist'.
13646
26a3038d
MG
136472001-03-13 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13648
13649 * ports.c (scm_port_mode): Changed `mode' array size to 4.
13650
1f3908c4
KN
136512001-03-12 Keisuke Nishida <kxn30@po.cwru.edu>
13652
13653 * strports.c (scm_object_to_string): New procedure.
13654 (scm_strprint_obj): Deprecated.
13655 * strports.h: Reflect the changes.
13656
e11208ca
DH
136572001-03-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
13658
13659 * goops.h (SCM_VALIDATE_PUREGENERIC): New macro.
13660
13661 * goops.c (scm_m_atslot_ref, scm_m_atslot_set_x,
13662 scm_m_atdispatch): Provide definitions for FUNC_NAME. Don't use
13663 SCM_ASSYNT to check for correct argument types. Either use some
13664 SCM_VALIDATE_* macro or an explicit test.
13665
13666 (scm_make_foreign_object): Don't use SCM_ASSERT to check for
13667 misc-errors.
13668
13669 * macros.h (SCM_ASSYNT): On assertion failure, issue a misc-error
13670 instead of calling scm_wta.
13671
67e8151b
MG
136722001-03-12 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13673
13674 * load.c (scm_primitive_load, scm_primitive_load_path),
13675 (scm_sys_search_load_path): Corrected docstrings (file ->
13676 filename).
13677
13678 * eval.c (scm_force): Added texinfo markup to docstring.
13679 (scm_promise_p): Renamed parameter to `obj' to match docstring.
13680
13681 * debug-malloc.c: Reinserted #include <stdio.h>.
13682
e0c08f17
KN
136832001-03-11 Keisuke Nishida <kxn30@po.cwru.edu>
13684
e39c3de4
KN
13685 * list.c (s_scm_reverse_x): Use SCM_VALIDATE_LIST.
13686
e0c08f17
KN
13687 * environments.c, error.c, eval.c, filesys.c, hashtab.c, load.c,
13688 net_db.c, procprop.c, read.c, scmsigs.c, socket.c, struct.c:
13689 Use SCM_LISTn instead of scm_listify.
13690
e6e2e95a
MD
136912001-03-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13692
13693 * _scm.h: Removed #include <errno.h>.
13694
13695 * error.c, net_db.c, putenv.c, stime.c: Removed declaration of
13696 errno variable (can be a macro on some systems, for example when
13697 using linux libc with threads).
13698
13699 * error.c, filesys.c, gc.c, ioext.c, iselect.c, net_db.c, ports.c,
13700 posix.c, print.c, putenv.c, scmsigs.c, script.c, simpos.c, smob.c,
13701 socket.c, srcprop.c, stime.c, strop.c, unif.c, vports.c: Added
13702 #include <errno.h> in these 20 out of 100 files.
1c938eb8 13703
97d0e20b
GH
137042001-03-10 Gary Houston <ghouston@arglist.com>
13705
13706 * socket.c: add a definition of SUN_LEN (from glibc) for when it's
13707 not already defined.
13708
e75341b3
MD
137092001-03-09 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13710
13711 * coop.c: Inserted #include <stdio.h>.
13712
13713 * iselect.c: Reinserted #include <stdio.h>.
13714
74355186
MV
137152001-03-10 Marius Vollmer <mvo@zagadka.ping.de>
13716
13717 * posix.c: Replaced `#define' of __USE_XOPEN right before
13718 including unistd.h with a define of _GNU_SOURCE at the very top of
13719 the file.
13720
783e7774
KN
137212001-03-09 Keisuke Nishida <kxn30@po.cwru.edu>
13722
13723 * alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
13724 continuations.c, debug-malloc.c, debug.c, dynwind.c, eq.c, eval.c,
13725 feature.c, filesys.h, gc_os_dep.c, gh_data.c, gh_eval.c,
13726 gh_funcs.c, gh_io.c, gh_list.c, gh_predicates.c, hash.c,
13727 hashtab.c, iselect.c, keywords.c, list.c, load.c, mallocs.c,
13728 net_db.c, numbers.c, objprop.c, objprop.h, options.c, pairs.c,
13729 print.c, procprop.c, procs.c, properties.c, ramap.c,
13730 regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c, srcprop.c,
13731 stackchk.c, stacks.c, strings.c, strop.c, strorder.c, struct.c,
13732 symbols.c, tag.c, threads.c, variable.c, vectors.c, weaks.c:
1c938eb8 13733 Remove #include <stdio.h>
783e7774
KN
13734 * gc.c, gdbint.c, root.c, sort.c, unif.c: Add #include <string.h>.
13735
13736 * procs.c (scm_make_subr_opt): Init symcell to avoid warning.
13737
9a677c37
MG
137382001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13739
13740 * posix.c (scm_gethostname): Set initial name length to 256 for
13741 Solaris.
13742
94e6d793
MG
137432001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13744
13745 * posix.h (scm_crypt, scm_chroot, scm_getlogin, scm_cuserid),
13746 (scm_getpriority, scm_setpriority, scm_getpass, scm_flock),
13747 (scm_sethostname, scm_gethostname): New prototypes.
13748
13749 * posix.c: Added inclusion of <crypt.h>, <sys/resource.h> and
13750 <sys/file.h>, if present.
13751 (scm_init_posix): [PRIO_PROCESS, PRIO_PGRP, PRIO_USER, LOCK_SH,
13752 LOCK_EX, LOCK_UN, LOCK_NB]: New variables.
13753 (scm_crypt, scm_chroot, scm_getlogin, scm_cuserid),
13754 (scm_getpriority, scm_setpriority, scm_getpass, scm_flock),
13755 (scm_sethostname, scm_gethostname): New procedures.
13756
650a1cf9
NJ
137572001-03-08 Neil Jerram <neil@ossau.uklinux.net>
13758
13759 * ports.c (scm_port_column): Docstring fixes: (i) port-line arg is
13760 not optional (ii) "recommend" spelling correction.
13761
9636b49c
MD
137622001-03-08 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13763
5e4a4d09
MD
13764 * ramap.c (racp): Removed optimization which caused array copying
13765 to fail if the two arrays shared storage. Re-inserted the IVDEP
13766 macros removed in the change of 2000-03-09. (Don't really have a
13767 complete grasp of what they are for, but they seem to be necessary
13768 on Crays. This needs testing!) Thanks to Miroslav Silovic.
13769
9636b49c
MD
13770 * hash.c (scm_string_hash): Don't downcase characters.
13771
04a4d666
MD
137722001-03-07 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13773
9636b49c 13774 * symbols.c (scm_symbols_prehistory): Changed symbol hash table
04a4d666
MD
13775 size from 277 --> 1009.
13776
13777 * symbols.c, symbols.h (scm_sys_symbols): New function GUILE_DEBUG
13778 function.
13779
13780 * coop-threads.c: Fixed change of 2001-03-06.
1c938eb8 13781
04a4d666
MD
13782 * validate.h: Code formatting.
13783
66418d34
KN
137842001-03-07 Keisuke Nishida <kxn30@po.cwru.edu>
13785
13786 * Makefile.am (*.x): Add dependency on snarf.h and guile-doc-snarf.in.
13787 (*.doc): Add dependency on guile-snarf.awk.in.
13788
13789 * guile-snarf.awk.in: Neglect spaces at the end of
13790 SCM_SNARF_DOCSTRING_END. Skip lines "# NN ..." in the
13791 middle of docstrings. (To avoid the problem with gcc-2.96.)
13792
2ade72d7
DH
137932001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
13794
13795 * coop-threads.c (scm_call_with_new_thread), load.c
13796 (scm_primitive_load, scm_sys_search_load_path), random.c
13797 (scm_c_default_rstate), struct.c (scm_make_struct_layout,
13798 scm_struct_ref, scm_struct_set_x): Don't use SCM_ASSERT to
13799 (potentially) issue a scm-misc-error or wrong-num-args error
13800 message.
13801
13802 * load.c (scm_search_path): Use SCM_ASSERT_TYPE to give details
13803 about the expected type with the wrong-type-arg error message.
13804
13805 * smob.c (scm_make_smob): Abort on misuse of smob - it indicates
13806 a C level bug that can't be fixed from scheme anyway.
13807
586d7da2
MD
138082001-03-05 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13809
13810 * eval.c (scm_m_letstar): Removed check for duplicate bindings.
13811 Duplicate bindings are OK in a let* since a let* is semantically
13812 equivalent to a nested set of let:s.
13813
1dd05fd8
MG
138142001-03-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13815
13816 * print.c (scm_print_options): Fixed texinfo in docstring.
13817
13818 * net_db.c (scm_getserv, scm_getproto, scm_getnet): Return #f if
13819 the underlying functions getservent, getprotoent or getnetent
13820 return NULL instead of signalling an error.
13821
439006bf
GH
138222001-03-04 Gary Houston <ghouston@arglist.com>
13823
13824 * socket.c (scm_fill_sockaddr): don't allow buffer overflows when
13825 taking an unexpectedly large filename for an AF_UNIX socket from
13826 bind/connect/sendto (thanks to Martin Grabmueller).
1c938eb8 13827
439006bf
GH
13828 * socket.c (scm_sock_fd_to_port, SCM_SOCK_FD_TO_PORT): removed the
13829 former and adjusted the latter.
13830 (scm_socket, scm_socketpair): cosmetic changes.
13831 (scm_getsockopt, scm_setsockopt): declare optlen as int, not
13832 size_t as socklen_t substitute. don't restrict args/return values
13833 to INUM: allow full range of int or size_t.
13834 (scm_fill_sockaddr): check arguments before allocating memory, to
13835 avoid leakage. use malloc, not scm_must_malloc.
13836 (scm_connect, scm_bind, scm_sendto): use int, not size_t as socklen_t
13837 substitute. free the sockaddr structure before throwing an error.
13838 (scm_init_add_buffer): procedure removed, together with its static
13839 buffer scm_addr_buffer, which wouldn't be thread safe. instead,
13840 define a macro MAX_ADDR_SIZE and declare the buffer where needed.
13841 (scm_accept, scm_getpeername, scm_getsockname, scm_recvfrom,
13842 scm_sendto): use a local buffer instead of scm_addr_buffer.
13843 adjust for new SCM_SOCK_FD_TO_PORT. use int for address size,
13844 not size_t.
13845 (scm_recvfrom): set addr->sa_family to AF_UNSPEC before the recvfrom
13846 call to detect whether recvfrom could be bothered to set the address.
13847 (scm_init_socket): don't call scm_init_addr_buffer.
13848
276dd677
DH
138492001-03-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
13850
13851 * debug.c (scm_procedure_source, scm_procedure_environment),
13852 print.c (scm_get_print_state), ramap.c (scm_array_fill_int,
13853 scm_array_index_map_x), sort.c (scm_sort_x, scm_sort,
13854 scm_stable_sort_x, scm_stable_sort), stacks.c (scm_make_stack,
13855 scm_last_stack_frame), symbols.c (scm_sym2vcell, scm_sym2ovcell),
13856 unif.c (scm_list_to_uniform_array, scm_uniform_vector_length,
13857 scm_transpose_array, scm_enclose_array, scm_array_in_bounds_p,
13858 scm_uniform_vector_ref, scm_array_set_x, scm_uniform_array_read_x,
13859 scm_uniform_array_write, scm_bit_set_star_x, scm_bit_count_star,
13860 scm_array_to_list, scm_array_prototype), validate.h
13861 (SCM_VALIDATE_NUMBER_COPY): Don't call function scm_wta, call
13862 scm_misc_error or scm_wrong_type_arg instead.
13863
13864 * validate.h (SCM_WTA, RETURN_SCM_WTA): Deprecated.
13865
5e03762c
MD
138662001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13867
13868 * goops.c, goops.h (scm_sys_pre_expand_closure_x): Removed.
13869 (scm_sys_tag_body): Added.
13870
db4b4ca6
DH
138712001-03-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
13872
13873 * continuations.c (continuation_apply), eval.c (scm_m_lambda,
13874 scm_m_letstar, scm_m_letrec1, scm_m_let, SCM_APPLY), eval.h
13875 (SCM_EVALIM2), evalext.c (scm_m_generalized_set_x), gc.c
13876 (get_bvec, MARK), goops.c (scm_primitive_generic_generic),
13877 options.c (scm_options), ports.c (scm_remove_from_port_table),
13878 ramap.c (scm_ramapc), read.c (skip_scsh_block_comment, scm_lreadr,
13879 scm_lreadparen, scm_lreadrecparen), script.c (script_get_octal,
13880 script_get_backslash, script_read_arg), unif.c (scm_cvref): Don't
13881 call function scm_wta, call scm_misc_error or scm_wrong_type_arg
13882 instead.
13883
87e7741d
MD
138842001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13885
13886 * goops.c (scm_sys_pre_expand_closure_x): New procedure.
13887
d19b0aac
MV
138882001-03-04 Marius Vollmer <mvo@zagadka.ping.de>
13889
13890 * eval.c (scm_s_duplicate_bindings): New error message.
13891 (scm_m_letrec1, scm_m_letstar): Check for duplicate bindings.
13892
2fd945df
MV
138932001-03-03 Marius Vollmer <mvo@zagadka.ping.de>
13894
13895 * eval.h (SCM_EVALIM2): New macro. Use it when a
13896 immediate, literal constant should be evaluated.
13897 * eval.c (scm_s_duplicate_formals): New error message string.
13898 (scm_c_improper_memq): New function.
13899 (scm_m_lambda): Check for duplicate arguments.
13900 (scm_ceval, scm_deval): When executing a body: only cons a new
13901 toplevel environment frame when it is different from the
13902 existing one; use EVALCAR instead of SIDEVAL so that we can properly
13903 check for empty combinations; use SCM_EVALIM2 for the same reason
13904 in the non-toplevel loop.
13905 (nontoplevel_cdrxnoap, nontoplevel_cdrxbegin, nontoplevel_begin):
13906 New labels with the meaning of their non-"nontoplevel" partners,
13907 but they are used when it is known that the body is not evaluated at
13908 top-level.
13909 (scm_apply, scm_dapply): use SCM_EVALIM2 to get proper error
13910 reporting for empty combinations.
13911
9e6fc585
KN
139122001-03-02 Keisuke Nishida <kxn30@po.cwru.edu>
13913
13914 * Remove dump facilities.
13915 * dump.c, dump.h: Removed.
13916 * Makefile.am: Remove dump.c, dump.h, dump.x, dump.doc.
13917 * init.c: Remove #include "libguile/dump.h".
13918 (scm_init_guile_1): Remove scm_init_dump.
13919 * smob.h (scm_smob_descriptor): Remove slots: dump, undump.
13920 (scm_set_smob_dump, scm_set_smob_undump): Remove declaration.
13921 * smob.c (scm_make_smob_type): Remove initialization: dump, undump.
13922 (scm_set_smob_dump, scm_set_smob_undump): Removed.
13923
13924 * keywords.c: Remove #include "libguile/dump.h".
13925 (keyword_dump, keyword_undump): Removed.
13926 (scm_init_keywords): Remove scm_set_smob_dump and scm_set_smob_undump.
13927
eae54bf0
MG
139282001-03-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
13929
13930 * vectors.c (s_scm_vector_p, list->vector, scm_vector)
13931 (scm_vector_ref, scm_vector_set_x, scm_vector_to_list)
13932 (scm_vector_fill_x), strorder.c (scm_string_equal_p)
13933 (scm_string_ci_equal_p, scm_string_less_p, scm_string_leq_p)
13934 (scm_string_gr_p, scm_string_geq_p, scm_string_ci_less_p)
13935 (scm_string_ci_geq_p), symbols.c (scm_symbol_p)
13936 (scm_symbol_to_string, scm_string_to_symbol): Changed use of @t{}
13937 to @code{} as the texinfo manual recommends, converted the
13938 examples to use a @lisp{}-environment.
13939
13940 * strports.c (scm_eval_string): Cleaned up the docstring.
13941
13942 * struct.c (scm_struct_p, scm_struct_vtable_p): Added texinfo
13943 markup.
13944
13945 * numbers.c (scm_exact_p, scm_odd_p, scm_even_p)
13946 (scm_number_to_string, scm_string_to_number, scm_number_p)
13947 (scm_real_p, scm_integer_p, scm_inexact_p, scm_make_rectangular)
13948 (scm_make_polar, scm_inexact_to_exact): Added texinfo markup.
13949 (scm_ash): Added texinfo markup and removed obsolete @refill.
13950 (scm_gr_p): Corrected comment.
13951 (scm_gr_p, scm_leq_p, scm_geq_p): Added texinfo markup to (future
13952 docstring) comments.
13953 (scm_positive_p, scm_less_p, scm_num_eq_p, scm_real_p)
13954 (scm_number_p, scm_negative_p, scm_max, scm_min, scm_sum)
13955 (scm_difference, scm_product, scm_divide, scm_asinh, scm_acosh)
13956 (scm_atanh, scm_truncate, scm_round, scm_exact_to_inexact)
13957 (floor, ceiling, $sqrt, $abs, $exp, $log, $sin, $cos, $tan, $asin)
13958 ($acos, $atan, $sinh, $cosh, $tanh, scm_real_part, scm_imag_part)
13959 (scm_magnitude, scm_angle, scm_abs, scm_quotient, scm_remainder)
13960 (scm_modulo, scm_gcd, scm_lcm): Added (future docstring) comments.
13961
23deee81
DH
139622001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
13963
13964 * __scm.h (SCM_ASSERT_TYPE): Add missing macro parameter.
13965 (Obviously nobody compiles with SCM_RECKLESS defined...)
13966
13967 * validate.h (SCM_ASSERT_RANGE): Use the argument number.
13968
6fe692e9
MD
139692001-02-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
13970
13971 * ports.c, ports.h (scm_c_read, scm_c_write): New functions.
13972
13973 * ports.h (SCM_READ_BUFFER_EMPTY_P): New macro.
13974
27c37006
NJ
139752001-02-24 Neil Jerram <neil@ossau.uklinux.net>
13976
13977 * numbers.c (scm_two_doubles, scm_sys_expt, scm_sys_atan2,
13978 scm_make_polar): Rename arguments `z1' and `z2' to `x' and `y',
13979 since use of `z' suggests that the arguments may be complex.
13980
13981 * goops.c (scm_make), numbers.c (scm_sys_expt): Fix docstring
13982 typos.
13983
2069af38
NJ
139842001-02-23 Neil Jerram <neil@ossau.uklinux.net>
13985
13986 * dump.c (scm_binary_write, scm_binary_read), eval.c
13987 (scm_primitive_eval), guardians.c (scm_guardian_destroyed_p,
13988 scm_guardian_greedy_p, scm_make_guardian), fports.c
13989 (scm_file_port_p): Minor docstring fixes.
13990
b42ff180
MV
139912001-02-22 Marius Vollmer <mvo@zagadka.ping.de>
13992
2069af38 13993 * load.c (load): Use scm_primitive_eval_x instead of scm_i_eval_x.
97ea55f8
MV
13994
13995 * goops.c (scm_add_method, DEFVAR): Use scm_eval instead of
13996 scm_i_eval.
13997 (make_class_from_template): Do not bother to set the current
13998 module around the call to DEFVAR, scm_eval takes care of that.
13999 (scm_init_goops): Make scm_module_goops and
14000 scm_goops_lookup_closure permanent objects.
1c938eb8 14001
97ea55f8
MV
14002 * eval.c (scm_ceval, scm_deval): When evaluating expressions on
14003 top level, create a fresh top-level environment for each
14004 expression instead of mutating the exisint frame. This is
14005 important when that frame is closed over.
14006
b42ff180
MV
14007 * numbers.c (s_scm_logior) [SCM_DIGSTOOBIG]: Also use
14008 SCM_DIGSPERLONG instead of DIGSPERLONG.
14009
09f2ab1e
MV
140102001-02-21 Marius Vollmer <mvo@zagadka.ping.de>
14011
14012 * eval.c (scm_ceval, scm_deval): Check for wrong number of args
14013 before applying arrow procedure in `cond' and before applying
14014 receiver procedure in call-with-current-continuation.
14015 (scm_i_eval): Do not invoke scm_copy_tree in argument in SCM_XEVAL
14016 macro. The argument is expanded more than one time.
14017
14018 * numbers.c (scm_logior) [SCM_DIGSTOOBIG]: Correctly use
14019 SCM_BIGDIG instead of BIGDIG. Thanks to Steven G. Johnson!
14020
140212001-02-20 Marius Vollmer <mvo@zagadka.ping.de>
14022
14023 * guile-doc-snarf.in, guile-func-name-check.in: Added copyright
14024 notice and license.
14025
7090240c
MG
140262001-02-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
14027
14028 * variable.c (scm_make_variable, scm_make_undefined_variable)
14029 (scm_variable_ref, scm_variable_set_x, scm_builtin_variable)
14030 (scm_variable_bound_p), values.c (scm_values)
14031 (scm_call_with_values), unif.c (scm_bit_count)
14032 (scm_bit_set_star_x), symbols.c (scm_gentemp)
14033 (scm_gensym), strings.c (scm_string_p, scm_make_string)
14034 (scm_read_only_string_p, scm_string_length, scm_string_ref)
14035 (scm_string_set_x, scm_substring, scm_string_append), stime.c
14036 (scm_strptime, scm_mktime), random.c (scm_seed_to_random_state)
14037 (scm_copy_random_state, scm_random), print.c (scm_newline)
14038 (scm_write_char, scm_simple_format), debug-malloc.c
14039 (scm_malloc_stats), environments.c (scm_environment_p)
14040 (scm_environment_bound_p, scm_environment_ref)
14041 (scm_environment_fold, scm_environment_define)
14042 (scm_environment_undefine, scm_environment_set_x)
14043 (scm_environment_cell, scm_environment_observe)
14044 (scm_environment_observe_weak, scm_environment_unobserve)
14045 (scm_make_eval_environment, scm_eval_environment_p)
14046 (scm_eval_environment_set_local_x, scm_eval_environment_local)
14047 (scm_eval_environment_imported)
14048 (scm_eval_environment_set_imported_x, scm_make_import_environment)
14049 (scm_import_environment_p, scm_import_environment_imports)
14050 (scm_import_environment_set_imports_x, scm_make_export_environment)
14051 (scm_export_environment_p, scm_export_environment_private)
14052 (scm_export_environment_set_private_x)
14053 (scm_export_environment_signature)
14054 (scm_export_environment_set_signature_x, scm_leaf_environment_p):
14055 Added texinfo markup.
14056
14057 * ports.c (scm_drain_input): Lowercased argument to @var.
14058 (scm_current_input_port, scm_current_output_port): Filled in
14059 missing explanation.
14060 (scm_current_load_port, scm_set_current_output_port)
14061 (scm_set_current_error_port, scm_port_line, scm_set_port_line_x):
14062 Added texinfo markup.
14063
14064 * arbiters.c (scm_make_arbiter, scm_try_arbiter)
14065 (scm_release_arbiter): Added texinfo markup to docstrings.
14066 Changed `Returns' to `Return'.
14067 (arbiter_print): Changed SCM_CDR to SCM_SMOB_DATA.
14068
25703850
NJ
140692001-02-16 Neil Jerram <neil@ossau.uklinux.net>
14070
14071 * guile-snarf.awk.in: Quote any `@'s that occur in Scheme names,
14072 by doubling them to `@@'.
14073
73c0fdce
MG
140742001-02-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
14075
14076 * numbers.c (scm_lognot), random.c (scm_random,
14077 scm_random_normal, scm_random_solid_sphere_x,
14078 scm_random_hollow_sphere_x, scm_random_normal_vector_x,
14079 scm_random_exp), dynwind.c
14080 (scm_dynamic_wind): Removed unnecessary "" from docstrings.
1c938eb8 14081
73c0fdce
MG
14082 * goops.c (scm_sys_initialize_object, scm_instance_p,
14083 scm_class_name, scm_class_precedence_list, scm_class_slots,
14084 scm_class_environment, scm_generic_function_name,
14085 scm_generic_function_methods, scm_method_generic_function,
14086 scm_method_specializers, scm_method_procedure, scm_make_unbound,
14087 scm_unbound_p, scm_assert_bound, scm_at_assert_bound_ref,
14088 scm_sys_fast_slot_ref, scm_sys_fast_slot_set_x, scm_slot_ref,
14089 scm_slot_set_x, _scm_slot_bound_p, scm_slots_exists_p,
14090 scm_sys_allocate_instance, scm_make, scm_pure_generic_p,
14091 scm_class_direct_supers, scm_class_direct_slots,
14092 scm_class_direct_subclasses, scm_class_direct_methods,
14093 scm_accessor_method_slot_definition, scm_sys_goops_loaded),
14094 debug.c (scm_with_traps, scm_memoized_p, scm_make_gloc,
14095 scm_gloc_p, scm_make_iloc, scm_iloc_p, scm_memcons,
14096 scm_mem_to_proc, scm_proc_to_mem, scm_unmemoize,
14097 scm_memoized_environment, scm_procedure_name,
14098 scm_procedure_source, scm_procedure_environment, scm_debug_hang),
14099 objects.c
14100 (scm_class_of, scm_entity_p, scm_operator_p,
14101 scm_set_object_procedure_x, scm_object_procedure,
14102 scm_make_class_object), hooks.c (scm_make_hook_with_name,
14103 scm_make_hook, scm_hook_p, scm_hook_empty_p, scm_add_hook_x,
14104 scm_remove_hook_x, scm_reset_hook_x, scm_run_hook,
14105 scm_hook_to_list), lang.c
14106 (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null, scm_nil_eq),
14107 numbers.c (scm_sys_expt, scm_sys_atan2), print.c
14108 (scm_print_options, scm_port_with_print_state,
14109 scm_get_print_state), procs.c (scm_make_cclo, scm_procedure_p,
14110 scm_closure_p, scm_thunk_p, scm_procedure_with_setter_p,
14111 scm_make_procedure_with_setter, scm_procedure), throw.c
14112 (scm_lazy_catch), modules.c (scm_standard_eval_closure), load.c
14113 (scm_parse_path, scm_search_path), stacks.c (scm_make_stack,
14114 scm_stack_ref, scm_stack_length, scm_frame_p,
14115 scm_last_stack_frame, scm_frame_number, scm_frame_source,
14116 scm_frame_procedure, scm_frame_arguments, scm_frame_previous,
14117 scm_frame_next, scm_frame_real_p, scm_frame_procedure_p,
14118 scm_frame_evaluating_args_p, scm_frame_overflow_p), filesys.c
14119 (scm_dirname, scm_basename), dynwind.c
14120 (scm_wind_chain), read.c (scm_read_options, scm_read,
14121 scm_read_hash_extend), gc.c
14122 (scm_unhash_name), eval.c (scm_eval_options_interface,
14123 scm_evaluator_traps, s_scm_nconc2last), backtrace.c
14124 (scm_display_error, scm_set_print_params_x,
14125 scm_display_application, scm_display_backtrace, scm_backtrace),
14126 async.c (scm_async, scm_system_async, scm_async_mark,
14127 scm_system_async_mark, scm_run_asyncs, scm_noop,
14128 scm_set_tick_rate, scm_set_switch_rate, scm_unmask_signals,
14129 scm_mask_signals): Added docstrings.
14130
e228a203
KN
141312001-02-15 Keisuke Nishida <kxn30@po.cwru.edu>
14132
14133 * dump.c (scm_undump): Use SCM_CARLOC/SCM_CDRLOC to obtain the
14134 address of car/cdr. (Thanks to Dirk Herrmann)
14135 Use scm_sizet to obtain the length of strings.
14136 (Thanks to Matthias Koeppe)
14137
1552a59d
MV
141382001-02-15 Marius Vollmer <mvo@zagadka.ping.de>
14139
14140 * symbols.c (scm_mem2symbol): Put a empty statement after the
14141 next_symbol label. This is mandated by ANSI, appearantly.
14142
3178f751
MV
141432001-02-13 Marius Vollmer <marius.vollmer@uni-dortmund.de>
14144
14145 * gc_os_dep.c: Do not include <linux/version.h>. It makes no
14146 sense to compile for a specific kernel version. Do not include
14147 <asm/signal.h> while defining __KERNEL__. This hack should no
14148 longer be needed and caused problems.
14149
7af4defe
MV
141502001-02-13 Marius Vollmer <mvo@zagadka.ping.de>
14151
14152 * eval.c (scm_ceval, scm_deval): use `SIDEVAL' instead of
14153 SCM_CEVAL when evaluating subforms of `begin' forms. SCM_CEVAL
14154 can not deal with immediates.
14155
5d6bb349
KN
141562001-02-12 Keisuke Nishida <kxn30@po.cwru.edu>
14157
14158 * list.c (scm_list_copy): Validate the first argument.
14159
ec9709f0
MV
141602001-02-11 Marius Vollmer <mvo@zagadka.ping.de>
14161
14162 Fix evaluator so that top-level expressions are correctly
14163 evaluated with respect to the module system.
1c938eb8 14164
ec9709f0
MV
14165 * modules.h. modules.c (scm_current_module_lookup_closure): New
14166 function.
14167
14168 * eval.h (scm_primitive_eval, scm_primitive_eval_x): New
14169 prototypes.
14170 (scm_i_eval, scm_i_eval_x, scm_eval, scm_eval_x): Changed argument
14171 names to better reflect their meaning.
14172
14173 * eval.c (scm_ceval, scm_deval): Recognize when `begin' is being
14174 evaluated at top-level and synronize lookup closure before
14175 executing every subform.
14176 (scm_primitve_eval_x, scm_primitive_eval): New functions.
14177 (scm_eval_x, scm_eval): Reimplement in terms of
14178 scm_primitive_eval_x and scm_primitive_eval, respectively.
1c938eb8 14179
ec9709f0
MV
141802001-02-09 Marius Vollmer <mvo@zagadka.ping.de>
14181
14182 * macros.c (scm_macro_name, scm_macro_transformer): Use
14183 SCM_SMOB_DATA instead of SCM_CDR. Provided by Martin Grabmueller.
14184 Thanks!
14185
42417394
KN
141862001-02-10 Keisuke Nishida <kxn30@po.cwru.edu>
14187
14188 * dump.c (scm_store_bytes): Store data size before data.
14189 (scm_restore_bytes): Restore data size. Takes a pointer to size.
14190 * dump.h (scm_restore_bytes): Updated.
14191
bf942687
KN
141922001-02-09 Keisuke Nishida <kxn30@po.cwru.edu>
14193
14194 * dump.c: Use double cells for update schedule.
14195
1be4270a
KN
141962001-02-08 Keisuke Nishida <kxn30@po.cwru.edu>
14197
14198 * ports.c (scm_unread_char): Take an optional argument.
14199
548728ea
MV
142002001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
14201
14202 * modules.h (scm_selected_module, scm_current_module): Renamed
14203 scm_selected_module to scm_current_module to synchronize Scheme
14204 and C names.
14205 (scm_select_module, scm_set_current_module): Likewise. Changed
14206 all uses.
1c938eb8 14207
548728ea
MV
14208 * ports.c (scm_port_for_each): Make a snapshot of the port table
14209 before iterating over it. The table might change while the user
14210 code is running. With the snapshot, the user can depend on the
c5408bc3 14211 fact that each port that existed at the start of the iteration is
548728ea
MV
14212 encountered exactly once. (ice-9 popen) depends on this.
14213
cb0d8be2
DH
142142001-02-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
14215
14216 * strings.h (SCM_STRING_MAX_LENGTH): New macro.
14217
14218 * strings.c (scm_makstr, scm_take_str, scm_make_string): Added
14219 range checking for the size parameter. Thanks to Martin
14220 Grabmueller for the hint.
14221
14222 (scm_makstr): Reordered string initialization to make interrupt
14223 deferring unnecessary.
14224
14225 * vectors.c (scm_make_vector): Fixed range checking.
14226
e382fdbe
DH
142272001-02-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
14228
14229 * vectors.h (SCM_VECTOR_MAX_LENGTH): New macro.
14230
14231 * vectors.c (scm_make_vector, scm_c_make_vector): Improved the
14232 checking of the size parameter for type correctness and valid
14233 range. Thanks to Rob Browning for reporting the problem. Instead
14234 of deferring interrupts, scm_remember_upto_here_1 is used.
14235
bf8f0922
KN
142362001-02-05 Keisuke Nishida <kxn30@po.cwru.edu>
14237
14238 * dump.c (scm_store_cell_object, scm_restore_cell_object): Removed.
14239 (scm_dump_cell_update): Removed.
14240 (scm_dump_update): Renamed from scm_dump_object_update.
14241 (scm_restore_string, scm_restore_bytes, scm_restore_word): Takes
14242 a pointer instead of returning a value.
14243 * keywords.c (keyword_undump): Updated.
14244
914cceec
KN
142452001-02-05 Keisuke Nishida <kxn30@po.cwru.edu>
14246
14247 * dump.c, dump.h: Modified a lot.
5f17c66f 14248 (SCM_DUMP_COOKIE): Version 0.1
914cceec
KN
14249 (scm_dump_mark): Removed.
14250 (scm_restore_cell_object, scm_store_cell_object): New functions.
14251
14252 * smob.h (scm_smob_descriptor): Removed slots: dump_mark,
14253 dump_dealloc, dump_store, undump_alloc, undump_restore, undump_init.
14254 New slots: dump, undump.
14255 * smob.c (scm_make_smob_type, scm_set_smob_dump, scm_set_smob_undump):
14256 Updated.
14257
14258 * keywords.c (keyword_dump): Renamed from keyword_dealloc.
14259 (keyword_undump): Renamed from keyword_alloc.
14260 (scm_init_keywords): Set keyword_dump and keyword_undump.
14261
ecf470a2
ML
142622001-02-03 Michael Livshin <mlivshin@bigfoot.com>
14263
14264 * gc.c (DOUBLECELL_ALIGNED_P): new macro, a better-named analog of
14265 the deprecated SCM_DOUBLE_CELLP.
14266
14267 * tags.h (SCM_DOUBLE_CELLP): deprecated.
14268
03416a99
KN
142692001-02-02 Keisuke Nishida <kxn30@po.cwru.edu>
14270
14271 * dump.c, dump.h: New files.
14272 * Makefile.am: Added dump.c, dump.h, dump.x, dump.doc.
14273 * init.c: #include "libguile/dump.h".
14274 (scm_init_guile_1): Call scm_init_dump.
14275 * smob.h (scm_smob_descriptor): New slots: dump_mark,
14276 dump_dealloc, dump_store, undump_alloc, undump_restore,
14277 undump_init.
14278 * smob.c (scm_make_smob_type): Init the new slots.
14279 (scm_set_smob_dump, scm_set_smob_undump): New functions.
14280 * smob.h (scm_set_smob_dump, scm_set_smob_undump): Declared.
14281
14282 * keywords.c: #include "libguile/dump.h".
14283 (keyword_dealloc, keyword_alloc): New functions.
14284 (scm_init_keywords): Set smob_dump and smob_undump.
14285
00ffa0e7
KN
142862001-02-01 Keisuke Nishida <kxn30@po.cwru.edu>
14287
14288 * vectors.c (scm_c_make_vector): New function.
14289 * vectors.h (scm_c_make_vector): Declared.
14290 * eval.c (scm_copy_tree), filesys.c (scm_stat2scm), fluids.c
14291 (scm_make_initial_fluids, grow_fluids), gc.c (scm_init_storage),
14292 gh_data.c (gh_ints2scm, gh_doubles2scm): goops.c
14293 (scm_make_method_cache, scm_i_vector2list,
14294 scm_compute_applicable_methods, scm_sys_method_more_specific_p),
14295 init.c (start_stack), net_db.c (scm_gethost, scm_getnet,
14296 scm_getproto, scm_return_entry), posix.c (scm_getgroups,
14297 scm_getpwuid, scm_getgrgid, scm_uname), print.c (make_print_state,
14298 grow_ref_stack), regex-posix.c (scm_regexp_exec), scmsigs.c
14299 (scm_init_scmsigs), socket.c (scm_addr_vector, scm_addr_vector),
14300 stime.c (scm_times, filltime), unif.c (scm_make_uve), vectors.c
14301 (scm_vector, scm_make_vector): Use scm_c_make_vector.
14302
14303 * hashtab.c (scm_c_make_hash_table): New function.
14304 * hashtab.h (scm_c_make_hash_table): Declared.
14305 * environments.c (scm_make_leaf_environment,
14306 scm_make_eval_environment), gc.c (scm_init_storage),
14307 keywords.c (scm_init_keywords), symbols.c (scm_builtin_bindings):
14308 Use scm_c_make_hash_table.
14309
b8446ce8
MD
143102001-01-31 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
14311
14312 * unif.c (rapr1): Don't apply scm_uniform_vector_length on arrays.
14313
e3239868
DH
143142001-01-29 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
14315
14316 * struct.c (scm_make_vtable_vtable): Removed unnecessary "" from
14317 end of docstring.
14318
14319 * struct.c (scm_struct_set_x, scm_struct_vtable_tag,
14320 scm_struct_vtable_name, scm_set_struct_vtable_name_x), weaks.c
14321 (scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table,
14322 scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
14323 srcprop.c (scm_source_properties, scm_set_source_properties_x,
14324 scm_source_property, scm_set_source_property_x), sort.c
14325 (scm_sort_list_x, scm_restricted_vector_sort_x, scm_sorted_p,
14326 scm_merge, scm_merge_x, scm_sort_x, scm_sort, scm_stable_sort_x,
14327 scm_stable_sort, scm_sort_list_x, scm_sort_list): Added
14328 docstrings.
14329
41ee56dd
MD
143302001-01-29 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
14331
14332 * eval.c (SCM_APPLY): Check that primitives which take 1 arg
14333 really get that arg.
14334
b6311c08
KN
143352001-01-26 Keisuke Nishida <kxn30@po.cwru.edu>
14336
14337 * goops.c (s_scm_get_keyword): Bug fix.
14338
a49af0c0
DH
143392001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
14340
14341 The following patch was sent by Martin Grabmueller. It makes sure
14342 that in case of parameter errors the correct function name is
14343 shown, and that parameter types are only checked once.
14344
14345 * strop.c (string_copy, string_upcase_x, string_downcase_x,
14346 string_capitalize_x): New functions. Each one performs the core
14347 functionality of the corresponding scm_* function.
14348
14349 (scm_string_copy, scm_string_upcase_x, scm_string_upcase,
14350 scm_string_downcase_x, scm_string_downcase,
14351 scm_string_capitalize_x, scm_string_capitalize): Reduced to
14352 parameter checking wrappers of the above functions.
14353
13070bd3
DH
143542001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
14355
14356 * continuations.c, dynl.c, keywords.c, load.c: Include
14357 strings.h. Thanks to Bill Schottstaedt for the bug report.
14358
2f2b390c
DH
143592001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
14360
14361 * backtrace.c (display_header): Make sure that line and column
14362 information is shown independent of whether the port the code was
14363 read from had an associated filename. Thanks to Martin
14364 Grabmueller for providing this patch.
14365
efa40607
DH
143662001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
14367
14368 * fports.[ch] (scm_file_port_p): New primitive.
14369
a98bddfd
DH
143702001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
14371
14372 * tags.h (scm_tc16_fport, scm_tc16_strport, scm_tc16_sfport):
14373 These are now defined in fports.c, strports.c and vports.c.
14374
14375 * fports.[ch] (scm_tc16_fport), strports.c (scm_tc16_strport),
14376 vports.c (scm_tc16_sfport): Made variables (were macros defined in
14377 tags.h).
14378
14379 fports.c (scm_make_fptob), strports.c (scm_make_stptob), vports.c
14380 (scm_make_sfptob): Made static. These return a type code now.
14381
14382 fports.c (scm_init_fports), strports.c (scm_init_strports),
14383 vports.c (scm_init_vports): Create the corresponding port types.
14384
14385 * fports.h (SCM_FPORTP, SCM_OPFPORTP, SCM_OPINFPORTP,
14386 SCM_OPOUTFPORTP): Redefined in terms of scm_tc16_fport.
14387
14388 * init.c (scm_init_guile_1): Make sure strports are initialized
14389 before gdbint.
14390
14391 * ports.[ch] (scm_make_port_type): Changed the return type to
14392 scm_bits_t.
14393
14394 * ports.c (scm_ports_prehistory): Don't create any port types
14395 here.
14396
14397 * posix.c (scm_ttyname): Use SCM_FPORTP instead of comparing
14398 against scm_tc16_fport directly.
14399
0419a528
DH
144002001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
14401
14402 * srcprop.c (scm_set_source_property_x): Fix to handle
14403 (set-source-property! <obj> 'copy <datum>) correctly.
14404
6d36532c
GH
144052001-01-24 Gary Houston <ghouston@arglist.com>
14406
14407 * filesys.c (scm_link): docstring fix.
14408 * fports.h (scm_setfileno): obsolete declaration removed.
14409 * posix.c: bogus popen declaration removed.
14410
14411 * rdelim.c: new file, split from ioext.c.
14412 * rdelim.h: new file, split from ioext.h
14413 * Makefile.am: add rdelim.c and related files.
14414 * init.c: call scm_init_rdelim. include rdelim.h.
14415
3ba5a6c2
DH
144162001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
14417
14418 This patch was sent by Martin Grabmueller and makes sure that
14419 parameter errors are reported correctly by the lexicographic
14420 ordering predicates.
14421
14422 * strorder.c (string_less_p, string_ci_less_p): New functions.
14423
14424 (scm_string_less_p, scm_string_ci_less_p): Extracted the core
14425 functionality into string_less_p, string_ci_less_p respectively.
14426 The remaining code is just a wrapper to do the parameter
14427 checking.
14428
14429 (scm_string_leq_p, scm_string_gr_p, scm_string_geq_p): Check the
14430 parameters and call string_less_p instead of scm_string_less_p.
14431
14432 (scm_string_ci_leq_p, scm_string_ci_gr_p, scm_string_ci_geq_p):
14433 Check the parameters and call string_less_ci_p instead of
14434 scm_string_ci_less_p.
14435
e40a4095
DH
144362001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
14437
ed6a2db9
DH
14438 This patch modifies scm_display_error to perform parameter
14439 checking. Thanks to Neil Jerram for the bug report.
14440
e40a4095
DH
14441 * backtrace.[ch] (scm_i_display_error): New function.
14442
14443 * backtrace.c (scm_display_error): Added parameter check and
14444 extracted the core functionality into function
14445 scm_i_display_error.
14446
14447 * throw.c (handler_message): Call scm_i_display_error to display
14448 the error message.
14449
f1e06a96
MD
144502001-01-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
14451
14452 * eval.c (SCM_APPLY): Added # args check for application of
14453 procedures with arity 3. (Thanks to Anders Holst.)
14454
30ea841d
DH
144552001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
14456
14457 * filesys.h (SCM_DIR_FLAG_OPEN, SCM_DIR_OPEN_P): Added.
14458
14459 (SCM_OPDIRP): Deprecated.
14460
14461 * filesys.c (scm_opendir): Use SCM_DIR_FLAG_OPEN instead of
14462 SCM_OPN.
14463
14464 (scm_readdir, scm_rewinddir): Don't use SCM_VALIDATE_OPDIR.
14465 Instead, give an explicit error message in case the directory is
14466 closed.
14467
14468 (scm_closedir, scm_dir_print): Rewritten to use SCM_DIR_OPEN_P
14469 instead of SCM_OPENP and SCM_CLOSEDP.
14470
14471 * validate.h (SCM_VALIDATE_OPDIR): Deprecated.
14472
312ae976
DH
144732001-01-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
14474
14475 * eval.c (inner_eval, scm_eval): Move all real functionality into
14476 inner_eval. Avoid to copy the expression twice by inlining some
14477 code from scm_i_eval.
14478
4567ed78
DH
144792001-01-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
14480
14481 * eval.c (scm_m_case): The 'else' clause of a 'case' statement
14482 now has to be the last clause, as required by R5RS. Thanks to
14483 Martin Grabmueller for the patch.
14484
10288a09
GH
144852001-01-18 Gary Houston <ghouston@arglist.com>
14486
14487 * ioext.c: further simplify scm_read_string_x_partial by defining
14488 a macro SCM_EBLOCK.
14489
8f379a8f
DH
144902001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
14491
14492 * gh_data.c (gh_ints2scm): Simplified using SCM_FIXABLE.
14493
5c75b29f
DH
144942001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
14495
14496 * __scm.h: Added comment about architecture and compiler
14497 properties that are required by guile.
14498
14499 (SCM_FIXNUM_BIT, SCM_MOST_POSITIVE_FIXNUM,
14500 SCM_MOST_NEGATIVE_FIXNUM): Moved to numbers.h.
14501
14502 (SCM_CHAR_BIT, SCM_LONG_BIT): Moved here from numbers.h.
14503
14504 * numbers.h (SCM_CHAR_BIT, SCM_LONG_BIT): Moved to __scm.h.
14505
14506 (SCM_FIXNUM_BIT, SCM_MOST_POSITIVE_FIXNUM,
14507 SCM_MOST_NEGATIVE_FIXNUM): Moved here from __scm.h.
14508
ac0c002c
DH
145092001-01-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
14510
14511 * __scm.h (SCM_FIXNUM_BIT): Added. The name is chosen in analogy
14512 to the names in limits.h.
14513
14514 * numbers.c (abs_most_negative_fixnum): Added.
14515
14516 (scm_quotient, scm_remainder): Fixed the fixnum-min / (abs
14517 fixnum-min) special case.
14518
14519 (scm_big_and): Fix for negative first parameter.
14520
14521 (scm_bit_extract): Fix for fixnum paramters.
14522 Thanks to Rob Browning for the bug report.
14523
14524 (scm_init_numbers): Initialize abs_most_negative_fixnum.
14525
debe0dc2
DH
145262001-01-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
14527
14528 * symbols.c (scm_symbol_bound_p): Fixed comment.
14529 Thanks to Chris Cramer.
14530
8a39e3fc
DH
145312001-01-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
14532
14533 * smob.[ch] (scm_make_smob_type): Return type is scm_bits_t now.
14534 Thanks to Bill Schottstaedt.
14535
322ec19d
ML
145362001-01-11 Michael Livshin <mlivshin@bigfoot.com>
14537
9a5fa6e9 14538 from Matthias Köppe:
1c938eb8 14539
322ec19d
ML
14540 * objects.h (SCM_SET_ENTITY_SETTER): new macro. SCM_ENTITY_SETTER
14541 casts its result, so doesn't yield an lvalue per ANSI C.
14542
14543 * goops.c (s_scm_sys_set_object_setter_x): use
14544 SCM_SET_ENTITY_SETTER.
14545 (clear_method_cache): use SCM_SET_ENTITY_PROCEDURE.
14546
14547 * gc.h (SCM_GC_SET_CARD_BVEC): new macro. SCM_GC_CARD_BVEC casts
14548 its result, so doesn't yield an lvalue per ANSI C.
14549 (SCM_GC_SET_CARD_FLAGS): ditto for SCM_GC_GET_CARD_FLAGS.
14550 (SCM_GC_CLR_CARD_FLAGS): redefined in terms of
14551 SCM_GC_SET_CARD_FLAGS.
14552 (SCM_GC_SET_CARD_FLAG, SCM_GC_CLR_CARD_FLAGS): ditto.
14553
14554 * gc.c (INIT_CARD): use the explicit setter macro to set the bvec.
14555
60d02d09
GH
145562001-01-08 Gary Houston <ghouston@arglist.com>
14557
14558 * validate.h (SCM_VALIDATE_SUBSTRING_SPEC_COPY): new macro.
14559 * ioext.c (scm_read_string_x_partial, scm_read_delimited_x),
14560 socket.c (scm_recvfrom): use the new macro, plus minor docstring
14561 changes.
14562 * ioext.c (scm_read_string_x_partial): don't crash if -1 is supplied
14563 for fdes. if current input port is used, check that it's a file
14564 port.
14565
c2da2648
GH
145662001-01-06 Gary Houston <ghouston@arglist.com>
14567
14568 * ioext.c (scm_read_string_x_partial): new procedure, implements
14569 read-string!/partial.
14570 * ports.c (scm_take_from_input_buffers): new procedure used by
14571 scm_read_string_x_partial.
14572 (scm_drain_input): use scm_take_from_input_buffers.
14573
4651d663
MV
145742001-01-06 Marius Vollmer <mvo@zagadka.ping.de>
14575
14576 * validate.h (SCM_VALIDATE_NUMBER): New.
14577
c0a5d888
ML
145782001-01-03 Michael Livshin <mlivshin@bigfoot.com>
14579
14580 * guardians.c (F_GREEDY, F_LISTED, F_DESTROYED, GREEDY_P,
14581 SET_GREEDY, LISTED_P, SET_LISTED, CLR_LISTED, DESTROYED_P,
14582 SET_DESTROYED): new defines/macros.
14583 (GUARDIAN_LIVE, GUARDIAN_ZOMBIES, GUARDIAN_NEXT): deleted.
14584 (add_to_live_list): takes a `guardian_t *' now, not SCM.
14585 (guardian_print): print more info.
14586 (guardian_apply): check if the guardian is destroyed, and throw an
14587 error if so. take one more optional argument `throw_p'.
14588 (scm_guard): depending on the value of `throw_p', return a boolean
14589 result.
14590 (scm_get_one_zombie): remove redundant property test.
14591 (guardian_t): represent the various (currently 3, I hope nothing
14592 more gets added) boolean fields as bit flags.
14593 (scm_guardian_destroyed_p, scm_guardian_greedy_p): new predicates.
14594 (scm_destroy_guardian_x): new procedure.
14595
14596 * guardians.h: added prototypes for `scm_guardian_greedy_p' and
14597 `scm_guardian_destroyed_p'. changed prototype for `scm_guard'.
14598
0c6d2191
GH
145992001-01-01 Gary Houston <ghouston@arglist.com>
14600
14601 * fports.c (fport_write): bugfix: handle short writes for
14602 unbuffered ports too. optimize the buffered case by minimizing
14603 the number of write/flush calls.
14604 (write_all): new helper procedure.
14605
a51fe247 14606The ChangeLog continues in the file: "ChangeLog-2000"
d9f71a07
LC
14607
14608;; Local Variables:
14609;; coding: utf-8
14610;; End: