* async.h (scm_mask_ints): Removed left over reference to
[bpt/guile.git] / libguile / ChangeLog
1 2005-03-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2
3 * async.h (scm_mask_ints): Removed left over reference to
4 scm_root.
5
6 * threads.c: Removed fprintf debug statements.
7
8 2005-03-24 Neil Jerram <neil@ossau.uklinux.net>
9
10 * debug.c (scm_make_memoized): Restore use of SCM_UNPACK.
11
12 2005-03-23 Neil Jerram <neil@ossau.uklinux.net>
13
14 * debug.c (scm_make_memoized): Remove unnecessary critical
15 section, and simplify by using SCM_RETURN_NEWSMOB.
16
17 2005-03-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
18
19 * strings.h (SCM_STRING_UCHARS): Added missing argument.
20
21 2005-03-18 Kevin Ryde <user42@zip.com.au>
22
23 * arbiters.c (FETCH_STORE) [generic C]: Should be
24 scm_i_scm_pthread_mutex_lock/unlock now. Reported by Ludovic Courtès.
25
26 2005-03-13 Kevin Ryde <user42@zip.com.au>
27
28 * numbers.c, numbers.h (scm_i_clonebig): Remove static, so can use in
29 srfi-60.
30
31 * numbers.c (scm_logior): Must scm_i_normbig results as per scm_logand,
32 because OR-ing bits into a negative can reduce the value to an inum.
33
34 * numbers.c (scm_num_eq_p): On 64-bit systems, be careful about
35 casting inum to double since that can lose precision.
36
37 2005-03-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
38
39 * threads.h, threads.c (scm_i_thread): Added gc_running_p field.
40 (guilify_self_1): Initialize it.
41
42 * gc.h, gc.c (SCM_FREECELL_P): Removed for good.
43 (scm_block_gc, scm_gc_heap_lock): Removed. Removed all uses.
44 (scm_gc_running_p): Now a macro that refers to the scm_i_thread
45 field.
46 (scm_i_sweep_mutex): Now a non-recursive mutex. GC can not happen
47 recursively.
48 (scm_igc, scm_i_gc): Renamed former to latter. Changed all uses.
49 Do not lock scm_i_sweep_mutex, which is now non-recursive, or set
50 scm_gc_running_p. Do not run the scm_after_gc_c_hook.
51 (scm_gc): Lock scm_i_sweep_mutex, set scm_gc_running_p and run the
52 scm_after_gc_c_hook here.
53 (scm_gc_for_new_cell): Set scm_gc_running_p here and run the
54 scm_after_gc_c_hook when a full GC has in fact been performed.
55 (scm_i_expensive_validation_check): Call scm_gc, not scm_i_gc.
56
57 * gc-segment.c (scm_i_get_new_heap_segment): Do not check
58 scm_gc_heap_lock.
59
60 * gc-malloc.c (scm_realloc, increase_mtrigger): Set
61 scm_gc_running_p while the scm_i_sweep_mutex is locked.
62
63 * inline.h (scm_cell, scm_double_cell): Do not check
64 scm_gc_running_p, allocation during sweeping is OK.
65
66 * gdbint.c (SCM_BEGIN_FOREIGN_BLOCK, SCM_END_FOREIGN_BLOCK): Do
67 not set scm_block_gc.
68
69 * init.c (scm_i_init_guile): Do not set scm_block_gc.
70
71 * deprecation.c (scm_c_issue_deprecation_warning): Use malloc
72 instead of scm_malloc. The latter can not be used during GC.
73
74 2005-03-09 Marius Vollmer <mvo@zagadka.de>
75
76 * script.c (scm_compile_shell_switches): Added 2005 to Copyright
77 years.
78
79 2005-03-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
80
81 * gc-card.c (scm_i_sweep_card): Do not increase/decrease
82 scm_gc_running_p. Sweeping can happen in parallel with
83 allocation.
84
85 * inline.h: Updated comments for current threading implementation.
86
87 * threads.h, threads.c (scm_i_frame_single_threaded): Removed.
88 (scm_i_thread): Removed unused signal_asyncs field.
89 (threads_mark): Do not mark it.
90 (guilify_self_1): Do not initialize it. Do initialize
91 continuation_root field.
92 (do_thread_exit): Do not remove thread from all_threads list.
93 (on_thread_exit): Do it here, after leaving guile mode.
94 (sleep_level): Removed.
95 (scm_i_thread_put_to_sleep): Leave thread_admin_mutex locked when
96 returning. Do not support recursive sleeps.
97 (scm_i_thread_wake_up): Expect thread_admin_mutex to be locked on
98 entry. Do not support recursive sleeps.
99
100 * fluids.c (ensure_state_size, ensure_all_state_sizes,
101 resize_all_states): Collapsed ensure_state_size and
102 ensure_all_state_sizes into one function named resize_all_states.
103 Allocate new vectors outside of single threaded region. Do only
104 simple things inside that region.
105 (scm_make_fluid, scm_make_dynamic_state): Lock fluid_admin_mutex
106 while adding to the global lists.
107
108
109 2005-03-08 Marius Vollmer <mvo@zagadka.de>
110
111 libltdl is no longer distributed. We expect it to be installed
112 already.
113
114 * Makefile.am (INCLUDES): Removed @LTDLINCL@.
115 (libguile_la_LIBADD): Removed @LIBLTDL@.
116
117 2005-03-07 Marius Vollmer <mvo@zagadka.de>
118
119 * threads.h, async.h, threads.c (SCM_CRITICAL_SECTION_START,
120 SCM_CRITICAL_SECTION_END): Moved here from threads.h since now
121 they also block/unblock execution of asyncs and call
122 scm_async_click which is declared in async.h but threads.h can not
123 include async.h since async.h already includes threads.h.
124 (scm_i_critical_section_level): New, for checking mistakes in the
125 use of the SCM_CRITICAL_SECTION_* macros.
126 (scm_i_critical_section_mutex): Make it a recursive mutex so that
127 critical sections can be nested.
128
129 * throw.c (scm_ithrow): Abort when scm_i_critical_section_level is
130 not zero.
131
132 * threads.h, threads.c (scm_frame_lock_mutex): New.
133 (scm_frame_critical_section): Take mutex as argument.
134 (framed_critical_section_mutex): New, used as default for above.
135 (scm_init_threads): Initialize it.
136 (scm_threads_prehistory): Do not initialize thread_admin_mutex and
137 scm_i_critical_section_mutex; both are initialized statically.
138
139 * continuation.c, deprecated.c, goops.c, guardians.c keywords.c,
140 libguile_la-arrays.loT, objprop.c, ports.c, smob.c, sort.s,
141 srcprop.c, stime.c, struct.c, throw.c, regex-posix.c: Include
142 "libguile/async.h" for SCM_CRITICAL_SECTION_START/END.
143
144 * debug.c (scm_debug_options): Replace
145 SCM_CRITICAL_SECTION_START/END with a frame and
146 scm_frame_critical_section.
147
148 * continuations.c (scm_make_continuation): No longer a critical
149 section.
150 (scm_dynthrow): Abort when scm_i_critical_section_level is
151 not zero.
152
153 2005-03-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
154
155 * threads.c (scm_try_mutex): Renamed argument for consistency.
156
157 * root.c (scm_call_with_dynamic_root): New docstring.
158
159 * eval.c: Define _GNU_SOURCE.
160
161 2005-03-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
162
163 Big merge from the mvo-thread-cleanup branch. The main changes
164 are:
165
166 - The dynamic roots functionality has been split into dynamic
167 states and continuations barriers. Fluids have been
168 reimplemented and can now be garbage collected.
169
170 - Initialization of Guile now works in a multi-thread friendly
171 manner. Threads can freely enter and leave guile mode.
172
173 - Blocking on mutexes or condition variables or while selecting
174 can now be reliably interrupted via system asyncs.
175
176 - The low-level threading interface has been removed.
177
178 - Signals are delivered via a pipe to a dedicated 'signal delivery
179 thread'.
180
181 - SCM_DEFER_INTS, SCM_ALLOW_INTS etc have been deprecated.
182
183 * throw.c (scm_handle_by_message): Exit only the current thread,
184 not the whole process.
185 (scm_handle_by_message_noexit): Exit when catching 'quit.
186
187 * scmsigs.c (take_signal, signal_delivery_thread,
188 start_signal_delivery_thread, ensure_signal_delivery_thread,
189 install_handler): Reimplemented signal delivery as explained in
190 the comments.
191
192 * pthreads-threads.h (scm_i_pthread_t, scm_i_pthread_self,
193 scm_i_pthread_create, scm_i_pthread_detach, scm_i_pthread_exit,
194 scm_i_sched_yield, scm_i_pthread_sigmask,
195 SCM_I_PTHREAD_MUTEX_INITIALIZER,
196 SCM_I_PTHREAD_RECURSIVE_MUTEX_INITIALIZER, scm_i_pthread_mutex_t ,
197 scm_i_pthread_mutex_init, scm_i_pthread_mutex_destroy,
198 scm_i_pthread_mutex_trylock, scm_i_pthread_mutex_lock,
199 scm_i_pthread_mutex_unlock, SCM_I_PTHREAD_COND_INITIALIZER,
200 scm_i_pthread_cond_t, scm_i_pthread_cond_init,
201 scm_i_pthread_cond_destroy, scm_i_pthread_cond_signal,
202 scm_i_pthread_cond_broadcast, scm_i_pthread_cond_wait,
203 scm_i_pthread_cond_timedwait, scm_i_pthread_once_t,
204 SCM_I_PTHREAD_ONCE_INIT, scm_i_pthread_once, scm_i_pthread_key_t ,
205 scm_i_pthread_key_create, scm_i_pthread_setspecific,
206 scm_i_pthread_getspecific, scm_i_scm_pthread_mutex_lock,
207 scm_i_frame_pthread_mutex_lock, scm_i_scm_pthread_cond_wait,
208 scm_i_scm_pthread_cond_timedwait): Provide the obvious mapping
209 when using pthreads.
210 * null-threads.c, null-threads.h: Provide dummy definitions for
211 the above symbols when not using pthreads.
212
213 * modules.h, modules.c (scm_frame_current_module): New.
214
215 * load.c (scm_primitive_load): Use scm_i_frame_current_load_port
216 instead of scm_internal_dynamic_wind.
217
218 * init.h, init.c (restart_stack, start_stack): Removed.
219 (scm_boot_guile, invoke_main_func): Simply use scm_with_guile.
220 (scm_boot_guile_1): Removed.
221 (scm_i_init_mutex): New.
222 (really_cleanup_for_exit, cleanup_for_exit): New.
223 (scm_init_guile_1, scm_i_init_guile): Renamed former to latter.
224 Moved around some init funcs. Call
225 scm_init_threads_default_dynamic_state. Register cleanup_for_exit
226 with atexit.
227
228 * hashtab.c (scm_hash_fn_create_handle_x, scm_hash_fn_remove_x):
229 Use "!scm_is_eq" instead of "!=".
230
231 * ge-scmconfig.c, gen-scmconfig.h.in (SCM_I_GSC_USE_COOP_THREADS,
232 SCM_USE_COOP_THREADS): Removed.
233
234 * gc.c (scm_igc): Take care that scm_gc_running_p is properly
235 maintained. Unlock scm_i_sweep_mutex before running
236 scm_after_gc_c_hook.
237 (scm_permanent_object): Allocate outside of critical section.
238 (cleanup): Removed.
239
240 * fluids.h, fluids.c: Reimplemented completely.
241 (SCM_FLUID_NUM, SCM_FAST_FLUID_REF,
242 SCM_FAST_FLUID_SET): Reimplemented as functions.
243 (scm_is_fluid): New.
244 (scm_i_make_initial_fluids, scm_i_copy_fluids): Removed.
245 (scm_make_dynamic_state, scm_dynamic_state_p,
246 scm_is_dynamic_state, scm_current_dynamic_state,
247 scm_set_current_dynamic_state, scm_frame_current_dynamic_state,
248 scm_c_with_dynamic_state, scm_with_dynamic_state,
249 scm_i_make_initial_dynamic_state, scm_fluids_prehistory): New.
250
251 * feature.c (progargs_fluid): New.
252 (scm_program_arguments, scm_set_program_arguments): Use it instead
253 of scm_progargs.
254 (scm_init_feature): Allocate it. Also, only add "threads" feature
255 when SCM_USE_PTHREAD_THREADS is true.
256
257 * eval.c (scm_makprom): Use scm_make_recursive_mutex instead of
258 scm_make_rec_mutex, with all the consequences.
259 (scm_eval_x, scm_eval): Use scm_frame_begin etc instead of
260 scm_internal_dynamic_wind. Handle dynamic states as second
261 argument.
262
263 * threads.h, threads.c (scm_internal_select): Renamed to
264 scm_std_select and discouraged old name.
265 (scm_thread_sleep, scm_thread_usleep): Likewise, as scm_std_sleep
266 and scm_std_usleep.
267 (scm_tc16_fair_mutex, scm_tc16_fair_condvar, SCM_MUTEXP,
268 SCM_FAIR_MUTEX_P, SCM_MUTEX_DATA, SCM_CONDVARP,
269 SCM_FAIR_CONDVAR_P, SCM_CONDVAR_DATA, SCM_THREADP,
270 SCM_THREAD_DATA): Removed.
271 (SCM_I_IS_THREAD, SCM_I_THREAD_DATA): New.
272 (scm_i_thread): New.
273 (SCM_VALIDATE_THREAD, SCM_VALIDATE_MUTEX, SCM_VALIDATE_CONDVAR):
274 Use scm_assert_smob_type.
275 (scm_c_scm2thread, scm_thread_join, scm_thread_detach,
276 scm_thread_self, scm_thread_yield, scm_mutex_init,
277 scm_mutex_destroy, scm_mutex_trylock, scm_mutex_unlock,
278 scm_rec_mutex_init, scm_rec_mutex_destroy, scm_make_rec_mutex,
279 scm_rec_mutex_free, scm_rec_mutex_lock, scm_rec_mutex_trylock,
280 scm_cond_init, scm_cond_destroy, scm_cond_wait,
281 scm_cond_timedwait, scm_cond_signal, scm_cond_broadcast,
282 scm_key_create, scm_key_delete, scm_setspecific, scm_getspecific,
283 scm_thread_select): Removed. Replaced with scm_i_pthread
284 functions as appropriate.
285 (scm_in_guile, scm_outside_guile): Removed.
286 (scm_t_guile_ticket, scm_leave_guile, scm_enter_guile): Return and
287 take a ticket.
288 (scm_with_guile, scm_without_guile, scm_i_with_guile_and_parent):
289 New.
290 (scm_i_frame_single_threaded): New.
291 (scm_init_threads_default_dynamic_state): New.
292 (scm_i_create_thread): Removed.
293 (scm_make_fair_mutex, scm_make_fair_condition_variable): Removed.
294 (scm_make_recursive_mutex): New.
295 (scm_frame_critical_section): New.
296 (SCM_CURRENT_THREAD, SCM_I_CURRENT_THREAD): Renamed former to
297 latter, changed all uses.
298 (scm_i_dynwinds, scm_i_setdynwinds, scm_i_last_debug_frame,
299 scm_i_set_last_debug_frame): New, use them instead of scm_root
300 stuff.
301 (SCM_THREAD_LOCAL_DATA, SCM_SET_THREAD_LOCAL_DATA,
302 scm_i_root_state_key,m scm_i_set_thread_data): Removed.
303 (scm_pthread_mutex_lock, scm_frame_pthread_mutex_lock,
304 scm_pthread_cond_wait, scm_pthread_cond_timedwait).
305 (remqueue): Allow the removal of already removed cells. Indicate
306 whether a real removal has happened.
307 (scm_thread): Removed, replaced with scm_i_thread.
308 (make_thread, init_thread_creatant): Removed.
309 (cur_thread): Removed.
310 (block_self, unblock_from_queue): New.
311 (block, timed_block, unblock): Removed.
312 (guilify_self_1, guilify_self_2, do_thread_exit,
313 init_thread_key_once, init_thread_key,
314 scm_i_init_thread_for_guile, get_thread_stack_base,
315 scm_init_guile): New initialisation method.
316 (scm_call_with_new_thread, scm_spawn_thread): Use it to simplify
317 thread creation.
318 (fair_mutex, fat_mutex, etc, fair_condvar, fat_condvar): Renamed
319 "fair" to fat and implemented new semantics, including reliable
320 interruption.
321 (all_threads): Now a pointer to a scm_i_thread, not a SCM.
322 (scm_threads_mark_stacks): Explicitly mark handle.
323 (scm_std_select): Allow interruption by also selecting on the
324 sleep_pipe.
325 (scm_i_thread_put_to_sleep): Handle recursive requests for
326 single-threadedness.
327 (scm_threads_prehistory, scm_init_threads): Put current thread
328 into guile mode via guileify_self_1 and guileify_self_2,
329 respectively.
330
331 * fluid.h (SCM_FLUIDP): Deprecated.
332
333 * coop-threads.c: Removed.
334
335 * continuations.h, continuations.c (scm_with_continuation_barrier,
336 scm_c_with_continuation_barrier, scm_i_with_continuation_barrier):
337 New.
338
339 * async.h, async.c (scm_i_setup_sleep, scm_i_reset_sleep): New.
340 (async_mutex): New.
341 (scm_async_click): Protected with async_mutex. Do not deal with
342 signal_asyncs, which are gone. Set cdr of handled async cell to
343 #f.
344 (scm_i_queue_async_cell): Protected with async_mutex. Interrupt
345 current sleep.
346 (scm_system_async_mark_for_thread): Do not use scm_current_thread
347 since that might not work during early initialization.
348
349 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS, SCM_REDEFER_INTS,
350 SCM_REALLOW_INTS): Deprecated by moving into deprecated.h and
351 deprecated.c. Replaced all uses with SCM_CRITICAL_SECTION_START
352 and SCM_CRITICAL_SECTION_END.
353 (SCM_ENTER_A_SECTION, SCM_EXIT_A_SECTION): Removed. Replaced with
354 SCM_CRITICAL_SECTION_START/END.
355
356 * Makefile.am (modinclude_HEADER): Removed threads-plugin.h.
357 (libguile_la_SOURCES): Added null-threads.c
358 (EXTRA_libguile_la_SOURCES): Removed pthread-threads.c and
359 threads-plugin.c.
360 * pthread-threads.c, threads-plugin.c, threads-plugin.h: Removed.
361
362 * root.h, root.c (scm_tc16_root, SCM_ROOTP, SCM_ROOT_STATE,
363 scm_root_state, scm_stack_base, scm_save_regs_gc_mark,
364 scm_errjmp_bad, scm_rootcont, scm_dynwinds, scm_progargs,
365 scm_last_debug_frame, scm_exitval, scm_cur_inp, scm_outp,
366 scm_cur_err, scm_cur_loadp, scm_root, scm_set_root,
367 scm_make_root): Removed or deprecated. Replaced with references
368 to the current thread, dynamic state, continuation barrier, or
369 some fluid, as appropriate.
370 (root_mark, root_print): Removed.
371 (scm_internal_cwdr): Reimplemented guts with
372 scm_frame_current_dynamic_state and
373 scm_i_with_continuation_barrier.
374 (scm_dynamic_root): Return current continuation barrier.
375
376
377 2005-02-28 Marius Vollmer <mvo@zagadka.de>
378
379 * socket.c (scm_setsockopt): Handle IP_ADD_MEMBERSHIP and
380 IP_DROP_MEMBERSHIP options. Also, reorganized the code a bit for
381 cleanliness.
382 (scm_init_socket): Define IP_ADD_MEMBERSHIP and
383 IP_DROP_MEMBERSHIP.
384 Thanks to Greg Troxel!
385
386 2005-02-27 Mikael Djurfeldt <djurfeldt@nada.kth.se>
387
388 * gh.h: Bugfix: Include <libguile.h> outside of the extern "C"
389 block.
390
391 2005-02-25 Marius Vollmer <mvo@zagadka.de>
392
393 * hashtab.c (scm_i_rehash): Remove elements from old bucket vector
394 so that no two weak alist vectors share a spine.
395 (scm_hash_fn_create_handle_x): Deal with a possible rehashing
396 during GC before inserting the new alist cell.
397
398 2005-02-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
399
400 * hashtab.c (scm_i_rehash): Cope with the case that a GC modifies
401 the hashtable.
402 (scm_hash_fn_create_handle_x): Likewise.
403 * vectors.h (SCM_I_SET_WVECT_TYPE): New, for use in scm_i_rehash.
404
405 2005-02-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
406
407 * unif.c (prototype_to_type): Bugfix: Don't compare prototype to
408 the prototypical examples mentioned in the old reference manual.
409 Instead keep the old semantics of dispatching on type. (Yes, this
410 is extremely ugly, but the whole point of keeping the deprecated
411 interface is not to break old code.)
412
413 2005-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
414
415 * deprecated.h (SCM_ARRAY_DIMS): Rename scm_i_attay_dims -->
416 scm_i_array_dims.
417
418 2005-01-28 Kevin Ryde <user42@zip.com.au>
419
420 * numbers.c (scm_ash): Rewrite using shifts, much faster than
421 integer-expt and multiply/divide. Inexacts and fractions no longer
422 supported (they happened to work before for left shifts, but not
423 right). Don't really need inexacts and fractions, since ash is
424 documented as a "bitwise operation", and all the rest of those only
425 take exact integers.
426
427 2005-01-27 Han-Wen Nienhuys <hanwen@xs4all.nl>
428
429 * gc-card.c (scm_i_card_statistics): map structs, closures and
430 subrs to one tag.
431
432 * gc.c (s_scm_gc_live_object_stats): return alist, not hashtable.
433 (tag_table_to_type_alist): ignore unknown types.
434
435 * gc-segment.c (scm_i_all_segments_statistics): new function.
436 (scm_i_heap_segment_statistics): new function
437
438 * gc.c (s_scm_gc_live_object_stats): new GUILE callable: return
439 statistics on the number of live objects of each type.
440
441 * gc-card.c (scm_i_tag_name): new function.
442 (scm_i_card_statistics): new function.
443
444 2005-01-24 Kevin Ryde <user42@zip.com.au>
445
446 * posix.c (scm_setlocale): Force errno=EINVAL for an error, since
447 POSIX and C99 don't document errno being set. Reported by Bruno
448 Haible.
449 (scm_flock): Update docstring from manual.
450
451 * random.c (scm_i_init_rstate): Compare w to -1 not 0xffffffffUL, now
452 that it's an scm_t_int32. Otherwise gcc 3.4 says it's always false on
453 a 64-bit system.
454
455 * scmsigs.c (scm_sigaction_for_thread): Use scm_to_long for
456 sa_handler, needs to be a long on 64-bit systems where int is only 32
457 bits.
458
459 2005-01-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
460
461 * environments.c (obarray_enter, obarray_replace): Call
462 SCM_HASHTABLE_INCREMENT when adding a new entry.
463
464 * objects.c: Include goops.h for the scm_class_of prototype.
465
466 * hashtab.c (hashtable_size, HASHTABLE_SIZE_N): Restrict hashtable
467 sizes to be smaller than the maximum lengths of vectors.
468
469 2005-01-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
470
471 * ports.c, smob.c: Include "libguile/goops.h".
472
473 * objects.h, objects.c, goops.c, goops.h (scm_class_boolean,
474 scm_class_char, scm_class_pair, scm_class_procedure,
475 scm_class_string, scm_class_symbol,
476 scm_class_procedure_with_setter, scm_class_primitive_generic,
477 scm_class_vector, scm_class_null, scm_class_real,
478 scm_class_complex, scm_class_integer, scm_class_fraction,
479 scm_class_unknown, scm_port_class, scm_smob_class,
480 scm_no_applicable_method, scm_class_of): Moved from objects to
481 goops since they are only useable once goops has been loaded.
482 (scm_classes_initialized): Removed.
483 (scm_class_of): Do not check it.
484 (create_standard_classes): Do not set it.
485
486 2005-01-17 Marius Vollmer <marius.vollmer@uni-dortmund.de>
487
488 * objects.h, objects.c (scm_classes_initialized): New.
489 (scm_class_of): Signal error when scm_classes_initialized is zero.
490 * goops.c (create_standard_classes): Set scm_classes_initialized
491 to one.
492
493 * random.c (scm_random_solid_sphere_x): Use
494 scm_c_generalized_vector_length instead of
495 scm_uniform_vector_length.
496
497 2005-01-16 Marius Vollmer <mvo@zagadka.de>
498
499 * script.c (scm_compile_shell_switches): Removed debugging output.
500
501 2005-01-15 Kevin Ryde <user42@zip.com.au>
502
503 * numbers.c (scm_logtest, scm_logbit_p, scm_integer_expt): Update
504 docstrings from manual.
505 * random.c (scm_random_solid_sphere_x): Update docstring from manual.
506
507 2005-01-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
508
509 * random.c: Don't check for definedness of SCM_HAVE_T_INT64, check
510 its value.
511
512 Implement u64 and s64 uniform numeric vectors with bignums when
513 scm_t_uint64 and scm_t_int64 are not available.
514
515 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_take_u64vector,
516 scm_array_handle_u64_elements,
517 scm_array_handle_u64_writable_elements, scm_u64vector_elements,
518 scm_u64vector_writable_elements): Do not define when scm_t_uint64
519 is not available.
520 (scm_take_s64vector, scm_array_handle_s64_elements,
521 scm_array_handle_s64_writable_elements, scm_s64vector_elements,
522 scm_s64vector_writable_elements): Likewise for scm_t_int64.
523 (uvec_sizes, uvec_print, uvec_equalp): Use SCM bignums when
524 scm_t_int64/scm_t_uint64 are not available.
525 (uvec_mark): New, to mark the bignums.
526 (alloc_uvec): Initialize bignums.
527 (uvec_fast_ref): Return bignums directly.
528 (scm_uint64_min, scm_uint64_max, scm_int64_min, scm_int64_max,
529 assert_exact_integer): New.
530 (uvec_fast_set): Use them to validate the bignums.
531 (scm_init_srfi_4): Set mark function of smob when needed.
532 Initialize scm_uint64_min, scm_uint64_max, scm_int64_min,
533 scm_int64_max.
534
535 Recognize 1.4 -e syntax.
536
537 * script.c (sym_at, sym_atat, sym_main, all_symbols): New.
538 (scm_compile_shell_switches): Use them to recognize and convert
539 1.4 "-e" syntax.
540
541 2005-01-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
542
543 * deprecated.h, deprecated.c, strings.h, strings.c: Turn all
544 deprecated features that once were macros but are now functions
545 back into macros.
546
547 2005-01-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
548
549 * eval.c, debug.h (SCM_WARN_DEPRECATED): New debug option.
550 * deprecation.c (scm_issue_deprecation_warning,
551 scm_c_issue_deprecation_warning_fmt): Use it.
552 (mode): Removed.
553 (print_summary): New.
554 (scm_init_deprecation): Initialize SCM_WARN_DEPRECATED instead of
555 mode.
556
557 Deprecated SCM_ARRAY* macros.
558
559 * unif.h, unif.c, ramap.c, vectors.c, srfi-4.c, srfi-4.i.c
560 (SCM_ARRAYP, SCM_I_ARRAYP): Renamed former to latter internal
561 version. Changed all uses.
562 (scm_tc16_array, scm_i_tc16_array,
563 scm_tc16_enclosed_array, scm_i_tc16_enclosed_array,
564 SCM_ARRAY_FLAG_CONTIGUOUS, SCM_I_ARRAY_FLAG_CONTIGUOUS,
565 SCM_ENCLOSE_ARRAYP, SCM_I_ENCLOSE_ARRAYP,
566 SCM_ARRAY_NDIM, SCM_I_ARRAY_NDIM,
567 SCM_ARRAY_CONTP, SCM_I_ARRAY_CONTP,
568 SCM_ARRAY_MEM, SCM_I_ARRAY_MEM,
569 SCM_ARRAY_V, SCM_I_ARRAY_V,
570 SCM_ARRAY_BASE, SCM_I_ARRAY_BASE,
571 SCM_ARRAY_DIMS, SCM_I_ARRAY_DIMS,
572 scm_t_array, scm_i_t_array): Likewise.
573 (SCM_SET_ARRAY_CONTIGUOUS_FLAG, SCM_CLR_ARRAY_CONTIGUOUS_FLAG):
574 Moved from unif.h to unif.c.
575 (scm_c_array_rank): New.
576 (scm_array_rank): Reimplement using it.
577
578 * deprecated.h, deprecated.c (SCM_ARRAYP, SCM_ARRAY_NDIM,
579 SCM_ARRAY_CONTP, SCM_ARRAY_MEM, SCM_ARRAY_V, SCM_ARRAY_BASE,
580 SCM_ARRAY_DIMS, scm_t_array): New deprecated versions.
581
582 2005-01-11 Marius Vollmer <mvo@zagadka.de>
583
584 * ramap.c: Replace uses of scm_make_ra with scm_i_make_ra.
585 (GVREF, GVSET): New abbreviations. Use them everywhere instead of
586 scm_c_generalized_vector_ref and scm_cvref, and
587 scm_c_generalized_vector_set_x, respectively.
588 (RVREF, IVDEP, BINARY_ELTS_CODE, BINARY_PAIR_ELTS_CODE,
589 UNARY_ELTS_CODE, UNARY_PAIR_ELTS_CODE): Removed since unused.
590
591 * unif.h, unif.c (indices_to_pos, scm_array_handle_pos): Renamed
592 former to latter and made public. Changed all uses.
593 (scm_i_make_ra): Made public, changed tag param to enclosed flag.
594 (scm_make_ra): Deprecated, changed all uses to scm_i_make_ra.
595 (scm_i_shap2ra): New internal version of scm_shap2ra.
596 (scm_shap2ra): Deprecated, changed all uses to scm_i_shap2ra.
597 (scm_i_ra_set_contp): New internal version of scm_ra_set_contp.
598 (scm_ra_set_contp): Deprecated, changed all uses to
599 scm_i_ra_set_contp.
600 (scm_cvref, scm_aind, scm_raprin1): Deprecated.
601
602 2005-01-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
603
604 * eval.c (scm_eval): Added example to docstring. Thanks to Issac
605 Trotts!
606
607 * unif.c (scm_list_to_typed_array): Allow the specification of the
608 upper bound as well. This is needed for empty arrays.
609 (l2ra): Give needed number of elements in error message.
610 (scm_i_print_array): Print length information for arrays that need
611 it.
612 (scm_i_read_array): Parse it.
613
614 * deprecated.h, deprecated.c (SCM_CHARS, SCM_UCHARS, SCM_LENGTH,
615 scm_i_object_chars, scm_i_object_length): Brought back from the
616 dead.
617
618 2005-01-10 Marius Vollmer <mvo@zagadka.de>
619
620 * ramap.c: Replaced single-index uses of scm_array_set_x with
621 scm_c_generalized_vector_set_x.
622
623 * unif.c (scm_array_rank, scm_array_dimensions,
624 scm_shared_array_offset, scm_shared_array_increments,
625 scm_array_ref, scm_array_set_x): Use scm_t_array_handle operations
626 to simplify code and make it more general.
627 (scm_shared_array_root): Work with all kinds of arrays, including
628 naked vectors.
629 (indices_to_pos): New.
630 (scm_make_shared_array): Use it instead of scm_aind; use handle
631 for oldra.
632
633 2005-01-10 Kevin Ryde <user42@zip.com.au>
634
635 * posix.c (scm_mkstemp): Update docstring from manual.
636
637 * stime.c (scm_mktime): Missing default errno=EINVAL from prev change.
638
639 2005-01-09 Marius Vollmer <mvo@zagadka.de>
640
641 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_i_uniform_vector_ref_proc,
642 scm_i_uniform_vector_set_proc): New.
643 (u8ref, u8set, s8ref, s8set, etc): New.
644 (uvec_reffers, uvec_setters): New.
645 (uvec_to_list): Use generic scm_array_handle_ref instead of
646 uvec_fast_ref since scm_array_handle_ref should be faster now.
647 (coerce_to_uvec, scm_c_uniform_vector_ref,
648 scm_c_uniform_vector_set_x): Likewise.
649
650 * unif.h, unif.c, inline.h (scm_i_t_array_ref, scm_i_t_array_set):
651 New.
652 (scm_t_array_handle): Added ref, set, elements and
653 writable_elements for fast inline operation of
654 scm_array_handle_ref and scm_array_handle_set.
655 (scm_array_handle_ref, scm_array_handle_set): Moved to inline.h
656 and replaced with inline code that simply calls the ref/set
657 members of the handle.
658 (enclosed_ref, vector_ref, string_ref, bitvector_ref, memoize_ref,
659 enclosed_set, vector_set, string_set, bitvector_set, memoize_set):
660 New.
661 (scm_array_handle_get): Initialize ref/set fields to memoize_ref
662 and memoize_set.
663 (scm_bitvector_fill_x, scm_bitvector_to_list, scm_bit_count,
664 scm_bit_position, scm_bit_set_star_x, scm_bit_count_star,
665 scm_bit_invert_x): Correctly multiply index with increment in the
666 general case.
667
668 * unif.c (scm_array_handle_set): Correctly execute only one
669 alternative. D'Oh!
670 (scm_list_to_typed_array, l2ra): Use scm_t_array_handle to fill
671 the array; this covers all cases with much simpler code.
672
673 * srfi-4.c (scm_uniform_element_size): Deprecated implementation
674 as well.
675
676 2005-01-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
677
678 * srfi-4.c (uvec_type): New.
679 (uvec_to_list, uvec_ref, uvec_set_x, scm_c_uniform_vector_ref,
680 scm_c_uniform_vector_x): Use it to get concrete type.
681
682 * unif.h (scm_t_array_dim): Changed type of members to ssize_t, to
683 fit the docs.
684
685 * unif.c (ra2l): Handle zero rank arrays.
686 (scm_i_print_array): Print zero rank arrays specially.
687 (tag_to_type): Return #t for an empty tag, not the empty symbol.
688 (scm_i_read_array): Allow zero rank arrays.
689
690 2005-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
691
692 * hashtab.h, hashtab.c (SCM_HASHTAB_BUCKET_LOC): Removed.
693 (scan_weak_hashtables): Rewrote its use with SCM_HASHTAB_BUCKET
694 and SCM_SET_HASHTAB_BUCKET.
695
696 * print.h, print.c (scm_print_state, SCM_PRINT_STATE_LAYOUT):
697 Removed ref_stack field.
698 (PSTATE_STACK_REF, PSTATE_STACK_SET): New, for accessing the stack
699 of a print state. Use them everywhere instead of ref_stack.
700
701 * srfi-4.h (scm_uniform_element_size): Deprecated for real.
702
703 * srfi-4.c: Include deprecation.h.
704
705 * vectors.h, vectors.c, unif.h, unif.c, deprecated.h,
706 deprecated.c, eq.c
707 (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR): Removed.
708 (scm_vector_elements, scm_vector_writable_elements,
709 scm_generalized_vector_get_handle): Moved to vectors.[hc] from
710 unif.[hc].
711 (SCM_SIMPLE_VECTOR_LOC): Removed.
712 (SCM_VECTOR_MAX_LENGTH, SCM_VECTOR_LENGTH, SCM_VELTS,
713 SCM_WRITABLE_VELTS, SCM_VECTOR_REF, SCM_VECTOR_SET,
714 scm_vector_equal_p): Moved from vectors.[hc] to deprecated.[hc].
715 (scm_vector_equal_p, scm_i_vector_equal_p): Renamed former to
716 latter. Changed use in eq.c.
717
718 2005-01-07 Marius Vollmer <mvo@zagadka.de>
719
720 Make the uniform vector routines also deal with one dimensional
721 arrays.
722
723 * srfi-4.c (SCM_IS_UVEC): New, use it instead of
724 SCM_SMOB_PREDICATE in this file.
725 (is_uvec): Also recognize one-dimensional uniform numeric arrays
726 of the right type.
727 (scm_is_uniform_vector): Likewise.
728 (uvec_fast_ref): Made BASE param const.
729 (uvec_writable_elements, uvec_elements): New.
730 (uvec_to_list, uvec_ref, uvec_set_x, uvec_length,
731 scm_c_uniform_vector_length, scm_c_uniform_vector_ref,
732 scm_c_uniform_set_x): Use them to also deal with one-dimensional
733 arrays.
734 (scm_uniform_vector_ref, scm_uniform_vector_set_x): Deprecate old
735 argument convention.
736 (scm_uniform_vector_to_list): Let uvec_to_list do all the
737 checking.
738 (scm_uniform_vector_length): Use uvec_length.
739
740 2005-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
741
742 * srfi-4.h, srfi-4.c (scm_c_uniform_vector_element_size,
743 scm_c_uniform_vector_size): Removed.
744 (scm_array_handle_uniform_element_size): New.
745
746
747 * unif.h (scm_array_handle_ref, scm_array_handle_set): Changed
748 type of POS parameter to be signed, positions can be negative.
749 (scm_array_handle_release): New, changed all uses of
750 scm_t_array_handle to properly call it.
751 (scm_vector_get_handle, scm_generalized_vector_get_handle):
752 Renamed former to latter, changed all uses.
753
754 2005-01-05 Marius Vollmer <mvo@zagadka.de>
755
756 Updated bitvector routines to also use scm_t_array_handles.
757
758 * unif.h (scm_bitvector_elements,
759 scm_bitvector_writable_elements): Use a scm_t_array_handle and
760 deliver offset, length and increment to caller. Changed all uses.
761 (scm_bitvector_release_elements,
762 scm_frame_bitvector_release_elements,
763 scm_bitvector_release_writable_elements,
764 scm_frame_bitvector_release_writable_elements): Removed.
765 (scm_array_handle_bit_elements,
766 scm_array_handle_bit_writable_elements,
767 scm_array_handle_bit_elements_offset): New.
768 (scm_make_typed_array): The special value for non-initialized
769 arrays is now SCM_UNSPECIFIED. The old special value SCM_BOOL_F
770 was a valid value to fill bitvectors with, so it can't really be
771 specialed out.
772
773 2005-01-04 Kevin Ryde <user42@zip.com.au>
774
775 * stime.c (scm_strftime): Free t.tm_zone produced by bdtime2c.
776 Reported by Bill Schottstaedt.
777
778 2005-01-02 Marius Vollmer <mvo@zagadka.de>
779
780 * sort.c (quicksort): Added INC parameter for non-contigous
781 vectors.
782 (quicksort1): New, for contigous vectors. Both functions are
783 generated from the same code by including "quicksort.i.c".
784 (scm_restricted_vector_sort_x): Call one of quicksort and
785 quicksort1, depending on increment of vector.
786 (scm_sort): Simply call scm_sort_x on a copy of the list or
787 vector.
788 (scm_merge_vector_x, scm_merge_vector_step): Changed indices to
789 size_t, added inc parameter.
790 (scm_stable_sort_x): Allocate temporary storage as Scheme vector
791 so that it doesn't leak.
792 (scm_stable_sort): Simply call scm_stable_sort_x on a copy of the
793 list or vector.
794
795 * ramap.c (scm_array_map_x): Do not try to convert fill value
796 before filling, any necessary conversion is done while storing.
797
798 * gc-card.c (scm_i_sweep_card): Call scm_i_vector_free instead of
799 doing it inline.
800
801 * hashtab.c, hashtab.h (SCM_HASHTABLE_BUCKETS): Removed.
802 (SCM_HASHTABLE_BUCKET, SCM_HASHTABLE_BUCKET_LOC): New. Replaced
803 all uses of SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
804
805 * tags.h, weaks.c, vports.c, hashtab.c, convert.c, sort.c,
806 convert.c, convert.h, convert.i.c, deprecated.c, environments.c,
807 eval.c, filesys.c, fluids.c, gc-mark.c, gh.h, gh_data.c, goops.c,
808 hash.c, init.c, libguile_la-arrays.loT, modules.c, net_db.c,
809 objects.c, ports.c, posix.c, print.c, random.c, read.c,
810 regex-posix.c, scmsigs.c, socket.c, stime.c, symbols.c: Use new
811 vector elements API or simple vector API, as appropriate. Removed
812 SCM_HAVE_ARRAYS ifdefery. Replaced all uses of
813 SCM_HASHTABLE_BUCKETS with SCM_HASHTABLE_BUCKET.
814
815 * srfi-4.h, srfi-4.c,
816 srfi-4.i.c (scm_array_handle_uniform_elements,
817 scm_array_handle_uniform_writable_elements,
818 scm_uniform_vector_elements,
819 scm_uniform_vector_writable_elements):
820 (scm_<foo>vector_elements, scm_<foo>vector_writable_elements): Use
821 scm_t_array_handle, deliver length and increment.
822 (scm_array_handle_<foo>_elements,
823 scm_array_handle_<foo>_writable_elements): New.
824
825 * gen-scmconfig.h.in (SCM_I_GSC_HAVE_ARRAYS): Removed.
826 * gen-scmconfig.c: Hard code SCM_HAVE_ARRAYS to "1".
827
828 * unif.h, unif.c (scm_t_array_handle, scm_array_get_handle,
829 scm_array_handle_rank, scm_array_handle_dims, scm_array_handle_ref
830 scm_array_handle_set, scm_array_handle_elements
831 scm_array_handle_writable_elements, scm_vector_get_handle): New.
832 (scm_make_uve, scm_array_prototype, scm_list_to_uniform_array,
833 scm_dimensions_to_uniform_array): Deprecated for real.
834 (scm_array_p, scm_i_array_p): Use latter for SCM_DEFINE since
835 snarfing wont allow a mismatch between C and Scheme arglists.
836 (scm_make_shared_array, scm_enclose_array): Correctly use
837 scm_c_generalized_vector_length instead of
838 scm_uniform_vector_length.
839
840 * validate.h (SCM_VALIDATE_VECTOR,
841 SCM_VALIDATE_VECTOR_OR_DVECTOR): use scm_is_simple_vector instead
842 of SCM_VECTORP.
843
844 * weaks.h, weaks.c: Use new internal weak vector API from
845 vectors.h.
846
847 * Makefile.am (libguile_la_SOURCES, DOT_X_FILES, DOT_DOC_FILES,
848 EXTRA_libguile_la_SOURCES): Changed ramap.c and unif.c from being
849 'extra' to being regular sources.
850 (noinst_HEADERS): Added quicksort.i.c.
851 * quicksort.i.c: New file.
852
853 * vectors.h, vector.c (SCM_VECTORP, SCM_VECTOR_LENGTH, SCM_VELTS,
854 SCM_WRITABLE_VELTS, SCM_VECTOR_REF, SCM_VECTOR_SET): Deprecated
855 and reimplemented. Replaced all uses with scm_vector_elements,
856 scm_vector_writable_elements, or SCM_SIMPLE_VECTOR_*, as
857 appropriate.
858 (scm_is_simple_vector, SCM_SIMPLE_VECTOR_LENGTH,
859 SCM_SIMPLE_VECTOR_REF, SCM_SIMPLE_VECTOR_SET,
860 SCM_SIMPLE_VECTOR_LOC): New.
861 (SCM_VECTOR_BASE, SCM_SET_VECTOR_BASE, SCM_VECTOR_MAX_LENGTH,
862 SCM_MAKE_VECTOR_TAG, SCM_SET_VECTOR_LENGTH,
863 SCM_VELTS_AS_STACKITEMS, SCM_SETVELTS, SCM_GC_WRITABLE_VELTS):
864 Removed.
865 (scm_vector_copy): New.
866 (scm_vector_elements, scm_vector_writable_elements): Use
867 scm_t_array_handle, deliver length and increment. Moved to
868 unif.h. Changed all uses.
869 (scm_vector_release_elements,
870 scm_vector_release_writable_elements,
871 (scm_frame_vector_release_elements,
872 scm_frame_vector_release_writable_elements): Removed.
873 (SCM_I_IS_VECTOR, SCM_I_VECTOR_ELTS, SCM_I_VECTOR_WELTS,
874 SCM_I_VECTOR_LENGTH, scm_i_vector_free): New internal API.
875 (SCM_I_WVECTP SCM_I_WVECT_LENGTH SCM_I_WVECT_VELTS
876 SCM_I_WVECT_GC_WVELTS SCM_I_WVECT_TYPE SCM_I_WVECT_GC_CHAIN
877 SCM_I_SET_WVECT_GC_CHAIN, scm_i_allocate_weak_vector): New, for
878 weak vectors.
879
880 2004-12-29 Marius Vollmer <mvo@zagadka.de>
881
882 No longer use creators to specify the type of an array. Creators
883 expose the fact that arrays are wrapped around vectors, but that
884 might change.
885
886 * srfi-4.h (scm_i_proc_make_u8vector, scm_i_proc_make_s8vector,
887 scm_i_proc_make_u16vector, scm_i_proc_make_s16vector,
888 scm_i_proc_make_u32vector, scm_i_proc_make_s32vector,
889 scm_i_proc_make_u64vector, scm_i_proc_make_s64vector,
890 scm_i_proc_make_f32vector, scm_i_proc_make_f64vector,
891 scm_i_proc_make_c32vector, scm_i_proc_make_c64vector,
892 uvec_proc_vars): Removed.
893 (scm_i_generalized_vector_creator): Removed.
894 (scm_i_generalized_vector_type): New.
895
896 * unif.h, unif.c (scm_typed_array_p, scm_make_array,
897 scm_make_typed_array, scm_array_type, scm_list_to_array,
898 scm_list_to_typed_array, scm_is_array, scm_is_typed_array): New.
899 (scm_array_creator): Removed.
900 (scm_array_p): Deprecated second PROT argument.
901 (scm_dimensions_to_uniform_array, scm_list_to_uniform_array):
902 Deprecated, reimplemented in terms of scm_make_typed_array and
903 scm_list_to_typed_array.
904 (scm_i_proc_make_vector, scm_i_proc_make_string,
905 scm_i_proc_make_bitvector): Removed.
906 (type_creator_table, init_type_creator_table, type_to_creator,
907 make_typed_vector): New.
908 (scm_i_convert_old_prototype): Removed.
909 (prototype_to_type): New.
910 (scm_make_uve): Deprecated, reimplemented using make_typed_vector.
911 (scm_array_dimensions): Use scm_list_1 instead of scm_cons for
912 minor added clarity.
913 (scm_make_shared_array, scm_ra2contig): Use make_typed_vector
914 instead of scm_make_uve.
915 (tag_creator_table, scm_i_tag_to_creator): Removed.
916 (tag_to_type): New.
917 (scm_i_read_array): Use scm_list_to_typed_array instead of
918 scm_list_to_uniform_array.
919
920 2004-12-27 Marius Vollmer <mvo@zagadka.de>
921
922 * unif.h, unif.c (scm_bitvector_elements): Made return value "const".
923 (scm_bitvector_writable_elements): New.
924 (scm_bitvector_release, scm_bitvector_release_elements):
925 Renamed former to latter. Added explicit call to
926 scm_remember_upto_here_1.
927 (scm_frame_bitvector_release,
928 scm_frame_bitvector_release_elements): Renamed former to latter.
929 (scm_bitvector_release_writable_elements,
930 scm_bitvector_release_writable_elements): New.
931 Changed all uses as required by the changes above.
932
933 * srfi-4.h, srfi-4.c, srfi-4.i.c (scm_uniform_vector_elements,
934 scm_u8vector_elements, etc): Made return value "const".
935 (scm_uniform_vector_writable_elements,
936 scm_u8vector_writable_elements, etc): New.
937 (scm_uniform_vector_release, scm_uniform_vector_release_elements):
938 Renamed former to latter. Added explicit call to
939 scm_remember_upto_here_1.
940 (scm_frame_uniform_vector_release,
941 scm_frame_uniform_vector_release_elements): Renamed former to latter.
942 (scm_uniform_vector_release_writable_elements,
943 scm_frame_uniform_vector_release_writable_elements): New. Takes
944 crown of longest identifier yet.
945 Changed all uses as required by the changes above.
946
947 * vectors.h, vectors.c (scm_c_vector_set_x): Make return type
948 void.
949 (scm_is_vector, scm_vector_p, scm_vector_length,
950 scm_c_vector_length, scm_vector_ref, scm_c_vector_ref,
951 scm_vector_set_x, scm_c_vector_set_x, scm_vector_to_list,
952 scm_vector_move_left_x, scm_vector_move_right_x,
953 scm_vector_fill_x): handle one-dimensional arrays.
954 (scm_vector_elements, scm_vector_release_elements,
955 scm_vector_frame_release_elements, scm_vector_writable_elements,
956 scm_vector_release_writable_elements,
957 scm_vector_frame_release_writable_elements): New.
958 (scm_list_to_vector, scm_vector_to_list, scm_vector_fill,
959 scm_vector_move_left_x, scm_vector_move_right_x): Use them.
960
961 * ramap.c (scm_ramapc, scm_raeql): Use
962 scm_c_generalized_vector_length instead of
963 scm_uniform_vector_length.
964 (scm_ramap, rafe): Use scm_c_vector_ref instead of SCM_VELTS. use
965 scm_c_generalized_vector_ref instead of scm_uniform_vector_ref.
966
967 2004-12-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
968
969 * continuations.h, continuations.c (scm_t_contregs): New 'offset'
970 member for relocating debug frames.
971 (scm_make_continuation): Set it.
972
973 * stacks.c (read_frame, read_frames, scm_make_stack,
974 scm_last_stack_frame, scm_stack_id): Use the new 'offset' member
975 of continuations instead of calculating the offset ourselves.
976 Relocate 'vect' member of scm_t_debug_frame.
977
978 2004-12-16 Kevin Ryde <user42@zip.com.au>
979
980 * ramap.c (scm_array_map_x): Check for at least one source argument.
981
982 2004-12-14 Kevin Ryde <user42@zip.com.au>
983
984 * srfi-13.c (string-any, string-every): Use a scheme wrapper around
985 the C code so for the final call to the predicate procedure is a tail
986 call, per SRFI-13 spec.
987
988 2004-12-10 Kevin Ryde <user42@zip.com.au>
989
990 * eq.c (scm_eq_p, scm_eqv_p, scm_equal_p): Update docstrings from
991 recent revision to the reference manual.
992
993 * numbers.c (scm_modulo): Amend fixme comment about negative divisor
994 with "%", C99 says it's well-defined.
995
996 * socket.c (scm_from_ipv6): Just use mpz_import. Don't bother trying
997 to fit scm_from_ulong_long, since that uses mpz_import anyway. Don't
998 bother trying to fit scm_from_ulong, not really worth the trouble if
999 addresses are more than 4 bytes usually.
1000
1001 2004-11-30 Kevin Ryde <user42@zip.com.au>
1002
1003 * gc_os_dep.c (NetBSD): Test __m68k__ and __arm__ as well as m68k and
1004 arm32. Reported by Greg Troxel.
1005
1006 2004-11-14 mvo <mvo@zagadka.de>
1007
1008 * unif.c, unif.h (scm_i_cvref): Made non-static for ramap.c.
1009
1010 * Makefile.am (INCLUDES): It is "@LTDLINCL@", not "@LTDLINC@".
1011
1012 2004-11-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1013
1014 Enclosed arrays are now their own smob. This has been done to
1015 make the code more explicit about them and to prepare for the time
1016 when generalized vectors include arbitrary one-dimensional
1017 arrays. (Uptonow, enclosed arrays have been recognized by their
1018 use of an array as their storage 'vector'. When all generalized
1019 vectors are allowed as storage, including one-dimensional arrays,
1020 this will no longer work.)
1021
1022 * unif.h, unif.c: (scm_tc16_enclosed_array, SCM_ENCLOSED_ARRAYP):
1023 New.
1024 (exactly_one_third, singp): Removed.
1025 (scm_array_p, scm_array_dimensions, scm_shared_array_root,
1026 scm_shared_array_offset, scm_shared_array_increments): Handle
1027 enclosed arrays explicitely.
1028 (scm_array_rank): Likewise. Also, do not return zero for
1029 non-arrays, signal an error instead since arrays with rank zero do
1030 exist.
1031 (scm_i_make_ra): New, for specifying the tag of the new array.
1032 (scm_make_enclosed_array): Use it.
1033 (scm_make_ra): Reimplemented in terms of scm_i_make_ra.
1034 (scm_make_shared_array): Use scm_c_generalized_vector_length
1035 instead of scm_uniform_vector_length.
1036 (scm_array_in_bounds_p): Rewritten to be much cleaner.
1037 (scm_i_cvref): New, doing the job of scm_cvref.
1038 (scm_cvref): Use scm_i_cvref.
1039 (scm_array_ref): Do not accept non-arrays when no indices are
1040 given. Use scm_i_cvref to do the actual access.
1041 ("uniform-array-set1"): Do not register.
1042 (scm_array_set_x, scm_uniform_array_read_x,
1043 scm_uniform_array_write): Handle enclosed arrays explicitly.
1044 (ra2l): Use scm_i_cvref instead of scm_uniform_vector_ref to also
1045 handle enclosed arrays.
1046 (scm_array_to_list): Handle enclosed arrays explicitly.
1047 (rapr1): Removed.
1048 (scm_i_print_array_dimension): Use scm_i_cvref to also handle
1049 enclosed arrays.
1050 (scm_i_print_enclosed_array): New.
1051 (tag_proto_table, tag_creator_table): Renamed former to latter.
1052 Added "a" and "b" for strings and bitvectors, resp.
1053 (scm_i_tag_to_prototype, scm_i_tag_to_creator): Renamed former to
1054 latter. Tag "a" is in the table now, no need to handle it as a
1055 legacy tag.
1056 (scm_raprin1): Just call scm_iprin1.
1057 (scm_array_creator, scm_array_prototype): Handle enclosed arrays
1058 explicitly.
1059 (scm_init_unif): Initialize scm_tc16_enclosed_array smob.
1060 Use scm_i_print_array as printer for scm_tc16_array.
1061
1062 2004-11-10 Marius Vollmer <mvo@zagadka.de>
1063
1064 * ramap.c (cind): Changed second arg to be pointer to long instead
1065 of uniform vector.
1066 (scm_ramapc): Allocate index vector with scm_malloc and not as
1067 uniform vector. Wrap it in a frame so that it gets properly freed.
1068 (scm_array_index_map_x): Likewise.
1069
1070 * unif.c: Changed all uses of scm_array_prototype to
1071 scm_array_creator. (scm_i_get_old_prototype): Signal error when no
1072 prototype is known.
1073 (scm_uniform_array_read_x, scm_uniform_array_write): Reimplemented
1074 in terms of scm_uniform_vector_read_x and
1075 scm_uniform_vector_write, respectively. Strings and
1076 bitvector support has been dropped.
1077
1078 * srfi-4.h, srfi-4.c: Do not include <libguile.h>, include the
1079 needed files directly. Include config.h, <unistd.h> and <io.h>
1080 when available.
1081 (scm_uniform_vector_read_x, scm_uniform_vector_write): New.
1082
1083 2004-11-09 Marius Vollmer <mvo@zagadka.de>
1084
1085 * gh_data.c (gh_uniform_vector_length): Properly use
1086 scm_c_uniform_vector_length instead of scm_uniform_vector_length.
1087
1088 2004-11-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1089
1090 * srfi-4.h (scm_c_uniform_vector_ref, scm_c_uniform_vector_set_x):
1091 New.
1092 (scm_i_uniform_vector_creator): Removed.
1093 (scm_i_generalized_vector_creator): New.
1094 (scm_uniform_vector_length, scm_uniform_element_size): Do not
1095 handle generalized vectors, only uniform numeric vectors.
1096 (alloc_uvec): Do length check here...
1097 (make_uvec): ...but not here.
1098 (coerce_to_uvec): Use new generalized vector functions to handle
1099 all kinds of vectors in one go.
1100
1101 * tags.h (scm_tc7_bvect): Renamed to scm_tc7_unused7, renaming the
1102 remaining scm_tc7_unused tags to get a neatly ordered list.
1103
1104 * eq.c, evalext.c, gc-card.c, gc-mark.c, objects.c, print.c: Do no
1105 longer handle scm_tc7_bvect bitvectors.
1106
1107 * ramap.c: Use the new generalized vector functions to handle all
1108 vector like things.
1109
1110 * vectors.h, vectors.c (scm_is_vector, scm_c_vector_length,
1111 scm_c_vector_ref, scm_c_vector_set_x, scm_generalized_vector_p,
1112 scm_generalized_vector_length, scm_generalized_vector_ref,
1113 scm_generalized_vector_set_x, scm_generalized_vector_to_list,
1114 scm_is_generalized_vector, scm_c_generalized_vector_length,
1115 scm_c_generalized_vector_ref, scm_c_generalized_vector_set_x):
1116 New.
1117
1118 * unif.h, unif.c (scm_bitvector_p, scm_bitvector,
1119 scm_make_bitvector, scm_bitvector_length, scm_bitvector_ref,
1120 scm_bitvector_set_x, scm_list_to_bitvector, scm_bitvector_to_list,
1121 scm_bitvector_fill_x, scm_is_bitvector, scm_c_make_bitvector,
1122 scm_c_bitvector_length, scm_c_bitvector_ref,
1123 scm_c_bitvector_set_x, scm_bitvector_elements,
1124 scm_bitvector_release, scm_frame_bitvector_release,
1125 scm_tc16_bitvector, bitvector_free, bitvector_print,
1126 bitvector_equalp, count_ones, find_first_one): New.
1127 (scm_bit_count, scm_bit_position, scm_bit_set_star_x,
1128 scm_bit_count_star, scm_bit_invert_x, scm_istr2bve): Rewritten
1129 using the new C API for bitvectors and maybe count_ones or
1130 find_first_one, as appropriate.
1131 (SCM_I_MAX_LENGTH, SCM_BITVECTOR_P, SCM_BITVECTOR_BASE,
1132 SCM_SET_BITVECTOR_BASE, SCM_BITVECTOR_MAX_LENGTH,
1133 SCM_BITVECTOR_LENGTH, SCM_MAKE_BITVECTOR_TAG,
1134 SCM_SET_BITVECTOR_LENGTH): Removed. Replaced all uses with the
1135 new functions from above.
1136 (scm_i_proc_make_vector, scm_i_proc_make_string,
1137 scm_i_proc_make_bitvector): Made non-static for use in
1138 scm_i_generalized_vector_creator.
1139 (scm_make_u1vector): Removed, replaced by scm_make_bitvector.
1140 (scm_make_uve): Validate that the created object is a generalized
1141 vector.
1142 (scm_i_legacy_tag): Removed.
1143 (scm_i_print_array): Do it here.
1144 (scm_raprin1): Only print enclosed arrays.
1145
1146 * Makefile.am (DOT_DOC_FILES): Added srfi-4.doc.
1147
1148 2004-11-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1149
1150 * srfi-4.c (make_uvec): Use SCM_I_SIZE_MAX instead of SIZE_MAX for
1151 added portability.
1152
1153 * chars.c (scm_charnames, scm_charnums): Added "sp" as an alias
1154 for "space". Thanks to Bruce Korb!
1155
1156 * rw.c (scm_read_string_x_partial): Bugfix, apply offset to dest
1157 only after dest has been set. Thanks to Hyper Division!
1158
1159 * gh_data.c (gh_uniform_vector_length): Use
1160 scm_uniform_vector_length instead of SCM_UVECTOR_LENGTH.
1161
1162 2004-11-03 Marius Vollmer <mvo@zagadka.de>
1163
1164 * unif.h (SCM_UVECTOR_BASE, SCM_SET_UVECTOR_BASE,
1165 SCM_UVECTOR_MAXLENGTH, SCM_UVECTOR_LENGTH, SCM_MAKE_UVECTOR_TAG,
1166 SCM_SET_UVECTOR_LENGTH): Removed.
1167
1168 2004-11-02 Marius Vollmer <mvo@zagadka.de>
1169
1170 Mac OS X and OpenBSD compatibility patches from Andreas Vögele.
1171 Thanks!
1172
1173 * backtrace.c (scm_display_backtrace_with_highlights): Join the
1174 first and the second line of the SCM_DEFINE macro call, since old
1175 preprocessors cannot handle definitions that are split into two
1176 lines.
1177
1178 * inline.h (scm_cell, scm_double_cell): Don't use C99 variable
1179 declarations.
1180
1181 * pairs.c (scm_i_chase_pairs): Replace scm_t_bits with
1182 scm_t_uint32 to fix the mismatch between the function declaration
1183 and definition.
1184
1185 * sort.c (quicksort): Don't use C99 variable declarations.
1186
1187 * srfi-4.c (uvec_fast_ref): Avoid a compiler warning by returning
1188 SCM_BOOL_F if no type matches.
1189
1190 * threads.c (thread_print): Cast a pointer to size_t when printing
1191 with scm_uintprint.
1192
1193 * unif.c (scm_i_tag_to_prototype): Make sure that "instead" gets
1194 defined.
1195 (scm_array_prototype): Deprecated.
1196
1197 2004-11-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1198
1199 * srfi-4.h, srfi-4.c (scm_frame_uniform_vector_release): New.
1200 * unif.c (scm_bit_set_star_x, scm_bit_count_star_x): Use it to get
1201 more efficient access to the u32vector.
1202
1203 * tags.h (scm_tc7_llvect, scm_tc7_uvect, scm_tc7_fvect,
1204 scm_tc7_dvect, scm_tc7_cvect, scm_tc7_svect, scm_tc7_byvect,
1205 scm_tc7_ivect): Renamed to scm_tc7_unused_1 to scm_tc7_unused_8.
1206
1207 * validate.h (SCM_VALIDATE_VECTOR_OR_DVECTOR): Accept f64vectors
1208 instead of the old-style dvectors.
1209
1210 * gh_data.c: Use new-style uniform arrays in place of old-style
1211 ones.
1212
1213 * eq.c, evalext.c, gc-card.c, gc-mark.c, objects.c, print.c,
1214 ramap.c, unif.c: Do no longer handle old-style uniform vectors.
1215
1216 * unif.c (scm_bit_set_star_x, scm_bit_count_star_x): Use u32vectors
1217 instead of old-sytle uvectors.
1218
1219 * convert.c, convert.i.c: Rewritten completely, using
1220 scm_any_to_u8vector, etc and other new-style uniform vector
1221 functions.
1222
1223 * random.c (scm_random_solid_sphere_x,
1224 scm_random_hollow_sphere_x): Do not validate vector argument, this
1225 is already done elsewhere.
1226
1227 * srfi-4.h, srfi-4.i.c, srfi-4.c (coerce_to_uvec,
1228 scm_any_to_u8vector, etc): New.
1229 (scm_uniform_element_size, scm_uniform_vector_length): Do no
1230 longer handle old-style uniform vectors.
1231
1232 * read.c (scm_lreadr): Bugfix: include the last bit in the
1233 bit vector.
1234
1235 2004-10-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1236
1237 * unif.h, unif.c (scm_array_creator): New.
1238 (scm_i_get_old_prototype): New.
1239 (scm_array_prototype): use it to return old-style prototype, never
1240 return creators.
1241 (scm_make_uve): Use scm_call_1 instead of scm_call_2 with a second
1242 arg of SCM_UNDEFINED. The latter is wrong.
1243
1244 * unif.h, unif.c (scm_make_u1vector): New, but only temporary.
1245 (make_uve): Removed.
1246 (scm_i_proc_make_vector, scm_i_proc_make_string,
1247 scm_i_proc_make_u1vector): New.
1248 (scm_init_unif): Initialize them.
1249 (scm_i_convert_old_prototype): New.
1250 (scm_make_uve): Use it to get the creator procedure. Removed all
1251 old code that created old-style uniform vectors.
1252 (scm_array_p): Handle generic vectors.
1253 (scm_dimensions_to_uniform_array): Do not fill new array with
1254 prototype when that is a procedure.
1255 (scm_list_to_uniform_array): Also accept a list of lower bounds as
1256 the NDIM argument.
1257 (scm_i_print_array): Print rank for shared or non-zero-origin
1258 vectors.
1259 (tag_proto_table, scm_i_tag_to_prototype, scm_i_read_array): New.
1260 (scm_raprin1): Do not call scm_i_array_print for enclosed arrays,
1261 which I do not understand yet.
1262 (scm_array_prototype): Explicitely handle generic vectors.
1263
1264 * numbers.c, number.h (scm_i_print_complex, icmplx2str): New.
1265 (iflo2str): Use icmplx2str for complex numbers.
1266
1267 * srfi-4.c, srfi-4.h (scm_i_read_homogenous_vector,
1268 scm_i_uniform_vector_prototype): Removed.
1269 (scm_i_uniform_vector_creator): New.
1270 (SCM_UVEC_C32, scm_c32vector, scm_make_c32vector, etc,
1271 SCM_UVEC_C64, scm_c64vector, scm_make_c64vector, etc): New.
1272 Updated all tables and generic functions to support them.
1273 (scm_i_proc_make_u8vector, scm_i_proc_make_s8vector, etc): New.
1274 (scm_init_srfi_4): Initialize them.
1275
1276 * srfi-4.i.c (scm_take_u8vector, etc): use uvec_sizes instead of
1277 sizeof(CTYPE) as explained in the comment.
1278
1279 * read.c (scm_lreadr): Call scm_i_read_array for all characters
1280 following '#' that can start an array. Explicitely disambiguate
1281 'i' and 'e' between introducing numbers and uniform vectors. Do
1282 not call scm_i_read_homogenous_vector, since that is also handled
1283 by scm_i_read_array now.
1284
1285 2004-10-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1286
1287 First cut at integrating uniform vectors from srfi-4 with the rest
1288 of Guile. This change replaces scm_tc7_byvect with a s8 uniform
1289 vector. The plan is to gradually replace one type after the other
1290 until none is left and then to consider general cleanups and
1291 optimizations.
1292
1293 * srfi-4.h, srfi-4.i.c (scm_u8vector_elements, etc): New.
1294
1295 * srfi-4.h, srfi-4.c (scm_uniform_vector_p,
1296 scm_uniform_vector_ref, scm_uniform_vector_set_x,
1297 scm_uniform_vector_to_list, scm_is_uniform_vector,
1298 scm_c_uniform_vector_lengths, scm_c_uniform_vector_size,
1299 scm_uniform_vector_elements, scm_uniform_vector_element_size,
1300 scm_uniform_vector_release): New.
1301 (scm_i_uniform_vector_prototype, scm_i_uniform_vector_tag): New.
1302 (scm_uniform_element_size, scm_uniform_vector_length): Moved here
1303 from unif.h, unif.c and extended to handle both the old and new
1304 uniform vectors.
1305
1306 * tags.h (scm_tc7_byvect): Commented out.
1307
1308 * unif.h, unif.c (scm_uniform_vector_ref, scm_array_ref): Renamed
1309 the former to the latter.
1310 (scm_uniform_vector_length, scm_uniform_element_size): Moved to
1311 srfi-4.h, srfi-4.c.
1312 (scm_make_uve): Call scm_make_s8vector for #\nul prototype.
1313 (scm_array_p, scm_array_rank, scm_array_dimensions,
1314 scm_transpose_array, scm_enclose_array, scm_array_ref, scm_cvref,
1315 scm_array_set_x, scm_array_contents, scm_uniform_array_read_x,
1316 scm_array_to_list, scm_array_prototype): Handle srfi-4 uniform
1317 vectors. Removed code for scm_tc7_byvect.
1318 (scm_dimensions_to_uniform_array): Fill array with 0 when
1319 prototype is #\nul.
1320 (scm_i_print_array_dimension, scm_i_legacy_tag,
1321 scm_i_print_array): New.
1322 (scm_raprin1): Call scm_i_print_array for arrays. Removed code
1323 for scm_tc7_byvect.
1324
1325 * ramap.c (scm_ra_matchp, scm_array_fill_int, racp,
1326 scm_array_index_map_x, raeql_1, scm_array_equal_p): Handle srfi-4
1327 uniform vectors. Removed code for scm_tc7_byvect
1328
1329 * print.c (iprin1): Removed code for scm_tc7_byvect.
1330 * objects.c (scm_class_of): Likewise.
1331 * gc-mark.c (scm_gc_mark_dependencies): Likewise.
1332 * gc-card.c (scm_i_sweep_card): Likewise.
1333 * evalext.c (scm_self_evaluating_p): Likewise.
1334 * eq.c (scm_equal_p): Likewise.
1335
1336 * gh_data.c (gh_chars2byvect): Reimplemented with
1337 scm_make_s8vector.
1338 (gh_scm2chars): Handle s8vectors, removed code for scm_tc7_byvect.
1339
1340 * srfi-4.c (take_uvec): New.
1341 (alloc_uvec): Use it.
1342 * srfi-4.h, srfi-4.i.c (scm_take_u8vector, etc): New.
1343
1344 * random.c (vector_scale, vector_scale_x): Renamed former to the
1345 latter, since it modifies its argument.
1346 (vector_scale_x, vector_sum_squares, scm_random_normal_vector_x):
1347 Do not use scm_universal_vector_length for non-uniform vectors.
1348 Use scm_f64vector_elements to access innards of uniform vectors.
1349
1350 * convert.i.c: Convert srfi-4 style uniform vectors when
1351 requested.
1352 * convert.c (scm_c_scm2chars, scm_c_chars2scm,
1353 scm_c_chars2byvect): Use a s8vector instead of a scm_tc7_byvect.
1354
1355 2004-10-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1356
1357 * numbers.h, numbers.c (scm_i_print_double): New.
1358
1359 * srfi-4.c, srfi-4.h, srfi-4.i.c: New files, initially from
1360 ../srfi/ but heavily modified.
1361 * Makefile.am: Add them in all the right places.
1362 * init.c (scm_init_guile_1): Call scm_init_srfi_4.
1363 * read.c (scm_lreadr): Call scm_i_read_homogenous_vector for '#f',
1364 '#u', and '#s'.
1365
1366 * read.h, read.c (scm_i_input_error): Renamed from scm_input_error
1367 and made non-static. Changed all uses.
1368
1369 2004-10-22 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1370
1371 * variable.c, threads.c, struct.c, stackchk.c, smob.c, root.c,
1372 print.c, ports.c, mallocs.c, hooks.c, hashtab.c, fports.c,
1373 guardians.c, filesys.c, coop-pthreads.c, continuations.c: Use
1374 scm_uintprint to print unsigned integers, raw heap words, and
1375 adresses, using a cast to scm_t_bits to turn pointers into
1376 integers.
1377
1378 * unif.c: Include "libguile/print.h".
1379
1380 * numbers.h, numbers.c (SCM_T_INTBUFLEN): Increased to cover
1381 scm_t_intmax values.
1382 (scm_uint2str): New, for scm_t_uintmax.
1383 (scm_iint2str): Argument type changed to scm_t_intmax,
1384 reimplemented in terms of scm_uint2str.
1385
1386 * print.c, print.h (scm_uintprint): New, for printing
1387 scm_t_uintmax values.
1388 (scm_intprint): Argument type changed to scm_t_intmax.
1389
1390 * sort.c (quicksort, scm_merge, scm_merge_list_x,
1391 scm_merge_list_step, scm_merge_vector_step): Inserted SCM_TICKs at
1392 strategic places so that the loops can be interrupted.
1393
1394 * Makefile.am (INCLUDES): Use @LTDLINC@ instead of
1395 "-I$(top_srcdir)/libguile-ltdl".
1396 (libguile_la_LIBADD): Use @LIBLTDL@ instead of
1397 "../libguile-ltdl/libguile-ltdl.a".
1398
1399 * guile.c, dynl.c: Switched to using libltdl directly. Replaced
1400 all references to scm_lt_* with just lt_*. Include <ltdl.h>
1401 instead of <libguile-ltdl.h>.
1402
1403 2004-10-20 Marius Vollmer <mvo@zagadka.de>
1404
1405 * sort.c (quicksort): Copy pivot out of the array while
1406 constructing the partitions; it could get overwritten otherwise.
1407 Because of the ultimate insertion sort, this bug did not cause
1408 quicksort to fail, it just put all the burdon on the insertion
1409 sort and was thus very slow. Thanks to Rolan Orre for reporting
1410 the slowness!
1411
1412 2004-10-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1413
1414 * numbers.c (scm_i_range_error): New.
1415 * conv-integer.i.c, conv-uinteger.i.c: Use it instead of
1416 scm_out_of_range.
1417
1418 * sort.c (scm_restricted_vector_sort_x): Validate startpos <=
1419 endpos. State inclusiveness/exclusiveness of bounds in docstring.
1420
1421 * unif.c (scm_array_p): When no prototype is given, explicitely
1422 test for allowable types, do not simply return true. Thanks to
1423 Roland Orre for reporting this!
1424
1425 * private-gc.h (SCM_DEFAULT_MAX_SEGMENT_SIZE): Increase to 20 Mib.
1426
1427 * gc-segment.c (scm_i_get_new_heap_segment): Limit size of new
1428 segment to scm_max_segment_size.
1429
1430 2004-10-08 Han-Wen Nienhuys <hanwen@xs4all.nl>
1431
1432 * gc.c (scm_igc): put scm_gc_running-- before running hooks.
1433
1434 * inline.h (scm_double_cell): abort if GC running.
1435 (scm_cell): idem.
1436
1437 2004-10-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1438
1439 * error.c (scm_wrong_type_arg): Do not talk about "argument" for
1440 pos == 0.
1441
1442 Keywords no longer store a 'dash symbol'. Instead, they store a
1443 symbol with their real name.
1444
1445 * keywords.h, keywords.c, deprecated.h, deprecated.c
1446 (SCM_KEYWORDP, SCM_KEYWORDSYM): Deprecated and implemented in
1447 terms of scm_is_keyword and scm_keyword_dash_symbol.
1448
1449 * keywords.h, keywords.c, discouraged.h, discouraged.c
1450 (scm_make_keyword_from_dash_symbol, scm_keyword_dash_symbol,
1451 scm_c_make_keyword): Discouraged.
1452
1453 * keywords.h, keywords.c (scm_symbol_to_keyword,
1454 scm_keyword_to_symbol): Implemented in C.
1455 (scm_is_keyword, scm_from_locale_keyword,
1456 scm_from_locale_keywordn): New.
1457
1458 * goops.c: Replaced SCM_KEYWORDP with scm_is_keyword.
1459
1460 * snarf.h (SCM_KEYWORD, SCM_GLOBAL_KEYWORD): Use
1461 scm_from_locale_keyword instead of scm_c_make_keyword.
1462
1463 * keywords.c (scm_symbol_to_keyword): Use SCM_ASSERT_TYPE for a
1464 better error message.
1465
1466 * deprecated.c: Include discouraged.h and keywords.h.
1467
1468 * read.c (scm_lreadr): Simply do (symbol->keyword (read)) after
1469 reading '#:' or ':'. See NEWS for consequences.
1470
1471 2004-09-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1472
1473 * read.c (scm_lreadr): Revert change from 2004-09-22: string
1474 literals are now read-write again (until SCM_STRING_CHARS is
1475 removed).
1476
1477 * strings.c (SCM_STRING_CHARS): Explicitely reject read-only
1478 strings with an error message that blames SCM_STRING_CHARS.
1479
1480 * options.c (change_option_setting): Use scm_car instead of
1481 explicit type check plus SCM_CAR.
1482
1483 * print.h, print.c (SCM_PRINT_HIGHLIGHT_PREFIX,
1484 SCM_PRINT_HIGHLIGHT_SUFFIX): New printer options.
1485 (scm_iprin1): Use them instead of the previoulsy hardcoded
1486 strings.
1487 (scm_init_print): Initialize them.
1488
1489 * backtrace.c (display_frame_expr): Do not remove control
1490 characters from the final string. Print it directly using
1491 scm_display.
1492
1493 * ramap.c (scm_array_equal_p): Include scm_tc7_svect in switch.
1494 Thanks to Roland Orre!
1495
1496 2004-09-29 Kevin Ryde <user42@zip.com.au>
1497
1498 * regex-posix.c (scm_regexp_exec): Correction to last change, should
1499 be whole original string in match struct, not offsetted substring.
1500
1501 2004-09-24 Han-Wen Nienhuys <hanwen@xs4all.nl>
1502
1503 * gc.c (scm_gc_unprotect_object): abort if called during GC.
1504
1505 2004-09-24 Marius Vollmer <mvo@zagadka.de>
1506
1507 * Makefile.am (EXTRA_DIST): Added gettext.h.
1508
1509 * smob.c, smob.h (scm_assert_smob_type): New.
1510
1511 * Makefile.am (guile_CFLAGS, guile_LDFLAGS, libguile_la_CFLAGS):
1512 Include GUILE_CFLAGS.
1513 (libguile_la_LIBADD): Removed THREAD_LIBS_LOCAL, which is unused
1514 now.
1515 (libpath.h): Put GUILE_CFLAGS in the build-info.
1516
1517 2004-09-23 Marius Vollmer <mvo@zagadka.de>
1518
1519 * print.h (scm_print_state): Added highlight_objects.
1520 * print.c (make_print_state, scm_free_print_state): Initialize it
1521 to SCM_EOL.
1522 (scm_iprin1): Wrap output in '{...}' when object is contained in
1523 highlight_objects.
1524
1525 * backtrace.h, backtrace.c (scm_display_backtrace_with_highlights,
1526 scm_backtrace_with_highlights): New. Set highlight_objects of
1527 printstate.
1528
1529 * error.c (scm_error_scm): Document new meaning of data/rest
1530 argument for out-of-range and wrong-type-arg errors.
1531 (scm_out_of_range, scm_out_of_range_pos, scm_wrong_type_arg,
1532 scm_wrong_type_arg_msg): Pass bad_value in rest argument of
1533 exception so that it gets highlighted in the backtrace.
1534 Don't talk about "argument" when not giving a position.
1535
1536 * throw.c (handler_message): The rest argument is the fourth
1537 argument, not everything after the third. Call
1538 scm_display_backtrace_with_highlights, passing the rest argument
1539 when appropriate.
1540
1541 2004-09-22 Marius Vollmer <mvo@zagadka.de>
1542
1543 From Jan Nieuwenhuizen <janneke@gnu.org> and Bruno Haible
1544 <bruno@clisp.org>:
1545
1546 * i18n.c: Handle --disable-nls (thanks Bruno).
1547
1548 * posix.c (scm_init_posix): Add LC_PAPER, LC_NAME, LC_ADDRESS,
1549 LC_TELEPHONE, LC_MEASUREMENT, LC_IDENTIFICATION.
1550
1551 * i18n.c (scm_i_to_lc_category): New name and export. Support all
1552 LC categories.
1553 * posix.c (scm_setlocale): Use it.
1554
1555 * i18n.h, i18n.c (scm_textdomain, scm_bindtextdomain,
1556 scm_bind_textdomain_codeset): Make wrappers similar to C function
1557 they wrap.
1558
1559 * i18n.h: New file.
1560 * i18n.c: New file.
1561 * gettext.h: New file, taken from GNU gettext.
1562 * init.c: Include libguile/i18n.h.
1563 (scm_init_guile_1): Add call to scm_init_i18n().
1564 * Makefile.am (libguile_la_SOURCES): Add i18n.c.
1565 (DOT_X_FILES): Add i18n.x.
1566 (DOT_DOC_FILES): Add i18n.doc.
1567 (libguile_la_LDFLAGS): Add @LTLIBINTL@.
1568 (modinclude_HEADERS): Add i18n.h.
1569
1570 2004-09-22 Marius Vollmer <mvo@zagadka.de>
1571
1572 * gh_list.c: Replaced SCM_CAR, etc with scm_car, etc.
1573
1574 * discouraged.h, tags.h (SCM_CONSP, SCM_NCONSP): Moved to
1575 discouraged.h. Replaced all uses with scm_is_pair.
1576 (SCM_I_CONSP): New name for SCM_CONSP.
1577
1578 * pairs.h, pairs.c (scm_is_pair, scm_is_null, scm_car, scm_cdr,
1579 scm_i_chase_pairs, SCM_I_A_PAT, SCM_I_D_PAT, etc, scm_caar,
1580 scm_cadr, etc): New.
1581 (SCM_NULLP, SCM_NNULLP): Moved to discouraged.h. Replaced all
1582 uses with scm_is_null.
1583
1584 * eval.c (scm_eval, scm_apply, call_cxr_1): Use scm_i_chase_pairs
1585 instead of explicit code.
1586
1587 2004-09-22 Marius Vollmer <mvo@zagadka.de>
1588
1589 * srfi-13.c (scm_string_contains, scm_string_contains_ci):
1590 Reworded logic a bit so that #f is returned immediately when s1 is
1591 too short to contain s2.
1592
1593 * regex-posix.c (scm_regexp_exec): Convert string to
1594 zero-terminated locale string before matching against it.
1595
1596 * strings.h, strings.c (scm_substring_read_only,
1597 scm_c_substring_read_only, scm_i_substring_read_only): New.
1598 (RO_STRING_TAG, IS_RO_STRING): New.
1599 (scm_i_string_writable_chars): Bail on read-only strings.
1600
1601 * read.c (scm_lreadr): use scm_c_substring_read_only for string
1602 literals, thus making them read-only as specified by R5RS.
1603
1604 2004-09-22 Marius Vollmer <mvo@zagadka.de>
1605
1606 * eq.c (scm_equal_p): Allow smobs with different flags to be equal
1607 by testing for smobs before insisting on equal SCM_CELL_TYPES.
1608
1609 2004-09-21 Marius Vollmer <mvo@zagadka.de>
1610
1611 * numbers.h, numbers.c: Include <gmp.h> in numbers.h, not in
1612 numbers.c.
1613 (scm_to_mpz, scm_from_mpz): New.
1614 Thanks to Andreas Vögele!
1615
1616 * read.c (skip_scsh_block_comment): Recognize "!#" everywhere, not
1617 just on a line of its own.
1618
1619 * srfi-13.c (scm_string_any, scm_string_every,
1620 scm_string_tabulate, string_upcase_x, string_down_case_x,
1621 string_titlecase_x, string_reverse_x, scm_string_tokenize): Use
1622 size_t instead of int for indices into strings. Make sure that no
1623 over- or underflow occurs. Thanks to Andreas Vögele!
1624 (scm_xsubstring, scm_string_xcopy_x): Use ints for 'extended'
1625 indices, which can also be negative.
1626
1627 2004-09-20 Marius Vollmer <mvo@zagadka.de>
1628
1629 * gc-mark.c (SCM_MARK_BACKING_STORE): Removed, it was unused.
1630
1631 * threads.c (scm_threads_mark_stacks): Call
1632 SCM_MARK_BACKING_STORE. Also, do not use stack_len local, it was
1633 only used once.
1634
1635 2004-09-13 Jan Nieuwenhuizen <janneke@gnu.org>
1636
1637 * srfi-13.c (scm_string_contains, scm_string_contains_ci):
1638 Bugfix: when subtracting unsigned values, make sure that result
1639 does not wrap.
1640
1641 2004-09-09 Kevin Ryde <user42@zip.com.au>
1642
1643 * filesys.c, stime.c (_POSIX_C_SOURCE): Use this only on hpux, it
1644 causes too many problems elsewhere (glibc, freebsd, mingw). Reported
1645 by Andreas Vögele.
1646
1647 2004-09-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1648
1649 * Makefile.am (EXTRA_libguile_la_SOURCES): Removed "alloca.c".
1650
1651 * eq.c (real_eqv): Pretend that all NaNs are equal.
1652
1653 * numbers.c (scm_integer_expt): Do not accept inexact integers.
1654
1655 2004-09-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1656
1657 * srfi-13.c (scm_string_trim_right, scm_string_xcopy_x): Correctly
1658 use size_t for some locals instead of int.
1659
1660 * read.c (scm_flush_ws): Detect "#!"-style comments here.
1661 (scm_lreadr): Abort on seeing "#!", which should no longer happen.
1662 (skip_scsh_block_comment): Use scm_input_error instead of
1663 scm_misc_error in case of EOF.
1664
1665 2004-09-07 Kevin Ryde <user42@zip.com.au>
1666
1667 * numbers.c (scm_integer_expt): Reject exponent +/-inf.
1668 Bug report by Bill Schottstaedt.
1669
1670 * ports.c (scm_getc, scm_lfwrite): Recognise \a \b and \r for port
1671 column.
1672 * ports.h (SCM_ZEROCOL, SCM_DECCOL): New macros.
1673
1674 * posix.c (scm_access): Update docstring per manual.
1675
1676 * posix.c (scm_nice): Correction to error detection. Reported by
1677 Matthias Koeppe.
1678
1679 * stime.c (scm_current_time, scm_gettimeofday, scm_strptime): Don't
1680 throw error before unlocking mutex with SCM_ALLOW_INTS.
1681
1682 2004-09-06 Kevin Ryde <user42@zip.com.au>
1683
1684 * stime.h (SCM_TIME_UNITS_PER_SECOND): Use sysconf(_SC_CLK_TCK) when
1685 available. This also gets around CLK_TCK being absent when
1686 _GNU_SOURCE and _POSIX_C_SOURCE are defined in stime.c.
1687
1688 2004-09-03 Stefan Jahn <stefan@lkcc.org>
1689
1690 * threads.c (scm_threads_mark_stacks): Fixed local variable
1691 definitions.
1692
1693 * strings.c (scm_i_substring_copy, scm_string_append): Fixed
1694 local variable definitions.
1695
1696 * stime.c (_POSIX_C_SOURCE): Do not define this item on
1697 MinGW32 because it conflicts with its pthread headers.
1698 (scm_mktime): Consider the HAVE_STRUCT_TM_TM_ZONE define.
1699 (scm_strftime): Using scm_from_locale_string() instead of
1700 scm_makfrom0str().
1701
1702 * posix.c (scm_putenv): Fixed typo in the !HAVE_UNSETENV
1703 part.
1704
1705 * numbers.c (scm_init_numbers): Removed check_sanity() call
1706 inside GUILE_DEBUG. The function has been removed somewhen...
1707
1708 * filesys.c (_POSIX_C_SOURCE): Do not define this item on
1709 MinGW32 because it conflicts with its pthread headers.
1710
1711 2004-08-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1712
1713 * strings.c (SCM_STRINGP): Accept all strings.
1714 (SCM_STRING_CHARS): Reject shared substrings here.
1715
1716 * script.c (scm_compile_shell_switches): Added 2003 and 2004 to
1717 the Copyright years.
1718
1719 2004-08-27 Kevin Ryde <user42@zip.com.au>
1720
1721 * socket.c (scm_fill_sockaddr): Use HAVE_STRUCT_SOCKADDR_SIN_LEN and
1722 HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN for sockaddr fields, SIN_LEN and
1723 SIN_LEN6 are not defined on all systems. Reported by Michael Tuexen.
1724
1725 2004-08-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1726
1727 * strings.h, strings.c (scm_i_make_symbol): Added FLAGS parameter.
1728 * symbols.h, symbols.c (SCM_I_F_SYMBOL_UNINTERNED,
1729 scm_i_symbol_is_interned, scm_i_mem2symbol,
1730 scm_i_mem2uninternedsymbol): Use it to store uninternedness flag.
1731
1732 2004-08-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1733
1734 * srfi-13.c: First cut at thread-safeness and proper use of
1735 scm_i_string_chars et al. Copious scm_remember_upto_heres have
1736 been inserted. Made sure that no internal string pointer is used
1737 across a SCM_TICK or a possible GC.
1738
1739 * script.c (scm_compile_shell_switches): Use
1740 scm_from_locale_string instead of scm_makfrom0str.
1741
1742 * srfi-13.c (scm_string_rindex): Export to Scheme, as it has
1743 always been.
1744
1745 2004-08-25 Marius Vollmer <mvo@zagadka.de>
1746
1747 Moved SRFI-13 and SRFI-14 into the core, taking over the role of
1748 strop.c.
1749
1750 * srfi-13.c, srfi-13.h, srfi-14.c, srfi-14.h: New files.
1751 * strop.h, strop.c: Removed, they are now empty.
1752 * Makefile.am: Updated for new and removed files.
1753
1754 * symbols.h, symbols.c (scm_string_ci_to_symbol): Moved here, next
1755 to scm_string_to_symbol.
1756
1757 * chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
1758 scm_char_whitespace_p, scm_upper_case_p, scm_lower_case_p,
1759 scm_char_is_both_p): Use scm_char_set_contains_p with the proper
1760 charset instead of libc functions.
1761
1762 * strorder.c (scm_string_equal_p, scm_string_ci_equal_p,
1763 scm_string_less_p, scm_string_leq_p, scm_string_gr_p,
1764 scm_string_geq_p, scm_string_ci_less_p, scm_string_ci_leq_p,
1765 scm_string_ci_gr_p, scm_string_ci_geq_p): Use scm_string_eq, etc
1766 instead of explicit code.
1767
1768 * deprecated.c, load.c, posix.c, unif.c, symbols.c: Include
1769 "srfi-13.h" instead of "strop.h".
1770
1771 * init.c (scm_init_guile_1): Call scm_init_srfi_13 and
1772 scm_init_srfi_14. Do not call scm_init_strop.
1773
1774 2004-08-24 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1775
1776 * numbers.c (scm_inf_p): Synced docstring back from manual.
1777
1778 2004-08-22 Marius Vollmer <mvo@zagadka.de>
1779
1780 * strings.c (get_str_buf_start): New helper function.
1781 (scm_i_substring, scm_i_substring_copy, scm_i_substring_shared,
1782 scm_i_string_char, scm_i_string_writable_chars): Use it.
1783 (scm_i_substring_copy): Make START argument optional for C
1784 callers, for upcoming SRFI-13 integration.
1785
1786 2004-08-21 Marius Vollmer <mvo@zagadka.de>
1787
1788 From Richard Todd, Thanks!
1789
1790 * script.c (scm_compile_shell_switches): added '-L' switch to add
1791 to the %load-path.
1792
1793 2004-08-21 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
1794
1795 * eval.c (unmemoize_exprs): When dropping internal body markers
1796 from the output during unmemoization, also drop those that are not
1797 immediately at the beginning of a body.
1798
1799 2004-08-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1800
1801 * eval.c (scm_lookupcar1): Report "Variable used before given a
1802 value" insetad of an "Unbound" one for variables that are found
1803 but still contain SCM_UNDEFINED.
1804
1805 * posix.c (scm_mkstemp): Correction to the correction, mkstemp
1806 expects a null-terminated string in the locale encoding, but
1807 scm_i_string_writable_chars doesn't give that. Fixed by letting
1808 mkstemp modify a locale version of the tmpl argument and copying
1809 the result back into tmpl.
1810
1811 * strop.c (scm_substring_move_x): Store into str2, not str1.
1812
1813 2004-08-20 Kevin Ryde <user42@zip.com.au>
1814
1815 * posix.c (scm_mkstemp): Correction to new locale_string stuff, need
1816 to modify the input string.
1817
1818 2004-08-19 Marius Vollmer <mvo@zagadka.de>
1819
1820 * deprecated.c (SCM_SYMBOL_CHARS): Cast away const in return.
1821 (SCM_SYMBOL_LENGTH): It's scm_i_symbol_length, not
1822 scm_c_symbol_length.
1823
1824 2004-08-19 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1825
1826 New string implementation, with copy-on-write strings and
1827 mutation-sharing substrings, and a new internal string API.
1828 Symbols can now share memory with strings.
1829
1830 * tags.h (scm_tc7_stringbuf): New tag.
1831
1832 * strings.h, strings.c: (scm_i_string_chars, scm_i_string_length,
1833 scm_i_string_writable_chars, scm_i_string_stop_writing): New, to
1834 replace SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH. Updated all
1835 uses.
1836 (scm_i_make_string, scm_c_make_string): New, to replace
1837 scm_allocate_string. Updated all uses.
1838 (SCM_STRINGP, SCM_STRING_CHARS, SCM_STRING_UCHARS,
1839 SCM_STRING_LENGTH): Deprecated.
1840 (scm_allocate_string, scm_take_str, scm_take0str, scm_mem2string,
1841 scm_str2string, scm_makfrom0str, scm_makfrom0str_opt):
1842 Discouraged. Replaced all uses with scm_from_locale_string or
1843 similar, as appropriate.
1844 (scm_c_string_length, scm_c_string_ref, scm_c_string_set_x,
1845 scm_c_substring, scm_c_substring_shared, scm_c_substring_copy,
1846 scm_substring_shared, scm_substring_copy): New.
1847
1848 * symbols.c, symbols.h (SCM_SYMBOLP, SCM_SYMBOL_FUNC,
1849 SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS,
1850 SCM_SYMBOL_HASH, SCM_SYMBOL_INTERNED_P, scm_mem2symbol,
1851 scm_str2symbol, scm_mem2uninterned_symbol): Discouraged.
1852 (SCM_SYMBOL_LENGTH, SCM_SYMBOL_CHARS, scm_c_symbol2str):
1853 Deprecated.
1854 (SCM_MAKE_SYMBOL_TAG, SCM_SET_SYMBOL_LENGTH, SCM_SET_SYMBOL_CHARS,
1855 SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS): Removed.
1856 (scm_is_symbol, scm_from_locale_symbol, scm_from_locale_symboln):
1857 New, to replace scm_str2symbol and scm_mem2symbol, respectively.
1858 Updated all uses.
1859 (scm_gensym): Generate only the number suffix in the buffer, just
1860 string-append the prefix.
1861
1862 * error.c (scm_memory_error): Do not try to throw, just abort.
1863 Throwing will not work anyway.
1864
1865 * gh.h, gh-data.c (gh_set_substr): Made src const.
1866
1867 * ports.c (scm_i_mode_bits_n): New, for counted strings.
1868 (scm_mode_bits): Use it.
1869 (scm_c_port_for_each): Blocking GC does not seem to work, allocate
1870 a vector normally and fill that instead of consing a list with a
1871 blocked GC.
1872
1873 * read.c (scm_i_casei_streq): New, for counted strings.
1874
1875 * threads.c (gc_section_count): Removed, thread-sleeping can not
1876 be nested.
1877 (scm_i_thread_put_to_sleep): Call scm_i_leave_guile before locking
1878 admin mutex so that we can be put to sleep by other threads while
1879 blocking on that mutex. Lock all the heap mutex of all threads,
1880 including ourselves.
1881 (scm_i_thread_wake_up): Unlock all threads, including ourselves,
1882 call scm_i_enter_guile.
1883 (scm_thread_mark_stacks): Expect all threads to be suspended.
1884
1885 * gc.h, gc.c (scm_i_gc_admin_mutex): New, to protect
1886 scm_gc_mallocated, for now.
1887 (scm_init_storage): Initialize it.
1888 * gc-malloc.c (descrease_mtrigger, increase_mtrigger): Use it.
1889
1890 * gc-mark.c (scm_gc_mark_dependencies): Call scm_i_string_mark,
1891 scm_i_stringbuf_mark and scm_i_symbol_mark, as appropriate.
1892 * gc-card.c (scm_i_sweep_card): Call scm_i_string_free,
1893 scm_i_stringbuf_free and scm_i_symbol_free, as appropriate.
1894
1895 * strop.c (scm_string_copy): Use scm_c_substring to get a
1896 copy-on-write string.
1897
1898 2004-08-18 Kevin Ryde <user42@zip.com.au>
1899
1900 * arbiters.c (FETCH_STORE): New macro.
1901 (SCM_LOCK_VAL, SCM_UNLOCK_VAL): New constants.
1902 (SCM_LOCK_ARB, SCM_UNLOCK_ARB): Remove, effectively absorbed into
1903 scm_try_arbiter and scm_release_arbiter.
1904 (scm_try_arbiter, scm_release_arbiter): Use FETCH_STORE to get xchg
1905 for speed on i386, otherwise using mutex.
1906
1907 * eq.c (scm_equal_p): Remove real==fraction and fraction==real, they
1908 must be #f according to R5RS. (equal? follows eqv?, and for eqv? an
1909 exact and inexact is #f.)
1910
1911 * fports.c (fport_print): Use scm_ttyname instead of ttyname directly,
1912 to get thread safety of scm_ttyname.
1913
1914 * ports.c (ttyname): Remove prototype, unused.
1915
1916 * socket.c (scm_init_socket): Add SOCK_SEQPACKET and SOCK_RDM.
1917 Reported by Michael Tuexen.
1918
1919 2004-08-13 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1920
1921 * load.c (scm_init_load_path): Do not pass NULL to
1922 scm_to_locale_string, which would happen when GUILE_LOAD_PATH is
1923 not set. Thanks to Bill Schottstaedt.
1924
1925 2004-08-12 Marius Vollmer <marius.vollmer@uni-dortmund.de>
1926
1927 * socket.c (scm_inet_aton, scm_inet_pton): Convert SCM strings to
1928 locale strings instead of accessing their internals.
1929 (scm_recv, scm_send, scm_recvfrom, scm_sendto): Use
1930 SCM_I_STRING_CHARS and SCM_I_STRING_LENGTH instead of
1931 SCM_STRING_CHARS and SCM_STRING_LENGTH.
1932
1933 * simpos.c (scm_system): Convert SCM strings to locale strings
1934 instead of accessing their internals.
1935
1936 * script.c (scm_compile_shell_switches): Convert version to locale
1937 string before printing it.
1938
1939 * rdelim.c (scm_read_delimited_x): Avoid
1940 SCM_VALIDATE_SUBSTRING_SPEC_COPY and use scm_from_size_t instead
1941 of scm_from_long for the returned number of read characters.
1942
1943 * ioext.c (scm_fdopen): Use scm_i_fdes_to_port together with
1944 scm_i_mode_bits to avoid accessing internals of SCM string from C.
1945
1946 * filesys.c (STRING_SYSCALL, STRING2_SYSCALL): New helper macros.
1947 Use them instead of SCM_SYSCALL when one or two strings need to be
1948 converted into locale strings.
1949 (my_rename): New, gathers platform dependent code for renaming.
1950 (scm_rename): Use it.
1951 (scm_readlink, scm_copy_file): Convert SCM strings to locale
1952 strings instead of accessing their internals.
1953 (scm_basename, scm_dirname): Use SCM_I_STRING_CHARS and
1954 SCM_I_STRING_LENGTH instead of SCM_STRING_CHARS and
1955 SCM_STRING_LENGTH.
1956
1957 * extensions.c (load_extension): Convert lib and init to locale
1958 strings instead of accessing the internals directly.
1959 (scm_c_load_extension): Use scm_from_locale_string instead of
1960 scm_makfrom0str.
1961
1962 * fports.h, fports.c (scm_i_fdes_to_port): New, like
1963 scm_fdes_to_port, but take mode bits directly instead of as a C
1964 string.
1965 (scm_i_fdes_to_port): Implement using above.
1966 (scm_open_file): Use scm_i_fdes_to_port together with
1967 scm_i_mode_bits to avoid accessing internals of SCM string from C.
1968 * vports.c (scm_make_soft_port): Use scm_i_fdes_to_port together
1969 with scm_i_mode_bits to avoid accessing internals of SCM string
1970 from C.
1971
1972 * ports.h (scm_i_mode_bits): New, same as scm_mode_bits but with a
1973 SCM string as argument.
1974
1975 * ports.c (scm_i_void_port): New, like scm_void_port but take mode
1976 bits directly instead of C string.
1977 (scm_void_port): Implement using above.
1978 (scm_sys_make_void_port): Use scm_i_void_port together with
1979 scm_i_mode_bits to avoid accessing internals of SCM string.
1980
1981 * strings.h, strings.c (scm_i_get_substring_spec): New.
1982
1983 * socket.c, rw.c, deprecated.h, validate.h
1984 (SCM_VALIDATE_STRING_COPY): Deprecated. Replaced all uses with
1985 SCM_VALIDATE_STRING plus SCM_I_STRING_CHARS or
1986 scm_to_locale_string, etc.
1987 (SCM_VALIDATE_SUBSTRING_SPEC_COPY): Deprecated. Replaced as
1988 above, plus scm_i_get_substring_spec.
1989
1990 * regex-posix.c, read.c, random.c, ramap.c, print.c, numbers.c,
1991 hash.c, gc.c, gc-card.c, convert.i.c, backtrace.c, strop.c,
1992 strorder.c, strports.c, struct.c, symbols.c, unif.c, ports.c: Use
1993 SCM_I_STRING_CHARS, SCM_I_STRING_UCHARS, and SCM_I_STRING_LENGTH
1994 instead of SCM_STRING_CHARS, SCM_STRING_UCHARS, and
1995 SCM_STRING_LENGTH, respectively. Also, replaced scm_return_first
1996 with more explicit scm_remember_upto_here_1, etc, or introduced
1997 them in the first place.
1998
1999 * posix.c (WITH_STRING): New helper macro. Use it where one
2000 locale string is needed for a short piece of code.
2001 (STRING_SYSCALL): New helper macro. Use it instead of SCM_SYSCALL
2002 when one locale string is needed.
2003 (scm_mkstemp): Convert tmpl to a locale string.
2004 (scm_putenv): Rewritten to use only C strings.
2005 (scm_setlocale, scm_crpt): Convert argument strings to locale
2006 strings.
2007
2008 2004-08-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2009
2010 * load.c (scm_primitive_load_path): Do not check for absolute
2011 filenames when scm_sys_search_load_path returns false, which will
2012 return absolute filenames unchanged.
2013
2014 2004-08-11 Marius Vollmer <mvo@zagadka.de>
2015
2016 * gc.c, procprop.c (scm_init_storage, scm_stand_in_procs,
2017 scm_stand_in_proc): Use a hastable for scm_stand_in_procs instead
2018 of an alist. Thanks to Matthias Koeppe!
2019
2020 2004-08-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2021
2022 * strings.h, deprecated.h (SCM_STRING_COERCE_0TERMINATION_X):
2023 Moved from string.h to deprecated.h.
2024
2025 * deprecated.c, deprecated.h (SCM_CHARS, SCM_LENGTH): Removed.
2026
2027 * strings.h, strings.c (SCM_MAKE_STRING_TAG): Renamed to
2028 SCM_I_MAKE_STRING_TAG, changed all uses.
2029 (SCM_STRING_CHARS, SCM_STRING_UCHARS, SCM_STRING_LENGTH): Renamed
2030 to SCM_I_STRING_CHARS, SCM_I_STRING_UCHARS, and SCM_I_LENGTH
2031 respectively. For a short time, the old names are still there as
2032 aliases. Not all uses have been changed yet, but the ones in
2033 strings.c have.
2034 (SCM_STRING_MAX_LEN): Do not hardcode to 24 bits, compute from
2035 SCM_T_BITS_MAX.
2036 (scm_is_string, scm_from_locale_string, scm_from_locale_stringn,
2037 scm_take_locale_string, scm_take_locale_stringn,
2038 scm_to_locale_string, scm_to_locale_stringn,
2039 scm_to_locale_stringbuf): New.
2040 (scm_c_string2str, scm_c_substring2str): Deprecated by moving to
2041 deprecated.[hc]. Implemented in terms of the new functions above.
2042 (scm_take_str, scm_take0str, scm_mem2string, scm_str2string,
2043 scm_makfrom0str): Reimplemented in terms of the new functions from
2044 above. They will be discouraged shortly.
2045 (scm_substring): Do not use scm_mem2string.
2046 (scm_i_allocate_string_pointers, scm_i_free_string_pointers): New,
2047 to replace similar code from posix.c, simpos.c, and dynl.c.
2048 (scm_string_append): Use memcpy instead of explicit loop. Do not
2049 use register keyword. Use plain 'char' instead of 'unsigned
2050 char'.
2051
2052 * strports.c (scm_mkstrport): Use SCM_I_STRING_UCHARS instead of
2053 SCM_STRING_UCHARS. Use SCM_I_STRINGP instead of SCM_STRINGP.
2054
2055 * strop.c (scm_i_index): Replaced SCM_STRINGP, SCM_STRING_CHARS,
2056 and SCM_STRING_LENGTH with SCM_I_STRINGP, SCM_I_STRING_CHARS, and
2057 SCM_I_STRING_LENGTH, respectively. Pass string object directly,
2058 not as a pointer. Use scm_remember_upto_here_1 to protect it.
2059
2060 * read.c (scm_input_error): Use a SCM value for 'fn', not a C
2061 string. This avoids a conversion round-trip.
2062
2063 * gh_data.c: Replaced SCM_STRINGP, SCM_STRING_CHARS, and
2064 SCM_STRING_LENGTH with SCM_I_STRINGP, SCM_I_STRING_CHARS, and
2065 SCM_I_STRING_LENGTH, respectively.
2066 (gh_scm2newstr): Implement in terms of scm_to_locale_string.
2067
2068 * environments.c: Instead calling scm_puts on the SCM_STRING_CHARS
2069 of a string, call scm_display on the string itself.
2070
2071 * dynwind.c, dynwind.h (scm_frame_free): New.
2072
2073 * stime.c, socket.c, simpos.c, procs.c, posix.c, ports.c,
2074 net_db.c, fports.c, filesys.c, eval.c, deprecation.c, dynl.c:
2075 Replaced uses of SCM_STRING_CHARS with proper uses of
2076 scm_to_locale_string. Replaced SCM_STRINGP with scm_is_string.
2077 Replaced scm_mem2string with scm_from_locale_string.
2078
2079 * simpos.c, posix.c (allocate_string_pointers, environ_list_to_c):
2080 Removed, replaced all uses with scm_i_allocate_string_pointers.
2081
2082 * load.h, load.c (scm_internal_parse_path): Removed.
2083 (scm_parse_path): Use scm_string_split to do the work.
2084 (scm_init_load_path): Use scm_parse_path instead of
2085 scm_internal_parse_path.
2086 (scm_search_path): Rewritten string handling part of the code in
2087 terms of scm_to_locale_stringbuf and so that it is thread safe.
2088
2089 * error.c (scm_error_scm): Throw directly instead of calling
2090 scm_error, this avoids the back and forth conversion of SUBR and
2091 MESSAGE and also plugs a memory leak.
2092 (scm_error): Call scm_error_scm.
2093
2094 * backtrace.c: Replaced SCM_STRINGP with scm_is_string.
2095 (display_header): Print FNAME when it is true, not
2096 merely when it is a string.
2097
2098 * strings.h (SCM_SET_STRING_LENGTH, SCM_SET_STRING_CHARS): Removed
2099 unceremoniously. They were unused by Guile itself, and external
2100 use should stop immediately.
2101
2102
2103 2004-08-10 Marius Vollmer <mvo@zagadka.de>
2104
2105 * numbers.h, number.c, deprecated.h, deprecated.c (scm_round,
2106 scm_truncate): Renamed to scm_c_round and scm_c_truncate;
2107 deprecated versions installed in deprecated.h and deprecated.c.
2108 Changed all uses.
2109
2110 2004-08-06 Rob Browning <rlb@defaultvalue.org>
2111
2112 * net_db.c (scm_resolv_error): don't cause an exception while
2113 trying to throw an exception -- call scm_misc_error with correct
2114 arguments. The previous arguments needed a format escape that
2115 wasn't in any of the format strings.
2116
2117 2004-08-06 Kevin Ryde <user42@zip.com.au>
2118
2119 * ramap.c (scm_array_fill_x): For byvect char fill, force signed char
2120 so as not to depend on signedness of plain char. For byvect range
2121 check, throw out-of-range rather than wrong-type-arg.
2122
2123 * unif.c (scm_uniform_vector_ref, scm_array_set_x): For byvect, force
2124 signed byte range checks by using scm_to_schar and scm_from_schar,
2125 don't want to depend on signedness of C char.
2126
2127 2004-08-05 Kevin Ryde <user42@zip.com.au>
2128
2129 * arbiters.c (scm_try_arbiter): Use scm_i_misc_mutex instead of
2130 SCM_DEFER_INTS.
2131 (scm_release_arbiter): Use scm_i_misc_mutex so return value can be
2132 guaranteed if multiple threads compete to unlock.
2133 Update docstrings per doc/ref/api-scheduling.texi.
2134
2135 * filesys.c (scm_copy_file): Use fstat on the input fd rather than
2136 stat on the filename, to be certain a file rename can't mean we get
2137 info on one filesystem object but open another. This fstat usage is
2138 similar to Emacs copy-file.
2139
2140 * posix.c (scm_setgroups): Enhance docstring, per doc/ref/posix.texi.
2141
2142 * simpos.c (scm_system_star): Change scm_from_long to scm_from_int on
2143 SIGINT and SIGQUIT, since those values are ints.
2144
2145 2004-08-03 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2146
2147 * num2integral.i.c, num2float.i.c: Removed.
2148 * Makefile.am (noinst_HEADERS): Updated.
2149
2150 * numbers.h. numbers.c (scm_make_ratio): Renamed to
2151 scm_i_make_ratio and made static, replaced uses with scm_divide.
2152 (scm_complex_p): New, export as "complex?" to Scheme.
2153 (scm_number_p): Export as "number?" to Scheme.
2154 (scm_is_complex, scm_is_number): New.
2155 (scm_c_make_rectangular, scm_c_make_polar): New.
2156 (scm_make_rectangular, scm_make_polar): Use above.
2157 (scm_c_real_part, scm_c_imag_part, scm_c_magnitude, scm_c_angle):
2158 New.
2159 (scm_make_complex): Discouraged by moving to discouraged.h and
2160 discouraged.c. Replaced all uses with scm_c_make_rectangular.
2161
2162 * discouraged.h, discouraged.c, numbers.c, numbers.h
2163 (scm_is_rational): New.
2164 (scm_i_short2big, scm_i_int2big, scm_i_uint2big, scm_i_size2big,
2165 scm_i_ptrdiff2big, scm_i_long_long2big, scm_i_ulong_long2big):
2166 Removed prototypes.
2167 (scm_make_real, scm_num2dbl, scm_float2num, scm_double2num):
2168 Discouraged by moving to discouraged.h and discouraged.c.
2169 Replaced all uses with scm_from_double.
2170 (scm_num2float, scm_num2double): Discouraged by moving prototype
2171 to discouraged.h and rewriting in terms of scm_to_double.
2172 Replaced all uses with scm_to_double.
2173 (scm_to_double): Do not implement in terms of scm_num2dbl, use
2174 explicit code.
2175 (scm_from_double): Do not implement in terms of scm_make_real, use
2176 explicit code.
2177
2178 2004-08-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2179
2180 * init.c (scm_init_guile_1): Call scm_i_init_discouraged.
2181
2182 * gen-scmconfig.h.in (SCM_I_GSC_ENABLE_DISCOURAGED): New.
2183 * gen-scmconfig.c (SCM_ENABLE_DISCOURAGED): Emit based on above.
2184
2185 * eval.c (SCM_EVALIM, SCM_EVALIM2, SCM_XEVAL, SCM_XEVALCAR):
2186 Renamed to SCM_I_* in order to avoid collisions with the versions
2187 defined in deprecated.h.
2188
2189 * discouraged.h, discouraged.c: New files.
2190
2191 * deprecated.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP, SCM_EQ_P,
2192 SCM_NEGATE_BOOL, SCM_BOOL, SCM_BOOT_NOT): Promoted from being
2193 deprecated to being discouraged by moving to discouraged.h.
2194
2195 * numbers.h, numbers.c, discouraged.h, discouraged.c
2196 (scm_short2num, scm_ushort2num, scm_int2num, scm_uint2num,
2197 scm_long2num, scm_ulong2num, scm_size2num, scm_ptrdiff2num,
2198 scm_num2short, scm_num2ushort, scm_num2int, scm_num2uint,
2199 scm_num2long, scm_num2ulong, scm_num2size, scm_num2ptrdiff,
2200 scm_long_long2num, scm_ulong_long2num, scm_num2long_long,
2201 scm_num2ulong_long): Discouraged by moving to discouraged.h and
2202 discouraged.c and reimplementing in terms of scm_from_* and
2203 scm_to_*. Changed all uses to the new scm_from_* and scm_to_*
2204 functions.
2205
2206 * numbers.h, numbers.c: Removed GUILE_DEBUG code.
2207 (scm_i_short2big, scm_i_ushort2big, scm_i_int2big, scm_i_uint2big,
2208 scm_i_size2big, scm_i_ptrdiff2big): Removed.
2209 (scm_i_long2big, scm_i_ulong2big): New, explicit definitions.
2210 * conv-integer.i.c, conv-uinteger.i.c: Use them instead of
2211 explicit code.
2212
2213 2004-08-02 Kevin Ryde <user42@zip.com.au>
2214
2215 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Add comments about past
2216 and current usage and migration.
2217
2218 2004-07-31 Kevin Ryde <user42@zip.com.au>
2219
2220 * error.c (scm_strerror): Use scm_i_misc_mutex around strerror since
2221 it's not thread safe.
2222 (scm_syserror): Use scm_strerror rather than SCM_I_STRERROR, to take
2223 advantage of this.
2224 * fports.c (scm_open_file): Use scm_strerror likewise.
2225 * filesys.c (scm_stat, scm_lstat): Ditto.
2226
2227 * filesys.c (scm_copy_file): Avoid fd leak when destination file
2228 cannot be opened.
2229
2230 * symbols.c (scm_gensym): Use scm_i_misc_mutex around gensym_counter
2231 update, for thread safety.
2232 (gensym_counter): Move into scm_gensym which is its only user.
2233 (scm_init_symbols): No need to explicitly initialize gensym_counter.
2234
2235 2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2236
2237 * numbers.h (scm_to_schar, scm_to_uchar, scm_to_char,
2238 scm_to_short, scm_to_ushort, scm_to_int, scm_to_uint, scm_to_long,
2239 scm_to_ulong, scm_to_long_long, scm_to_ulong_long, scm_to_intmax,
2240 scm_to_uintmax, scm_to_size_t, scm_to_ssize_t scm_from_schar,
2241 scm_from_uchar, scm_from_char, scm_from_short, scm_from_ushort,
2242 scm_from_int, scm_from_uint, scm_from_long, scm_from_ulong,
2243 scm_from_long_long, scm_from_ulong_long, scm_from_intmax,
2244 scm_from_uintmax, scm_from_size_t, scm_from_ssize_t): No longer
2245 defined in terms of scm_to_signed_integer, etc, but in terms of
2246 scm_to_int8, etc.
2247
2248 * gen-scmconfig.c (SCM_SIZEOF_INTMAX, SCM_SIZEOF_SIZE_T): New.
2249
2250 * gen-scmconfig.h.in: Removed SCM_I_GSC_*_LIMITS macros, they are
2251 no longer used.
2252
2253 * __scm.h (SCM_I_UTYPE_MAX, SCM_I_TYPE_MAX, SCM_I_TYPE_MIN,
2254 SCM_I_SIZE_MAX, SCM_I_SSIZE_MIN, SCM_I_SSIZE_MAX): New.
2255
2256 * __scm.h, gen-scmconfig.c (SCM_I_LLONG_MAX, SCM_I_LLONG_MIN,
2257 SCM_I_ULLONG_MAX, SCM_T_INT8_MIN, SCM_T_INT8_MAX, SCM_T_UINT8_MAX,
2258 SCM_T_INT16_MIN, SCM_T_INT16_MAX, SCM_T_UINT16_MAX,
2259 SCM_T_INT32_MIN, SCM_T_INT32_MAX, SCM_T_UINT32_MAX,
2260 SCM_T_INT64_MIN, SCM_T_INT64_MAX, SCM_T_UINT64_MAX,
2261 SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX, SCM_T_UINTMAX_MAX): Moved
2262 definition into __scm.h, using new SCM_I_TYPE_MIN, etc.
2263
2264 * conv-integer.i.c, conv-uinteger.i.c: New files, used to generate
2265 the functions below.
2266
2267 * Makefile.am (noinst_HEADERS): Added conv-integer.i.c and
2268 conv-uinteger.i.c.
2269
2270 * numbers.c, numbers.h (scm_to_int8, scm_to_uint8, scm_to_int16,
2271 scm_to_uint16, scm_to_int32, scm_to_uint32, scm_to_int64,
2272 scm_to_uint64, scm_from_int8, scm_from_uint8, scm_from_int16,
2273 scm_from_uint16, scm_from_int32, scm_from_uint32, scm_from_int64,
2274 scm_from_uint64): Turned from macros into proper functions.
2275 (scm_to_signed_integer, scm_to_unsigned_integer,
2276 scm_from_signed_integer, scm_from_unsigned_integer): Generate via
2277 conv-integer.i.c and conv-uinteger.i.c, as well.
2278
2279 * number.h (scm_to_ssize_t, scm_to_size_t): Use the new
2280 SCM_I_SSIZE_MIN, SCM_I_SSIZE_MAX, and SCM_I_SIZE_MAX macros for
2281 the limits. Those are always defined.
2282
2283 2004-07-29 Kevin Ryde <user42@zip.com.au>
2284
2285 * posix.c (scm_ttyname): Use scm_i_misc_mutex for thread safety.
2286
2287 2004-07-28 Kevin Ryde <user42@zip.com.au>
2288
2289 * posix.c (scm_ctermid): Use an L_ctermid buf on the stack, for thread
2290 safety.
2291
2292 * unif.c (scm_array_set_x): For svect, use scm_num2short for
2293 consistency with other vector types and to get arg and func name into
2294 error message.
2295
2296 2004-07-27 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2297
2298 * deprecated.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOLP, SCM_BOOL):
2299 Reimplement using scm_is_false, scm_is_true, scm_is_bool, and
2300 scm_from_bool, respectively.
2301 (SCM_NINUMP): Added.
2302
2303 * tags.h, deprecated.h (SCM_EQ_P): Deprecated by moving it into
2304 deprecated.h. Replaced all uses with scm_is_eq.
2305
2306 2004-07-24 Kevin Ryde <user42@zip.com.au>
2307
2308 * threads.c, threads.h (scm_i_misc_mutex): New SCM_GLOBAL_MUTEX.
2309 * posix.c (scm_crypt): Use it to protect static data in crypt().
2310
2311 2004-07-23 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2312
2313 * deprecated.h, deprecated.c, numbers.h (SCM_INUMP, SCM_NINUMP,
2314 SCM_INUM): Deprecated by renaming them to SCM_I_INUMP,
2315 SCM_I_NINUMP and SCM_I_INUM, respectively and adding deprecated
2316 versions to deprecated.h and deprecated.c. Changed all uses to
2317 either use the SCM_I_ variants or scm_is_*, scm_to_*, or
2318 scm_from_*, as appropriate.
2319
2320 * dynwind.c (scm_i_dowinds): Removed unused code that would call
2321 the unexisting scm_cross_dynwind_binding_scope for inums on the
2322 windlist.
2323
2324 2004-07-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2325
2326 * socket.c (ipv6_net_to_num, scm_from_ipv6): Renamed
2327 ipv6_net_to_num to scm_from_ipv6, for converting from an IPv6
2328 byte-wise address to a SCM integer. Changed all uses.
2329 (ipv6_num_to_net, scm_to_ipv6): Renamed ipv6_num_to_net to
2330 scm_to_ipv6 and added type and range checking, for converting from
2331 an IPv& byte-wise address to a SCM integer. Changed all uses.
2332 (bignum_in_ipv6_range_p, VALIDATE_INET6): Removed, their function
2333 is now done by scm_to_ipv6.
2334
2335 * numbers.c (scm_to_signed_integer, scm_to_unsigned_integer): dot
2336 not accept inexact integers.
2337
2338 * validate.h, deprecated.h (SCM_VALIDATE_INUM,
2339 SCM_VALIDATE_INUM_COPY, SCM_VALIDATE_BIGINT,
2340 SCM_VALIDATE_INUM_MIN, SCM_VALIDATE_INUM_MIN_COPY,
2341 SCM_VALIDATE_INUM_MIN_DEF_COPY,SCM_VALIDATE_INUM_DEF,
2342 SCM_VALIDATE_INUM_DEF_COPY, SCM_VALIDATE_INUM_RANGE,
2343 SCM_VALIDATE_INUM_RANGE_COPY): Deprecated because they make the
2344 fixnum/bignum distinction visible. Changed all uses to
2345 scm_to_size_t or similar.
2346
2347 2004-07-09 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2348
2349 * cpp_cnvt.awk: Use scm_from_int instead of SCM_MAKINUM.
2350
2351 2004-07-10 Kevin Ryde <user42@zip.com.au>
2352
2353 * hash.c (scm_hashq, scm_hashv, scm_hash): Restrict to size>=1 rather
2354 than size>=0, since 0<=hash<size cannot be satisfied for size==0, and
2355 such a size causes divide-by-zeros in scm_hasher.
2356
2357 * regex-posix.c (scm_make_regexp): Free rx on error, to avoid memory
2358 leak.
2359
2360 2004-07-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2361
2362 * numbers.c (scm_is_signed_integer, scm_is_unsigned_integer):
2363 Rewritten using the same logic as scm_to_signed_integer and
2364 scm_to_unsigned_integer, respectively, which is better(tm). Also,
2365 use CHAR_BIT instead of hardcoding 8.
2366 (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Removed and used
2367 SCM_I_LLONG_MIN etc. instead.
2368
2369 * numbers.h (SCM_MAKINUM, SCM_I_MAKINUM): Renamed SCM_MAKINUM to
2370 SCM_I_MAKINUM and changed all uses.
2371 * deprecated.h, deprecated.c (SCM_MAKINUM): Newly deprecated.
2372
2373 * gen-scmconfig.c (SCM_I_LLONG_MIN, SCM_I_LLONG_MAX,
2374 SCM_I_ULLONG_MAX): Instead of hard-coding the numbers, compute
2375 them by assuming twos-complement.
2376
2377 2004-07-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2378
2379 * gen-scmconfig.h.in: Added all the new SCM_I_GSC_*_LIMITS that
2380 configure now produces.
2381 * gen-scmconfig.c: Use them to output SCM_T_INT8_MIN, etc
2382 definitions, giving the limits of the integer types defined by
2383 Guile. Also, output a hard coded SCM_I_LLONG_MIN, etc since
2384 LLONG_MIN or LONG_LONG_MIN is hard to get at.
2385
2386 * numbers.h (scm_to_short, scm_to_ushort): It's SHRT_MIN, etc, not
2387 SHORT_MIN.
2388 (scm_to_size_t): Use SIZE_MAX instead of cooking our own.
2389 (scm_to_long_long, scm_to_ulong_long, scm_to_int8, scm_to_uint8,
2390 scm_to_int16, scm_to_uint16, scm_to_int32, scm_to_uint32,
2391 scm_to_int64, scm_to_uint64, scm_to_intmax, scm_to_uintmax,
2392 scm_from_long_long, scm_from_ulong_long, scm_from_int8,
2393 scm_from_uint8, scm_from_int16, scm_from_uint16, scm_from_int32,
2394 scm_from_uint32, scm_from_int64, scm_from_uint64, scm_from_intmax,
2395 scm_from_uintmax): New.
2396
2397 2004-07-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2398
2399 * tags.h (scm_is_eq): New.
2400
2401 * deprecated.h, boolean.h (SCM_FALSEP, SCM_NFALSEP, SCM_BOOL,
2402 SCM_NEGATE_BOOL, SCM_BOOLP): Deprecated by moving into
2403 "deprecated.h". Replaced all uses with scm_is_false, scm_is_true,
2404 scm_from_bool, and scm_is_bool, respectively.
2405
2406 * boolean.h (scm_is_bool): Fix bug in prototype.
2407 (scm_from_bool): The argument is "x" not "f", stupid.
2408
2409 * boolean.c (scm_is_bool): Fix typo.
2410
2411 * numbers.h, numbers.c (scm_is_integer, scm_is_signed_integer,
2412 scm_is_unsigned_integer, scm_to_signed_integer,
2413 scm_to_unsigned_integer, scm_to_schar, scm_to_uchar, scm_to_char,
2414 scm_to_short, scm_to_ushort, scm_to_long, scm_to_ulong,
2415 scm_to_size_t, scm_to_ssize_t, scm_from_schar, scm_from_uchar,
2416 scm_from_char, scm_from_short, scm_from_ushort, scm_from_int,
2417 scm_from_uint, scm_from_long, scm_from_ulong, scm_from_size_t,
2418 scm_from_ssize_t, scm_is_real, scm_to_double, scm_from_double):
2419 New.
2420
2421 2004-07-05 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2422
2423 * boolean.h, boolean.c (scm_is_true, scm_is_false, scm_from_bool,
2424 scm_to_bool): New.
2425
2426 2004-06-27 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2427
2428 * backtrace.c (display_expression, display_frame): Call
2429 scm_i_unmemoize_expr for unmemoizing a memoized object holding a
2430 single memoized expression.
2431
2432 * debug.c (memoized_print): Don't try to unmemoize the memoized
2433 object, since we can't know whether it holds a single expression
2434 or a body.
2435
2436 (scm_mem_to_proc): Removed check for lambda expression, since it
2437 was moot anyway. Whoever uses these functions for debugging
2438 purposes should know what they do: Creating invalid memoized code
2439 will cause crashes, independent of whether this check is present
2440 or not.
2441
2442 (scm_proc_to_mem): Take the closure's code as it is and don't
2443 append a SCM_IM_LAMBDA isym. To allow easier debugging, the
2444 memoized code should not be modified.
2445
2446 * debug.[ch] (scm_unmemoize, scm_i_unmemoize_expr): Removed
2447 scm_unmemoize from public use, but made scm_i_unmemoize_expr
2448 available as a guile internal function instead. However,
2449 scm_i_unmemoize_expr will only work on memoized objects that hold
2450 a single memoized expression. It won't work with bodies.
2451
2452 * debug.c (scm_procedure_source), macros.c (macro_print), print.c
2453 (scm_iprin1): Call scm_i_unmemocopy_body for unmemoizing a body,
2454 i. e. a list of expressions.
2455
2456 * eval.c (unmemoize_exprs): Drop internal body markers from the
2457 output during unmemoization.
2458
2459 * eval.[ch] (scm_unmemocopy, scm_i_unmemocopy_expr,
2460 scm_i_unmemocopy_body): Removed scm_unmemocopy from public use,
2461 but made scm_i_unmemocopy_expr and scm_i_unmemocopy_body available
2462 as guile internal functions instead. scm_i_unmemoize_expr will
2463 only work on a single memoized expression, while
2464 scm_i_unmemocopy_body will only work on bodies.
2465
2466 2004-06-21 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2467
2468 * eval.c (unmemoize_exprs): Handle semi-memoized code.
2469
2470 (scm_cons_source, scm_primitive_eval): Prefer higher level
2471 predicate SCM_FALSEP over SCM_IMP.
2472
2473 2004-06-15 Rob Browning <rlb@defaultvalue.org>
2474
2475 * script.c (scm_shell_usage): minor phrasing change.
2476
2477 * gc_os_dep.c: update ifdefery for macosx.
2478 (scm_get_stack_base): separate result initialization from
2479 declaration to slience warnings with macosx and hp-ux using gcc
2480 3.3. Thanks to Andreas Vögele.
2481
2482 2004-06-13 Han-Wen Nienhuys <hanwen@xs4all.nl>
2483
2484 * eval.c (unmemoize_exprs): use SCM_CONSP for the loop condition.
2485
2486 2004-06-06 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2487
2488 * list.[ch] (scm_i_finite_list_copy): New internal function to
2489 copy lists that are known to be finite (though not necessarily
2490 proper).
2491
2492 * debug.c (scm_procedure_source): Don't have scm_unmemocopy treat
2493 a closure's argument list like an expression of a body.
2494
2495 * eval.c (unmemoize_expression, unmemoize_exprs, unmemoize_and,
2496 unmemoize_begin, unmemoize_case, unmemoize_cond, unmemoize_delay,
2497 unmemoize_do, unmemoize_if, unmemoize_lambda, unmemoize_let,
2498 unmemoize_letrec, unmemoize_letstar, unmemoize_or,
2499 unmemoize_set_x, unmemoize_apply, unmemoize_atcall_cc,
2500 unmemoize_at_call_with_values, unmemoize_future, sym_atslot_ref,
2501 unmemoize_atslot_ref, sym_atslot_set_x, unmemoize_atslot_set_x,
2502 unmemoize_builtin_macro): New static functions and symbols.
2503
2504 (scm_unmemocopy): Rewritten in terms of the above. scm_unmemocopy
2505 now has a slightly different meaning: The memoized form that is
2506 receives as its argument is now interpreted as a sequence of
2507 expressions from a body.
2508
2509 (unmemocar, scm_unmemocar): Since the whole functionality of
2510 unmemocar and scm_unmemocar is not needed any more, scm_unmemocar
2511 has its old content back and is deprecated, while unmemocar has
2512 been removed.
2513
2514 (SCM_BIT7): Removed.
2515
2516 (CEVAL): For unmemoizing a single expression, call
2517 unmemoize_expression instead of scm_unmemocopy, which now expects
2518 a sequence of body expressions. Eliminated unnecessary empty
2519 environment frame when executing let* forms. Eliminated
2520 unmemoization step from evaluator.
2521
2522 2004-06-02 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2523
2524 * eval.c (scm_macroexp, macroexp): Renamed scm_macroexp to
2525 macroexp and made static. Added new version of scm_macroexp that
2526 emits a deprecation warning and then calls macroexp.
2527 (scm_m_undefine): Issue deprecation warning.
2528
2529 2004-05-30 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2530
2531 * eval.c (lookup_global_symbol, literal_p, try_macro_lookup):
2532 Modified to make set! work on symbols that represent syntactic
2533 keywords.
2534
2535 2004-05-26 Han-Wen Nienhuys <hanwen@xs4all.nl>
2536
2537 * gc.h (SCM_CELL_OBJECT_LOC): use SCM_GC_CELL_OBJECT to prevent
2538 compound expression as lvalue errors.
2539
2540 2004-05-24 Marius Vollmer <mvo@zagadka.de>
2541
2542 * dynwind.c (winder_mark): Use SCM_PACK to correctly convert the
2543 WINDER_DATA to a SCM.
2544
2545 2004-05-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2546
2547 * goops.c (compute_getters_n_setters, create_standard_classes,
2548 scm_add_slot): Compute closures by calling scm_i_eval_x on a
2549 lambda expression rather than creating them with scm_closure.
2550
2551 2004-05-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2552
2553 * eval.c (s_macro_keyword, scm_m_set_x): Remove checking for
2554 misplaced syntactic keywords. This will not work unless guile's
2555 defmacro feature is deprecated.
2556
2557 (scm_m_case): Fixed a bug that caused the list of labels to grow
2558 with every case form.
2559
2560 2004-05-19 Kevin Ryde <user42@zip.com.au>
2561
2562 * numbers.c (scm_round_number): For inum and big, just return x. For
2563 real, use scm_round for 2^54-1 etc problems covered there.
2564
2565 * numbers.c (trunc): Remove #define to scm_truncate when the C library
2566 doesn't provide trunc. This was for when `truncate' was done as a
2567 scm_tc7_dsubr, no longer required.
2568
2569 * threads.c (scm_threads_mark_stacks) [SCM_STACK_GROWS_UP]: Correction
2570 to stack marking call, two parameters and no cast on t->base.
2571
2572 2004-05-18 Marius Vollmer <mvo@zagadka.de>
2573
2574 * hashtab.c (rehash_after_gc): Bug fix: properly link the
2575 processed hashtables back into the weak_hashtables list. Thanks
2576 to Bill Schottstaedt!
2577
2578 2004-05-16 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2579
2580 * eval.c (unmemoize_quote): New static function.
2581
2582 (scm_m_quote, scm_m_atslot_ref, SCM_CEVAL): Changed the byte code
2583 representation of 'quote' and '@slot-ref' to an improper list.
2584 This reduces execution time, the number of cells used to hold the
2585 memoized code, and thus also reduces garbage collection time.
2586
2587 (scm_unmemocopy): Use unmemoize_quote for quote expressions.
2588
2589 (SCM_CEVAL): Changed macro handling to also work with macros that
2590 return improper lists. Added an assertion, that the code returned
2591 by a macro transformer will not lead to cycles in the memoized
2592 code.
2593
2594 2004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2595
2596 No functional change, just rearrangements of functions within the
2597 file.
2598
2599 * eval.c (scm_ilookup, scm_unbound_variable_key,
2600 error_unbound_variable, scm_lookupcar1, scm_lookupcar): Moved to
2601 the definitions used for execution, since that's where they will
2602 belong to later.
2603
2604 2004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2605
2606 * numbers.h (SCM_SLOPPY_FRACTIONP): Removed. It was not used
2607 throughout guile, has not been part of an official release yet,
2608 and the concept of sloppy predicates has never been a good idea.
2609
2610 (SCM_FRACTION_NUMERATOR, SCM_FRACTION_DENOMINATOR,
2611 SCM_FRACTION_SET_NUMERATOR, SCM_FRACTION_SET_DENOMINATOR):
2612 Simplified.
2613
2614 2004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2615
2616 * throw.c (SETJBJMPBUF, SCM_SETJBDFRAME): Add cast to scm_t_bits
2617 to make explicit what happens.
2618
2619 2004-05-15 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2620
2621 * dynl.c (SET_DYNL_HANDLE): Add cast to scm_t_bits to make
2622 explicit what happens.
2623
2624 * guardians.c (TCONC_IN): Use SCM_SET_CELL_OBJECT_x rather than
2625 SCM_SET_CELL_WORD_x when writing scheme objets to cell elements.
2626
2627 2004-05-11 Marius Vollmer <mvo@zagadka.de>
2628
2629 * scmsigs.c (scm_sigaction_for_thread): Validate that the handler
2630 is indeed a procedure when it isn't a number.
2631
2632 2004-05-10 Marius Vollmer <mvo@zagadka.de>
2633
2634 Convert floating point numbers into strings with an arbitrary
2635 radix. Thanks to Richard Todd!
2636
2637 * numbers.c (FLOBUFLEN): Increase so that radix 2 strings will
2638 fit.
2639 (fx): Removed.
2640 (scm_dblprec, fx_per_radix, init_dblprec, init_fx_radix,
2641 number_chars): New, to support variable radices.
2642 (idbl2str): Use above instead of the old base-10 only tables.
2643 (iflo2str): Pass on new RADIX argument to idbl2str.
2644 (scm_number_to_string): Pass radix to iflo2str.
2645 (scm_print_real, scm_print_complex): Explicitly pass radix 10 to
2646 iflo2str.
2647 (scm_init_numbers): Call init_dblprec and init_fx_radix for all
2648 possible radices.
2649
2650 2004-05-10 Kevin Ryde <user42@zip.com.au>
2651
2652 * numbers.c (scm_logbit_p): Correction to test above the end of an
2653 inum. Reported by Jan Konecny.
2654
2655 2004-05-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
2656
2657 * gc.h (scm_t_cell): Fields are now of type SCM instead of
2658 scm_t_bits. Updated all users.
2659 (SCM_GC_CARD_SIZE_MASK): Use SCM_GC_SIZEOF_CARD instead of
2660 duplicating the code.
2661 (SCM_CELL_OBJECT_LOC): New.
2662 (SCM_CARLOC, SCM_CDRLOC): Use it instead of SCM_CELL_WORD_LOC.
2663 (SCM_CELL_WORD_LOC): Moved to "deprecated.h".
2664
2665 * smob.h (SCM_SMOB_DATA_2, SCM_SMOB_DATA_3, SCM_SMOB_FLAGS,
2666 SCM_SET_SMOB_DATA_2, SCM_SET_SMOB_DATA_3, SCM_SET_SMOB_FLAGS,
2667 SCM_SMOB_OBJECT, SCM_SMOB_OBJECT_2, SCM_SMOB_OBJECT_3,
2668 SCM_SET_SMOB_OBJECT, SCM_SET_SMOB_OBJECT_2, SCM_SET_SMOB_OBJECT_3,
2669 SCM_SMOB_OBJECT_LOC, SCM_SMOB_OBJECT_2_LOC,
2670 SCM_SMOB_OBJECT_3_LOC): New.
2671 * smob.c (scm_i_set_smob_flags): New function.
2672
2673 * dynl.c, dynwind.c, eval.h, fluids.h, futures.h, hashtab.h,
2674 hooks.h, keywords.h, macros.h, macros.c, mallocs.c, mallocs.h,
2675 random.h, regex-posix.h, root.h, srcprop.h, srcprop.c, threads.h:
2676 Use SCM_SMOB_* instead of SCM_CELL_* as appropriate. Use
2677 SCM_SMOB_FLAGS and SCM_SET_SMOB_FLAGS instead of accessing the
2678 zeroth word directly. Use SCM_SMOB_PREDICATE as appropriate.
2679
2680 * numbers.h (SCM_I_BIG_MPZ): Use SCM_CELL_OBJECT_LOC instead of
2681 taking the address of SCM_CELL_WORD_1, the latter being no longer
2682 an lvalue.
2683
2684 * variable.h (SCM_VARIABLE_LOC): Use SCM_CELL_OBJECT_LOC instead
2685 of casting SCM_CELL_WORD_LOC.
2686
2687 2004-05-02 Kevin Ryde <user42@zip.com.au>
2688
2689 * eval.c (scm_macroexp): Add prototype, since it's not in eval.h under
2690 --disable-deprecated. Reported by Andreas Vögele.
2691
2692 * filesys.c (_POSIX_C_SOURCE): Define to 199506L to get readdir_r (in
2693 particular on HP-UX). Reported by Andreas Vögele.
2694
2695 * list.c (varargs.h): Remove, leave just stdarg.h which is all the
2696 code has support for. Fixes building with AIX cc, which is ansi but
2697 doesn't define __STDC__. Reported by Keith Crane.
2698 (var_start): Remove macro, this variation no longer required.
2699 (scm_list_n): Use va_start directly.
2700
2701 2004-05-01 Kevin Ryde <user42@zip.com.au>
2702
2703 * continuations.c (scm_dynthrow): Use >= instead of SCM_PTR_GE which
2704 is now gone. Reported by Andreas Vögele.
2705
2706 2004-04-28 Kevin Ryde <user42@zip.com.au>
2707
2708 * backtrace.c (display_frame_expr), numbers.c (XDIGIT2UINT,
2709 mem2uinteger, mem2decimal_from_point, mem2ureal): Cast char to int for
2710 ctype.h tests, to avoid warnings from gcc on HP-UX about char as array
2711 subscript. Reported by Andreas Vögele.
2712 Also cast through unsigned char to avoid passing negatives to those
2713 macros if input contains 8-bit values.
2714
2715 * num2integral.i.c (NUM2INTEGRAL): Under non-BIGMPZ_FITSP case,
2716 corrections to range check for signed numbers. Remove
2717 scm_remember_upto_here_1(num) from these checks, since num is used
2718 subsequently anyway.
2719
2720 * num2integral.i.c (NUM2INTEGRAL): Test BIGMPZ_FITSP with "!= 0" to
2721 avoid warning from gcc 3.4. Reported by Hyperdivision.
2722
2723 * numbers.c (scm_bit_extract): Use min instead of MIN.
2724 (MIN): Remove, this conflicts with similar macro defined by limits.h
2725 on HP-UX. Reported by Andreas Vögele.
2726
2727 * stime.c (_POSIX_C_SOURCE): Define to 199506L to get gmtime_r (in
2728 particular on HP-UX). Reported by Andreas Vögele.
2729
2730 * threads.c (scm_threads_mark_stacks): Correction sizet -> size_t.
2731 Reported by Andreas Vögele.
2732
2733 * threads-plugin.h (SCM_MUTEX_MAXSIZE): Increase to 25*sizeof(long),
2734 for the benefit of hpux11 where pthread_mutex_t is 88 bytes. Reported
2735 by Andreas Vögele.
2736
2737 2004-04-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2738
2739 * eval.c (s_macro_keyword): New static identifier.
2740
2741 (scm_m_define): Change order to first create binding and
2742 evaluating the expression afterwards.
2743
2744 (scm_m_set_x): Memoize complete set! expression. Only leave
2745 symbols if no binding exists at memoization time. Throw error if
2746 assigning to a syntactic keyword.
2747
2748 (lazy_memoize_variable): New function.
2749
2750 (CEVAL): When execution set!, perform lazy memoization if
2751 unmemoized symbol is detected.
2752
2753 * modules.c (module_variable): Return variables with unbound
2754 value.
2755
2756 * tags.h: Fix comment.
2757
2758 2004-04-25 Kevin Ryde <user42@zip.com.au>
2759
2760 * chars.c (scm_char_upcase, scm_char_downcase, scm_c_upcase,
2761 scm_c_downcase): Use ctype.h toupper and tolower. This will be useful
2762 in 8-bit locales, and ensures consistency with char-upper-case? and
2763 char-lower-case? which already use ctype.h.
2764 (scm_c_upcase_table, scm_c_downcase_table, scm_lowers, scm_uppers):
2765 Remove.
2766 * chars.c, chars.h, init.c (scm_tables_prehistory): Remove.
2767
2768 * socket.c (VALIDATE_INET6): Correction to bignum_in_ipv6_range_p
2769 call. Reported by Hyperdivision.
2770
2771 * threads.c (scm_yield): Correction, actually call scm_thread_yield.
2772 Reported by Hyperdivision.
2773
2774 * unif.c (s_scm_make_uve): Remove unused local variable. Reported by
2775 Hyperdivision.
2776
2777 2004-04-22 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2778
2779 Hide the implementation of ilocs and isyms in eval.c.
2780
2781 * deprecated.h (SCM_IFRINC, SCM_ICDR, SCM_IFRAME, SCM_IDIST,
2782 SCM_ICDRP), eval.c (SCM_IFRINC, SCM_ICDR, SCM_IFRAME, SCM_IDIST,
2783 SCM_ICDRP), eval.h (SCM_ICDR, SCM_IFRINC, SCM_IFRAME, SCM_IDIST,
2784 SCM_ICDRP): Deprecated and added to deprecated.h. Moved from
2785 eval.h to eval.c.
2786
2787 * deprecated.c (scm_isymnames), deprecated.h (scm_isymnames,
2788 SCM_ISYMNUM, SCM_ISYMCHARS), eval.c (SCM_ISYMNUM, isymnames,
2789 scm_unmemocopy, CEVAL), print.c (scm_isymnames), tags.h
2790 (SCM_ISYMNUM, scm_isymnames, SCM_ISYMCHARS): Deprecated
2791 scm_isymnames, SCM_ISYMNUM and SCM_ISYMCHARS and added to
2792 deprecated.[hc]. Moved scm_isymnames from print.c to eval.c and
2793 renamed to isymnames. Moved SCM_ISYMNUM from tags.h to eval.c and
2794 renamed to ISYMNUM.
2795
2796 * eval.c (scm_i_print_iloc, scm_i_print_isym), eval.h
2797 (scm_i_print_iloc, scm_i_print_isym), print.c (scm_iprin1):
2798 Extracted printing of ilocs and isyms to guile internal functions
2799 scm_i_print_iloc, scm_i_print_isym of eval.c.
2800
2801 2004-04-22 Kevin Ryde <user42@zip.com.au>
2802
2803 * numbers.c (scm_bit_extract): Use SCM_SRS for signed right shift.
2804
2805 * numbers.c (scm_round): Test for x already an integer, to avoid bad
2806 rounding in x+0.5 when x is a big value already an integer. In
2807 certain hardware rounding cases x+0.5 can give an adjacent integer,
2808 leading to that as the result, when we really just wanted x itself.
2809
2810 2004-04-19 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2811
2812 * eval.c (scm_unmemocopy): Fixed unmemoization of let*.
2813
2814 (deval_args, CEVAL): Minor improvements: Reduced variable scopes,
2815 added const qualifiers, cast intentionally unused expressions to
2816 void for emphasis, improved comment.
2817
2818 2004-04-18 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2819
2820 * tags.h (scm_tags, scm_tc8_tags, scm_tc9_flag, scm_tc8_flag,
2821 scm_tc8_isym): Renamed scm_tags to scm_tc8_tags. Renamed
2822 scm_tc9_flag to scm_tc8_flag. Introduced new identifier
2823 scm_tc8_isym. Defined tc8-tags relative to scm_tc3_imm24.
2824 Defined the tc8-tag for flags to be 0x04, which will mean that
2825 SCM_BOOL_F will also have the value 0x04 instead of 0x013c. Due
2826 to the reduced number of bits and the simpler bit pattern for
2827 SCM_BOOL_F, certain machines may be able to use more efficient
2828 processor instructions to deal with SCM_BOOL_F.
2829
2830 (SCM_ITAG9, SCM_MAKE_ITAG9, SCM_ITAG9_DATA): Removed. These have
2831 never been defined in a released version, thus no need to
2832 deprecate them.
2833
2834 (SCM_IFLAGP, SCM_MAKIFLAG, SCM_IFLAGNUM): Flags now use tc8
2835 instead of tc9 tags.
2836
2837 (SCM_ISYMP, SCM_MAKISYM, SCM_ISYMNUM): Isyms now use tc8 instead
2838 of tc9 tags.
2839
2840 (SCM_MAKSPCSYM): Removed. It is almost impossible that user code
2841 could have used this definition.
2842
2843 (SCM_IM_AND, SCM_IM_BEGIN, SCM_IM_CASE, SCM_IM_COND, SCM_IM_DO,
2844 SCM_IM_IF, SCM_IM_LAMBDA, SCM_IM_LET, SCM_IM_LETSTAR,
2845 SCM_IM_LETREC, SCM_IM_OR, SCM_IM_QUOTE, SCM_IM_SET_X): Now encoded
2846 as isyms, as special isyms don't exist any more.
2847
2848 2004-04-18 Kevin Ryde <user42@zip.com.au>
2849
2850 * filesys.c (scm_readdir): Use readdir_r when available, for thread
2851 safety.
2852
2853 * numbers.c (scm_max, scm_min): For big/real, use SCM_SWAP rather than
2854 explicit swapping code.
2855
2856 2004-04-15 Kevin Ryde <user42@zip.com.au>
2857
2858 * cpp_sig_symbols.in: Add SIGSYS.
2859
2860 * list.c (scm_append_x): Use iterative style, to avoid non-tail
2861 recursion.
2862
2863 * numbers.c (scm_max, scm_min): For inum/frac, frac/inum, big/frac,
2864 frac/big and frac/frac, use scm_less_p for exact comparison.
2865
2866 * numbers.c (scm_gcd): For inum/big, use mpz_gcd_ui by sharing code
2867 with big/inum.
2868
2869 * numbers.c (xisinf): Add a comment about solaris 7 lacking isinf.
2870
2871 2004-04-06 Han-Wen Nienhuys <hanwen@xs4all.nl>
2872
2873 * inline.h (scm_cell): use SCM_GC_CELL_WORD for checking tag.
2874
2875 * chars.h (scm_init_chars): change scm_{upcase,downcase} to
2876 scm_c_{up,down}case.
2877 (SCM_MAKE_CHAR): add (unsigned char) cast. This prevents havoc
2878 when hi-bit ASCII is subjected to SCM_MAKE_CHAR().
2879
2880 2004-04-06 Kevin Ryde <user42@zip.com.au>
2881
2882 * numbers.c (scm_ash): Remove stray "}" in docstring.
2883
2884 * numbers.c (scm_make_ratio): For inum/bignum integer detection, use
2885 x==SCM_MOST_NEGATIVE_FIXNUM explicitly, for clarity and to avoid
2886 calling mpz_cmp_ui in most cases.
2887
2888 * numbers.c (scm_quotient, scm_remainder): In inum/big, use mpz_cmp_ui
2889 for big == abs(most-negative-fixnum) special case.
2890 (abs_most_negative_fixnum): Remove, no longer used.
2891
2892 * scmsigs.c (scm_sigaction_for_thread): Correction to signum range
2893 test, avoids SCM_VECTOR_REF outside bounds of signal_handlers on
2894 calling (sigaction NSIG).
2895
2896 * simpos.c (scm_system_star): Fix execargv memory leak, merge parent
2897 and fork error cases to do this.
2898
2899 2004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2900
2901 * eval.c (CEVAL): Don't distinguish between short and long
2902 instructions when dispatching - just always dispatch on the
2903 instruction code, which is common for short and long instructions.
2904 Further, removed unnecessary goto statements and added comment.
2905
2906 2004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2907
2908 * eval.c (scm_unmemocopy): Don't distinguish between short and
2909 long instructions when dispatching - just always dispatch on the
2910 instruction code, which is common for short and long instructions.
2911 Further, removed unnecessary goto statements, fixed indentation
2912 and replaced SCM_IMP predicates by SCM_NULLP.
2913
2914 2004-04-03 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2915
2916 * eval.c (scm_lookupcar1, CEVAL): Use SCM_ILOCP instead of
2917 comparison with SCM_ILOC00. In CEVAL, eliminate goto-label
2918 'checkmacro'.
2919
2920 2004-03-31 Kevin Ryde <user42@zip.com.au>
2921
2922 * simpos.c: Include <signal.h> for SIG_IGN and friends.
2923
2924 2004-03-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2925
2926 Introduce scm_debug_mode_p as a replacement for scm_debug_mode and
2927 SCM_DEBUGGINGP:
2928
2929 * debug.h (scm_debug_mode_p, scm_debug_mode, SCM_DEBUGGINGP),
2930 eval.c (scm_debug_mode_p): Deprecated scm_debug_mode and
2931 SCM_DEBUGGINGP. Provided scm_debug_mode_p instead, to have one
2932 single interface that also matches the naming conventions.
2933 Probably scm_debug_mode_p should be part of the private interface
2934 anyway.
2935
2936 * debug.h (scm_debug_mode_p), backtrace.c (display_error_body),
2937 eval.c (SCM_APPLY, scm_trampoline_0, scm_trampoline_1,
2938 scm_trampoline_2): Change uses of scm_debug_mode or SCM_DEBUGGINGP
2939 to scm_debug_mode_p.
2940
2941
2942 Deprecate direct access to scm_ceval, scm_deval and scm_ceval_ptr:
2943
2944 * eval.h (scm_ceval, scm_deval, scm_ceval_ptr), debug.h
2945 (scm_ceval_ptr): Deprecated. Moved declaration of scm_ceval_ptr
2946 from debug.h to eval.h.
2947
2948 * debug.h (SCM_RESET_DEBUG_MODE): Don't access scm_ceval_ptr any
2949 more, just leave it with setting scm_debug_mode_p, which is
2950 equivalent for practical purposes.
2951
2952 * deprecated.h (SCM_XEVAL, SCM_XEVALCAR): Call scm_i_eval_x
2953 instead of *scm_ceval_ptr. Leave all evaluating to scm_i_eval_x.
2954
2955 * gdbint.c (gdb_eval): Call scm_i_eval_x instead of scm_ceval.
2956
2957 * eval.c (ceval, deval, scm_ceval, scm_deval): Made scm_ceval
2958 static and renamed it to ceval throughout. Provide a new exported
2959 but deprecated function scm_ceval as a wrapper for backwards
2960 compatibility. The same is done for the deval/scm_deval pair of
2961 functions.
2962
2963 * eval.c (CEVAL, SCM_CEVAL): Renamed SCM_CEVAL to CEVAL
2964 throughout. Defined CEVAL to ceval or deval, based on compilation
2965 phase.
2966
2967 * eval.c (SCM_XEVAL, SCM_XEVALCAR): Dispatch on scm_debug_mode_p
2968 to ceval and deval instead of calling *scm_ceval_ptr.
2969
2970 * eval.c (dispatching_eval): New deprecated static function.
2971
2972 * eval.c (scm_ceval_ptr): Initialized to dispatching_eval in order
2973 to emulate its old behaviour as closely as possible.
2974
2975
2976 Change the evaluator such that only expressions for which pair? is
2977 true are passed to CEVAL, and such that all other expressions are
2978 evaluated outside of CEVAL:
2979
2980 * eval.c (EVAL): New, provided in analogy to EVALCAR. Evaluate an
2981 expression that is assumed to be memoized already. All but
2982 expressions of the form '(<form> <form> ...)' are evaluated inline
2983 without calling an evaluator.
2984
2985 * eval.c (SCM_XEVAL, SCM_XEVALCAR, EVALCAR): Evaluate all but
2986 expressions of the form '(<form> <form> ...)' inline without
2987 calling an evaluator.
2988
2989 * eval.c (scm_i_eval_x, scm_i_eval, scm_ceval, scm_deval): Handle
2990 the special case of unmemoized symbols passed on the top level.
2991
2992 * eval.c (CEVAL): Change calls to CEVAL to EVAL, except where it
2993 is known that the expression passed to CEVAL is of the form
2994 '(<form> <form> ...)'. Remove handling of the tc7-objects, since
2995 now it is known that the input expression of CEVAL is a pair.
2996
2997 2004-03-29 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
2998
2999 * eval.c (is_self_quoting_p): New static function.
3000
3001 (scm_m_quote): Use is_self_quoting_p.
3002
3003 (copy_tree): Corrected typo in comment.
3004
3005 2004-03-28 Han-Wen Nienhuys <hanwen@xs4all.nl>
3006
3007 * eval.c (s_scm_copy_tree): idem.
3008
3009 * list.c (s_scm_filter): remove "pointer" from doc string.
3010
3011 * gc.h (SCM_GC_CELL_TYPE): SCM_GC_CELL_TYPE uses SCM_GC_CELL_OBJECT.
3012
3013 * goops.h (SCM_NUMBER_OF_SLOTS): don't SCM_UNPACK the result.
3014
3015 * backtrace.c ("display_backtrace_body"): SCM_PACK before SCM_EQ_P
3016 (display_frame): idem.
3017 (display_backtrace_file_and_line): idem.
3018
3019 * tags.h (SCM_UNPACK): stricter typechecking on SCM_UNPACK
3020 arguments.
3021
3022 2004-03-26 Kevin Ryde <user42@zip.com.au>
3023
3024 * filesys.c (scm_getcwd, scm_readlink): Avoid memory leak on errors.
3025
3026 * numbers.c (scm_modulo): For inum/big and big/big, remove test of
3027 big==0 since that never occurs.
3028
3029 * numbers.c, numbers.h (scm_modulo_expt): Renamed from
3030 scm_modular_expt, matching scheme level name `modulo-expt'.
3031
3032 * numbers.c (scm_modular_expt): Return a negative remainder for a
3033 negative divisor, the same as `modulo' does.
3034
3035 2004-03-26 Eric Hanchrow <offby1@blarg.net>
3036
3037 * numbers.c, numbers.h (scm_modular_expt): New function.
3038
3039 2004-03-25 Kevin Ryde <user42@zip.com.au>
3040
3041 * numbers.c (scm_min, scm_max): Correction to big/real and real/big,
3042 return inexact as required by r5rs.
3043
3044 2004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
3045
3046 * eval.c: Separated some definitions relevant for execution from
3047 the memoization part of the file.
3048
3049 (copy_tree): New static function
3050
3051 (scm_copy_tree): Rewritten to fix two kinds or bugs: First, cyclic
3052 structures are detected now and will lead to an exception instead
3053 of forcing guile to run in an endless loop, using up all the
3054 system's memory. Second, arrays in the cdr of an improper list
3055 are now copied. See the new test cases in eval.test.
3056
3057 2004-03-24 Dirk Herrmann <dirk@dirk-herrmanns-seiten.de>
3058
3059 * posix.c (scm_gethostname): Make sure len is initialised before
3060 it is used. Restructured to (hopefully) represent possible
3061 configurations more clearly in the code. Added unwind handler.
3062
3063 2004-03-23 Kevin Ryde <user42@zip.com.au>
3064
3065 * posix.c (scm_gethostname): Use sysconf(_SC_HOST_NAME_MAX) and/or
3066 MAXHOSTNAMELEN when available.
3067
3068 2004-03-21 Marius Vollmer <mvo@zagadka.de>
3069
3070 * read.c (skip_scsh_block_comment): Also recognize '\r' as a line
3071 terminator. Rewritten the logic as a state machine, I must have
3072 been doing too much VHDL lately...
3073
3074 * eval.c (scm_ceval, scm_deval): Explicitely evaluate ports to
3075 themselves. Thanks to Han-Wen Nienhuys!
3076
3077 * list.c: Changed docstrings so that they no longer talk about
3078 returning 'pointers' to something.
3079
3080 2004-03-20 Han-Wen Nienhuys <hanwen@xs4all.nl>
3081
3082 * gc.c: remove set_debug_cell_accesses! when
3083 SCM_DEBUG_CELL_ACCESSES is not defined. Scheme source code should
3084 use (if (defined? 'set-debug-cell-accesses!) .. ) to switch on
3085 debugging conditionally.
3086
3087 2004-03-21 Kevin Ryde <user42@zip.com.au>
3088
3089 * stime.c (scm_gmtime): Use gmtime_r when available, for thread safety.
3090
3091 2004-03-20 Kevin Ryde <user42@zip.com.au>
3092
3093 * posix.c (scm_gethostname): Preserve errno across free() call.
3094
3095 2004-03-18 Han-Wen Nienhuys <hanwen@xs4all.nl>
3096
3097 * gc-card.c (sweep_card): use SCM_GC_SET_CELL_WORD for setting
3098 free cells.
3099
3100 2004-03-14 Kevin Ryde <user42@zip.com.au>
3101
3102 * stime.c: Define _GNU_SOURCE for strptime prototype from glibc.
3103 (strptime): Use HAVE_DECL_STRPTIME for when to give own prototype.
3104
3105 2004-03-07 Kevin Ryde <user42@zip.com.au>
3106
3107 * stime.c (scm_gmtime): Return bd_time->tm_zone when available, rather
3108 than "GMT" always.
3109 (filltime): Make zname parameter "const".
3110
3111 2004-03-03 Mikael Djurfeldt <mdj@chunk.mit.edu>
3112
3113 * threads.c, threads.h (scm_c_scm2thread): New function.
3114
3115 2004-02-29 Kevin Ryde <user42@zip.com.au>
3116
3117 * numbers.c (guile_ieee_init): Use C99 INFINITY and NAN when
3118 available. Test HAVE_DINFINITY and HAVE_DQNAN for those globals, in
3119 particular don't assume "defined (__alpha__) && ! defined (linux)"
3120 means OSF. Remove "SCO" code, which was not really SCO specific and
3121 which John W. Eaton advises should be long past being needed.
3122
3123 * posix.c (scm_execl, scm_execlp, scm_execle): Avoid memory leak under
3124 error throw.
3125
3126 2004-02-24 Kevin Ryde <user42@zip.com.au>
3127
3128 * posix.c (scm_cuserid): Use a private result buffer, for thread safe.
3129
3130 2004-02-22 Kevin Ryde <user42@zip.com.au>
3131
3132 * numbers.c (scm_max, scm_min): For one arg, dispatch to generic for
3133 complex, same as for two args. (Handle only inum, big, real, frac).
3134
3135 2004-02-21 Kevin Ryde <user42@zip.com.au>
3136
3137 * posix.c (scm_crypt): Use new HAVE_CRYPT.
3138 (<crypt.h>): Remove HAVE_LIBCRYPT condition.
3139 Reported by Andreas Voegele.
3140
3141 2004-02-20 Neil Jerram <neil@ossau.uklinux.net>
3142
3143 * list.c (scm_list_n): Add #if SCM_DEBUG_CELL_ACCESSES_P around
3144 validation.
3145
3146 * read.c (scm_lreadparen): Removed.
3147 (scm_lreadparen1): Renamed scm_i_lreadparen.
3148
3149 2004-02-20 Han-Wen Nienhuys <hanwen@xs4all.nl>
3150
3151 * list.c (scm_list_n): validate non-immediate arguments;
3152 this will catch forgotten a SCM_UNDEFINED.
3153
3154 2004-02-18 Marius Vollmer <mvo@zagadka.de>
3155
3156 * gc.h (scm_gc_cells_collected): Removed duplicated declaration.
3157 Thanks to Bill Schottstaedt!
3158
3159 * socket.h (scm_gethost): Removed prototype it is already in
3160 "net_db.h". Thanks to Bill Schottstaedt!
3161
3162 2004-02-18 Kevin Ryde <user42@zip.com.au>
3163
3164 * num2integral.i.c (INTEGRAL2BIG): WORDS_BIGENDIAN not right for word
3165 order parameter to mpz_import, in fact with just one word there's no
3166 order to worry about at all.
3167
3168 * numbers.c (scm_num_eq_p): For real==frac, complex==frac, frac==real
3169 and frac==complex, make an exact comparison rather than converting
3170 with fraction2double.
3171
3172 * posix.c, putenv.c, stime.c (environ): Use _NSGetEnviron in Darwin
3173 shared library, since environ is not directly available there.
3174
3175 * script.c (scm_shell_usage): Print to stdout for --help, per GNU
3176 standard.
3177
3178 * stime.c (scm_localtime, scm_gmtime, scm_mktime): Provide a default
3179 errno EINVAL in case localtime and gmtime don't set it.
3180 (scm_mktime, scm_strptime): Forcibly use errno EINVAL for our
3181 SCM_SYSERROR, since mktime and strptime generally don't set errno.
3182
3183 2004-02-16 Kevin Ryde <kevin@swox.se>
3184
3185 * gc-malloc.c (scm_done_malloc, scm_done_free): Allow negative sizes,
3186 which were permitted in the past for these.
3187
3188 * num2float.i.c (NUM2FLOAT): Expand isfinite to !xisinf, as per
3189 previous change to numbers.c.
3190
3191 * script.c (scm_shell_usage): Print bug-guile email address, as per
3192 GNU standard. Reported by Han-Wen Nienhuys.
3193
3194 2004-02-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
3195
3196 * unif.c (scm_make_uve): Removed local variable and simplified
3197 code in order to avoid compiler used uninitialized warnings.
3198
3199 * hashtab.c, hashtab.h (scm_hash_map_to_list): Renamed from
3200 scm_hash_map.
3201 (scm_hash_fold): Use scm_call_3 directly in the call to
3202 scm_internal_hash_fold instead of going via fold_proc (which is
3203 now removed).
3204 (scm_hash_for_each): Use a trampoline +
3205 scm_internal_hash_for_each_handle.
3206 (scm_internal_hash_for_each_handle, scm_hash_for_each_handle): New
3207 functions.
3208
3209 2004-02-12 Kevin Ryde <user42@zip.com.au>
3210
3211 * ports.c (scm_port_line): In docstring, note first line is 0.
3212 (scm_set_port_line_x): In docstring, note first line is 0.
3213 (scm_port_column): In docstring, there's no default to current input
3214 port, and remove shared port-line @defun.
3215 (scm_set_port_column_x): In docstring, there's no default to current
3216 input port, note first column is 0, remove shared set-port-line!
3217 @defun.
3218
3219 * ramap.c (scm_array_fill_x): For fvect and dvect, use scm_num2dbl to
3220 convert args the same way that array-set! does.
3221
3222 * unif.c (scm_make_uve, scm_array_p): Allow fraction 1/3 as prototype
3223 for dvect.
3224 (scm_array_p): Add missing "break"s in switch, fix llvect test look
3225 for "l" not "s", fix dvect to be false for singp(prot) since such a
3226 value is for fvect.
3227 (scm_array_prototype): Return 1/3 for dvect, rather than 0.33..33.
3228 (exactly_one_third): New variable.
3229 (scm_init_unif): Initialize it.
3230
3231 2004-02-10 Neil Jerram <neil@ossau.uklinux.net>
3232
3233 * read.c (scm_read_opts): Change `escaped-parens' to
3234 `elisp-strings'.
3235
3236 2004-02-08 Neil Jerram <neil@ossau.uklinux.net>
3237
3238 * read.c (scm_read_opts): New opts `elisp-vectors' and
3239 `escaped-parens'.
3240 (s_vector): New.
3241 (scm_lreadr): Use scm_lreadparen1 instead of scm_lreadparen. Make
3242 handling of elisp vector syntax dependent on SCM_ENABLE_ELISP and
3243 `elisp-vectors' option instead of SCM_ELISP_READ_EXTENSIONS.
3244 Allow "\(" and "\)" in strings when SCM_ENABLE_ELISP defined and
3245 `escaped-parens' option set.
3246 (scm_read_token): If elisp vector syntax active, disallow [ and ]
3247 in tokens.
3248 (scm_lreadparen): Rewrite as interface to scm_lreadparen1.
3249 (scm_lreadparen1): New.
3250
3251 * read.h: Remove conditionally compiled last arg to
3252 scm_lreadparen.
3253 (SCM_ELISP_VECTORS_P, SCM_ESCAPED_PARENS_P): New.
3254
3255 2004-01-23 Han-Wen Nienhuys <hanwen@xs4all.nl>
3256
3257 * eval.c (m_expand_body): remove stray variable new_body.
3258
3259 2004-01-22 Marius Vollmer <mvo@zagadka.de>
3260
3261 * eval.c (m_expand_body): Rewrite the expression in place (by
3262 overwriting FORMS) also when a letrec is constructed, not only
3263 when no definitions are found. Do not return rewritten expression
3264 to emphasize the in-place rewriting. Changed all users.
3265
3266 2004-01-19 Han-Wen Nienhuys <hanwen@xs4all.nl>
3267
3268 * gc.c: add protected_object_count, a number that is dumped from
3269 gc_stats()
3270
3271 2004-01-11 Marius Vollmer <mvo@zagadka.de>
3272
3273 * dynwind.h, dynwind.c (scm_frame_unwind,
3274 scm_frame_unwind_handler): Renamed and changed all uses.
3275 (scm_frame_rewind, scm_frame_rewind_handler): Likewise.
3276
3277 2004-01-11 Kevin Ryde <user42@zip.com.au>
3278
3279 * unif.c (scm_bit_count, scm_bit_position, s_scm_bit_set_star_x,
3280 s_scm_bit_count_star, s_scm_bit_invert_x): Clarify docstrings, as per
3281 changes made to scheme-compound.texi.
3282
3283 2004-01-10 Marius Vollmer <mvo@zagadka.de>
3284
3285 * print.c (scm_print_symbol_name): Handle #{`foo}#, #{,foo}#,
3286 #{.}#, and all numeric strings specially. Thanks to Paul Jarc!
3287
3288 * guile-snarf.in: Use mkdir to create a unique temporary directory
3289 that we can safely use. Thanks to Stefan Nordhausen!
3290
3291 2004-01-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3292
3293 * dynwind.h, dynwind.c (scm_i_dowinds): Removed 'explicit'
3294 argument since it is always zero now. Changed all callers.
3295 Removed code for handling fluids.
3296
3297 * fluids.c (scm_c_with_fluids): Use frames instead of adding to
3298 the wind chain explicitely. Use scm_c_with_fluid for the common
3299 case of only one fluid.
3300 (scm_with_fluid): New.
3301 (scm_c_with_fluid): Use frames instead of scm_c_with_fluids.
3302
3303 * fluids.h, fluids.c (scm_frame_fluid): New.
3304 (scm_with_fluid): New.
3305 (scm_i_swap_fluids, scm_i_swap_fluids_reverse): Removed.
3306
3307 * dynwind.c (scm_frame_end): Do not use scm_i_dowinds. Instead,
3308 do the unwinding directly. It is simple enough.
3309
3310 * dynwind.h, dynwind.c: Did the following renamings:
3311 scm_begin_frame -> scm_frame_begin,
3312 scm_end_frame -> scm_frame_end,
3313 scm_on_unwind -> scm_frame_unwind,
3314 scm_on_rewind -> scm_frame_rewind,
3315 scm_on_unwind_with_scm -> scm_frame_unwind_with_scm,
3316 scm_on_rewind_with_scm -> scm_frame_rewind_with_scm.
3317 Changed all uses.
3318
3319 * aync.h, async.c: Did the follwing renamings:
3320 scm_with_blocked_asyncs -> scm_frame_block_asyncs,
3321 scm_with_unblocked_asyncs -> scm_frame_unblock_asyncs.
3322 Changed all uses.
3323
3324 * ports.h, ports.c: Did the follwing renamings:
3325 scm_with_current_input_port -> scm_frame_current_input_port,
3326 scm_with_current_output_port -> scm_frame_current_output_port,
3327 scm_with_current_error_port -> scm_frame_current_error_port.
3328 Changed all uses.
3329
3330 2004-01-07 Kevin Ryde <user42@zip.com.au>
3331
3332 * numbers.c (s_bignum): Remove, not used since gmp bignums.
3333 Reported by Richard Todd.
3334
3335 * threads-plugin.h (SCM_MUTEX_MAXSIZE): Increase to 12*sizeof(long),
3336 for the benefit of powerpc-apple-darwin5.5. Reported by Richard Todd.
3337
3338 * unif.c (scm_aind): Test SCM_CONSP rather than !SCM_NULLP while
3339 traversing the args list, fixes segv if an improper list is given.
3340 Reported by Rouben Rostamian.
3341
3342 2004-01-06 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3343
3344 * ports.c (swap_ports, scm_with_current_foo_port): Do not allocate
3345 swap_data on stack, use a 'malloc obj'.
3346
3347 * fluids.h, fluids.c (scm_make_initial_fluids, scm_copy_fluids,
3348 scm_swap_fluids, scm_swap_fluids_reverse): Renamed to
3349 scm_i_... since they are internal. Changed all uses.
3350
3351 * dynwind.c (frame_print): Removed, use the default printer.
3352 (WINDER_F_MARK, WINDER_MARK_P, winder_mark): New.
3353 (scm_on_unwind_with_scm, scm_on_rewind_with_scm): New. Use above
3354 to protect SCM values.
3355
3356 * dynwind.h (SCM_F_WIND_EXPLICITELY,
3357 SCM_F_WIND_EXPLICITLY): It's "explicitly" not "explicitely", damn.
3358 Changed all uses.
3359 (scm_on_unwind_with_scm, scm_on_rewind_with_scm): New.
3360
3361 2004-01-05 Marius Vollmer <mvo@zagadka.de>
3362
3363 * ports.h, ports.c (scm_with_current_input_port,
3364 scm_with_current_output_port, scm_with_current_error_port): New.
3365
3366 * async.h, async.c (scm_with_blocked_asyncs,
3367 scm_with_unblocked_asyncs): New.
3368
3369 2004-01-03 Marius Vollmer <mvo@zagadka.de>
3370
3371 * dynwind.h, scm_dynwind.c (scm_t_frame_flags, scm_t_wind_flags,
3372 scm_begin_frame, scm_end_frame, scm_on_unwind, scm_on_rewind):
3373 New.
3374 (scm_dowinds, scm_i_dowinds): scm_dowinds has been renamed to
3375 scm_i_dowinds and extended to handle frames and to invoke a 'turn'
3376 function when the outermost wind point has been reached. The
3377 latter is used to copy a continuation stack at the right time.
3378 scm_dowinds remains available.
3379 (SCM_GUARDSP, SCM_BEFORE_GUARD, SCM_AFTER_GUARD, SCM_GUARD_DATA,
3380 tc16_guard, guards_print): Removed.
3381 (scm_internal_dynamic_wind): Reimplemented using frames.
3382
3383 * continuations.c (copy_stack): New, do only the stack copying
3384 part of copy_stack_and_call.
3385 (copy_stack_and_call): Copy the stack after unwinding and before
3386 rewinding.
3387 (scm_dynthrow): Do not call scm_dowinds, this is now done by
3388 copy_stack_and_call.
3389
3390 2004-01-04 Kevin Ryde <user42@zip.com.au>
3391
3392 * numbers.c (scm_less_p): Don't convert frac to float for compares,
3393 can give bad results due to rounding.
3394
3395 * stime.c (scm_current_time, scm_gettimeofday): Add a comment about
3396 setzone/restorezone protection for DOS.
3397
3398 2003-12-26 Marius Vollmer <mvo@zagadka.de>
3399
3400 * gen-scmconfig.h.in, gen-scmconfig.c: Arrange for scm_t_intmax
3401 and scm_t_uintmax to be defined in scmconfig.h
3402
3403 2003-12-03 Kevin Ryde <user42@zip.com.au>
3404
3405 * numbers.c (scm_less_p): Remove spurious xisnan from frac+big case.
3406
3407 * numbers.c (scm_make_ratio): Check for numerator equal to
3408 SCM_MOST_NEGATIVE_FIXNUM and bignum denominator the negative of that,
3409 giving integer -1.
3410
3411 * numbers.c (scm_real_part): Return fraction unchanged rather than
3412 converting to flonum.
3413
3414 2003-11-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
3415
3416 * modules.c (module_variable): Fixed (and thus simplified) the
3417 definition of SCM_BOUND_THING_P to reflect the fact that since
3418 after the 1.4 series of guile, obarrays only hold variable
3419 objects.
3420
3421 2003-11-30 Marius Vollmer <mvo@zagadka.de>
3422
3423 * numbers.c (scm_logand): It's "#b...", not "#\b...".
3424
3425 From Paul Jarc:
3426
3427 * read.c (scm_lreadr): Signal an error for invalid escape
3428 sequences in strings. Code cleanups too.
3429
3430 * print.c (scm_iprin1): use \xNN hexadecimal sequences when
3431 writing control characters in strings.
3432
3433 2003-11-21 Marius Vollmer <mvo@zagadka.de>
3434
3435 * ports.c (scm_drain_input): Bug fix: only access the port after
3436 checking that it indeed is one.
3437
3438 2003-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
3439
3440 * eval.c (s_bad_define): New static identifier.
3441
3442 (m_body): Fixed comment.
3443
3444 (scm_m_define): Don't generate memoized code for definitions that
3445 are not on the top level. As a consequence, no memoized code at
3446 all is generated for definitions any more: Top level definitions
3447 are executed immediately during memoization and internal
3448 definitions are handled separately in m_expand_body.
3449
3450 (scm_unmemocopy, unmemocopy): Removed code for unmemoizing
3451 definitions. Consequently, there is no unmemoizing code any more
3452 that might modify the environment. Thus, the old scm_unmemocopy
3453 is removed and the old unmemocopy is renamed to scm_unmemocopy.
3454
3455 (SCM_CEVAL): The SCM_IM_DEFINE keyword can no longer occur in
3456 memoized code. Call EVALCAR for continuations. Prefer !SCM_NULLP
3457 over SCM_NIMP in places, where the argument is known to be part of
3458 a proper list.
3459
3460 2003-11-21 Kevin Ryde <user42@zip.com.au>
3461
3462 * numbers.c (scm_abs): Allocate a new real only for negatives, as done
3463 for bignums.
3464
3465 * numbers.c (scm_bit_extract): Use mpz functions, rearrange inum case
3466 to share some shifting.
3467
3468 * numbers.c (scm_integer_expt): Don't mpz_init after scm_i_clonebig or
3469 scm_i_mkbig, since they do so already. Don't mpz_clear a bignum SCM,
3470 since gc does this.
3471
3472 2003-11-19 Marius Vollmer <mvo@zagadka.de>
3473
3474 * numbers.c (scm_make_ratio): Rewritten to have a simpler
3475 structure. Previously, not all cases with a negative denominator
3476 were covered.
3477
3478 * numbers.c (mem2decimal_from_point): use scm_divide instead of
3479 scm_divide2real when forming the fractional part. This allows
3480 "#e1.2" to yield 6/5.
3481
3482 * numbers.c (scm_i_fraction_equalp): Do not treat the return value
3483 of scm_equal_p as a C boolean, use SCM_FALSEP. Previously, all
3484 fractions were equal to each other regardless of value. Ooops.
3485
3486 * numbers.c (scm_rationalize): Return an inexact result when given
3487 inexact arguments.
3488
3489 * numbers.c (scm_exact_p, scm_inexact_p): Throw error for
3490 non-numbers.
3491
3492 2003-11-18 Marius Vollmer <marius.vollmer@uni-dortmund.de>
3493
3494 Support for exact fractions from Bill Schottstaedt! Thanks!
3495
3496 * print.c (scm_iprin1): Handle fractions.
3497
3498 * objects.h (scm_class_fraction): New.
3499 * objects.c (scm_class_fraction): New.
3500 (scm_class_of): Handle fractions.
3501
3502 * hash.c (scm_hasher): Handle fractions.
3503
3504 * numbers.c: New code for handling fraction all over the place.
3505 (scm_odd_p, scm_even_p): Handle inexact integers.
3506 (scm_rational_p): New function, same as scm_real_p.
3507 (scm_round_number, scm_truncate_number, scm_ceiling, scm_floor):
3508 New exact functions that replace the inexact 'dsubr'
3509 implementations.
3510 (scm_numerator, scm_denominator): New.
3511
3512 * numbers.h (SCM_NUMP): Recognize fractions.
3513 (SCM_FRACTIONP, SCM_SLOPPY_FRACTIONP, SCM_FRACTION_NUMERATOR,
3514 SCM_FRACTION_DENOMINATOR, SCM_FRACTION_SET_NUMERATOR,
3515 SCM_FRACTION_SET_DENOMINATOR, SCM_FRACTION_REDUCED_BIT,
3516 SCM_FRACTION_REDUCED_SET, SCM_FRACTION_REDUCED_CLEAR,
3517 SCM_FRACTION_REDUCED): New.
3518 (scm_floor, scm_ceiling, scm_truncate_number, scm_round_number):
3519 New prototypes.
3520 (scm_make_ratio, scm_rationalize, scm_numerator, scm_denominator,
3521 scm_rational_p): New prototypes.
3522 (scm_i_dbl2num, scm_i_fraction2double, scm_i_fraction_equalp,
3523 scm_i_print_fraction): New prototypes.
3524
3525 * goops.c (create_standard_classes): Create "<fraction>" class.
3526
3527 * gc-mark.c (scm_gc_mark_dependencies): Handle fractions.
3528
3529 * gc-card.c (scm_i_sweep_card): Include scm_tc16_fraction as a
3530 case in the switch, but do nothing for now.
3531
3532 * eval.c (SCM_CEVAL, SCM_APPLY, call_dsubr_1): Convert fractions
3533 to doubles when calling 'dsubr' functions.
3534
3535 * eq.c (scm_eqv_p, scm_equal_p): Handle fractions.
3536
3537 2003-11-18 Rob Browning <rlb@defaultvalue.org>
3538
3539 * gen-scmconfig.c (main): remove public definition of
3540 SCM_SIZEOF___INT64 and SCM_SIZEOF_UNSIGNED___INT64 and add
3541 direct typedef of long_long and ulong_long inside deprecated block
3542 when appropriate.
3543
3544 * deprecated.h: move long_long and ulong_long definitions to
3545 gen-scmconfig.c so that we don't need to add SCM_SIZEOF___INT64
3546 and SCM_SIZEOF_UNSIGNED___INT64 to the public namespace.
3547
3548 2003-11-17 Marius Vollmer <mvo@zagadka.de>
3549
3550 * hash.c (scm_string_hash): New hashing algorithm that takes the
3551 complete string into account.
3552
3553 * eval.c (scm_m_generalized_set_x): Macroexpand the target when it
3554 is a list. This allows (@ ...) to work with set!.
3555 (scm_m_generalized_set_x): Use ASSERT_SYNTAX_2 instead of
3556 SCM_ASSYNT.
3557
3558 * script.c (scm_compile_shell_switches): Use scm_c_read_string for
3559 the "-e" option instead of scm_str2symbol. This allows things
3560 like (@ ...) to be specified for the entry point.
3561
3562 2003-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
3563
3564 * eval.c (scm_m_letstar): Create memoized code in place to
3565 minimize consing.
3566
3567 2003-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
3568
3569 * eval.c (s_splicing): Commented and reformulated.
3570
3571 (lookup_global_symbol, lookup_symbol): New static functions.
3572
3573 (s_test, s_bindings, s_duplicate_bindings, s_variable): Removed.
3574
3575 (try_macro_lookup, literal_p): Use lookup_symbol instead of
3576 creating a temporary pair for scm_lookupcar.
3577
3578 (scm_unmemocar, unmemocar): Renamed scm_unmemocar to unmemocar,
3579 created deprecated wrapper function scm_unmemocar.
3580
3581 (SCM_VALIDATE_NON_EMPTY_COMBINATION, scm_sym_else,
3582 scm_sym_unquote, scm_sym_uq_splicing, scm_sym_enter_frame,
3583 scm_sym_apply_frame, scm_sym_exit_frame, scm_sym_trace, f_apply,
3584 undefineds, sym_three_question_marks): Moved around without
3585 modifications.
3586
3587 * eval.c, eval.h (scm_macroexp, scm_unmemocar): Deprecated.
3588
3589 2003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3590
3591 * eval.c (try_macro_lookup, expand_user_macros, is_system_macro_p,
3592 m_expand_body, scm_m_expand_body): Grouped together with m_body.
3593 No further modifications.
3594
3595 2003-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3596
3597 * eval.c (s_mixed_body_forms): New static identifier.
3598
3599 (canonicalize_define, scm_m_define): The check for a bad
3600 expression is performed in canonicalize_define now.
3601
3602 (try_macro_lookup, expand_user_macros, is_system_macro_p): New
3603 static helper functions for m_expand_body.
3604
3605 (m_expand_body): Use ASSERT_SYNTAX to signal syntax errors. Only
3606 expand user defined macros. Fixed handling of the definition/
3607 expression boundary. Fixed handling of definitions grouped with
3608 'begin. Use canonicalize_define to expand definitions.
3609
3610 2003-11-13 Marius Vollmer <mvo@zagadka.de>
3611
3612 * read.c (scm_lreadr): detect EOF after backslash, and interpret
3613 \xNN hexadecimal sequences. From Paul Jarc, thanks!
3614
3615 * snarf.h (SCM_SMOB, SCM_GLOBAL_SMOB, SCM_SMOB_MARK,
3616 SCM_GLOBAL_SMOB_MARK, SCM_SMOB_FREE, SCM_GLOBAL_SMOB_FREE,
3617 SCM_SMOB_PRINT, SCM_GLOBAL_SMOB_PRINT, SCM_SMOB_EQUALP,
3618 SCM_GLOBAL_SMOB_EQUALP, SCM_SMOB_APPLY, SCM_GLOBAL_SMOB_APPLY):
3619 New macros from Paul Jarc. Thanks!
3620
3621 * gc_os_dep.c (scm_get_stack_base): Provide a definition that
3622 return NULL when the machine type is unknown. Previously,
3623 gc_os_dep.c would refuse to compile.
3624
3625 2003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
3626
3627 * eval.c (scm_m_body, m_body, scm_m_lambda, memoize_named_let,
3628 scm_m_let, scm_m_letrec, m_expand_body): Renamed static function
3629 scm_m_body to m_body.
3630
3631 2003-11-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
3632
3633 * eval.c, eval.h (scm_m_expand_body, m_expand_body): Deprecated
3634 public use of scm_m_expand_body in eval.h. In eval.c, renamed
3635 scm_m_expand_body to m_expand_body and made it static. Added
3636 deprecated wrapper scm_m_expand_body.
3637
3638 (scm_eval_body, SCM_CEVAL, SCM_APPLY): Use m_expand_body instead
3639 of scm_m_expand_body.
3640
3641 2003-11-09 Kevin Ryde <user42@zip.com.au>
3642
3643 * dynl.c (scm_dynamic_unlink): Need scm_list_1 on error message
3644 argument. Reported by Mike Gran.
3645
3646 2003-11-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
3647
3648 * eval.c (s_missing_body_expression): New static identifier.
3649
3650 (s_body): Removed.
3651
3652 (scm_m_expand_body): Fixed core dump when passing a body with
3653 defines, but without expressions (see additions to syntax.test).
3654 Use ASSERT_SYNTAX to signal syntax errors.
3655
3656 2003-11-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
3657
3658 * eval.c (canonicalize_define): New static helper function.
3659
3660 (memoize_define, canonicalize_define): Extract handling of
3661 function currying to canonicalize_define.
3662
3663 2003-11-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
3664
3665 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
3666 Make sure that error checking in debug mode is not worse than in
3667 standard mode.
3668
3669 2003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
3670
3671 * eval.c (scm_m_body, scm_m_lambda): Documentation strings are not
3672 handled in scm_m_body any more, but rather in scm_m_lambda.
3673
3674 (scm_m_body, memoize_named_let, scm_m_let, scm_m_letstar,
3675 scm_m_letrec, scm_m_expand_body): Check for validity is done by
3676 calling functions of scm_m_body.
3677
3678 (scm_m_lambda): Avoid unnecessary consing when creating the
3679 memoized code.
3680
3681 2003-11-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
3682
3683 * eval.c (s_expression): Added comment.
3684
3685 (s_empty_combination, error_unbound_variable): New static
3686 identifiers.
3687
3688 (SCM_VALIDATE_NON_EMPTY_COMBINATION, SCM_EVALIM2, scm_lookupcar1):
3689 Use ASSERT_SYNTAX, syntax_error or error_unbound_variable to
3690 signal syntax errors.
3691
3692 (SCM_CEVAL): Separated handling of evaluator bytecodes and other
3693 scheme objects.
3694
3695 2003-10-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
3696
3697 * eval.c (unmemocar, sym_three_question_marks, scm_unmemocar):
3698 Grouped together with unmemocopy, without modifications.
3699
3700 (build_binding_list, unmemocopy): Renamed names of list arguments
3701 and variables to reflect the actual order of the list elements.
3702
3703 2003-10-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
3704
3705 * eval.c (s_defun): New static identifier.
3706
3707 (scm_m_nil_cond, scm_m_atfop, scm_m_undefine): Add comments. Use
3708 ASSERT_SYNTAX to signal syntax errors. Avoid unnecessary consing
3709 when creating the memoized code.
3710
3711 2003-10-19 Kevin Ryde <user42@zip.com.au>
3712
3713 * numbers.c (scm_ash): Revise docstring as per recent update to manual.
3714
3715 * numbers.c (scm_i_big2dbl): Rewrite, carefully rounding to "closest"
3716 in accordance with R5RS, which just mpz_get_d doesn't really give.
3717
3718 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3719
3720 * eval.c (s_bad_slot_number): New static identifier.
3721
3722 (scm_m_atslot_ref, scm_m_atslot_set_x): Use ASSERT_SYNTAX to
3723 signal syntax errors. Avoid unnecessary consing when creating the
3724 memoized code.
3725
3726 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3727
3728 * eval.c (scm_m_cont, scm_m_at_call_with_values,
3729 scm_m_generalized_set_x): Use ASSERT_SYNTAX to signal syntax
3730 errors. Avoid unnecessary consing when creating the memoized
3731 code.
3732
3733 (scm_m_generalized_set_x): Let scm_m_set_x handle the R5RS
3734 standard case. Make sure line and file information are copied to
3735 every created expression.
3736
3737 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3738
3739 * eval.c (scm_m_set_x, scm_m_apply, scm_m_atbind): Use
3740 ASSERT_SYNTAX to signal syntax errors. Avoid unnecessary consing
3741 when creating the memoized code.
3742
3743 (scm_m_atbind): Reversed the order, in which the init expressions
3744 are stored and executed. The order of execution is now equal to
3745 the order in which the initializers of the let-forms are executed.
3746 Use check_bindings and transform_bindings.
3747
3748 (SCM_CEVAL): Eliminated SCM_NIMP in favor of more appropriate
3749 !SCM_NULLP. Added some comments.
3750
3751 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3752
3753 * eval.c: Sorted include files alphabetically.
3754
3755 (scm_m_begin): Added comment.
3756
3757 (scm_m_or): Use ASSERT_SYNTAX to signal syntax errors. Avoid
3758 unnecessary consing when creating the memoized code.
3759
3760 (iqq, scm_m_quasiquote, scm_m_quote): Use ASSERT_SYNTAX to signal
3761 syntax errors. Be more specific about the kind of error that was
3762 detected.
3763
3764 (scm_m_quote, unmemocopy): As an optimization, vector constants
3765 are now inserted unquoted into the memoized code. During
3766 unmemoization the quotes are added again to provide syntactically
3767 correct code.
3768
3769 2003-10-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3770
3771 * eval.c (scm_m_let, scm_m_letstar, scm_m_letrec,
3772 scm_m_expand_body, check_bindings): Extracted syntax checking of
3773 bindings to new static function check_bindings.
3774
3775 (scm_m_let, memoize_named_let): Extracted handling of named let to
3776 new static function memoize_named_let.
3777
3778 (transform_bindings, scm_m_let, scm_m_letstar, scm_m_letrec): Use
3779 ASSERT_SYNTAX to signal syntax errors. Be more specific about the
3780 kind of error that was detected. Avoid use of SCM_CDRLOC. Avoid
3781 unnecessary consing when creating the memoized code.
3782
3783 2003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
3784
3785 * eval.c (s_bad_formals, s_bad_formal, s_duplicate_formal): New
3786 static identifiers.
3787
3788 (s_clauses, s_formals, s_duplicate_formals): Removed.
3789
3790 (scm_m_lambda): Use ASSERT_SYNTAX to signal syntax errors. Be more
3791 specific about the kind of error that was detected. Prepare for
3792 easier integration of changes for separated memoization.
3793
3794 2003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
3795
3796 * eval.c (s_duplicate_binding): New static identifier.
3797
3798 (scm_m_case): Call scm_c_memq instead of implementing it inline.
3799
3800 (scm_m_define): Added comment about how we check for duplicate
3801 formals.
3802
3803 (scm_m_do): Added check for duplicate bindings.
3804
3805 (scm_m_if): Use ASSERT_SYNTAX to signal syntax errors. Avoid
3806 unnecessary consing when creating the memoized code.
3807
3808 (scm_c_improper_memq, c_improper_memq, scm_m_lambda): Renamed
3809 scm_c_improper_memq to c_improper_memq, since it is not exported.
3810
3811 (transform_bindings): Call scm_c_memq rather than
3812 scm_c_improper_memq.
3813
3814 (SCM_CEVAL): Simplified handling of SCM_IM_IF forms.
3815
3816 2003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
3817
3818 * eval.c (s_bad_bindings, s_bad_binding, s_bad_exit_clause): New
3819 static identifiers.
3820
3821 (scm_m_do): Use ASSERT_SYNTAX to signal syntax errors. Be more
3822 specific about the kind of error that was detected. Avoid use of
3823 SCM_CDRLOC. Avoid unnecessary consing when creating the memoized
3824 code, this way also making sure that file name, line number
3825 information etc. remain available.
3826
3827 2003-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
3828
3829 * eval.c (memoize_as_thunk_prototype): New static function.
3830
3831 (scm_m_delay, scm_m_future): Use memoize_as_thunk_prototype.
3832 Avoid unnecessary consing when creating the memoized code.
3833
3834 2003-10-12 Kevin Ryde <user42@zip.com.au>
3835
3836 * list.c (scm_append): Track argument number and use in error.
3837
3838 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
3839
3840 * eval.c (s_missing_expression, s_bad_variable): New static
3841 identifiers.
3842
3843 (scm_m_define): Use ASSERT_SYNTAX to signal syntax errors. Prefer
3844 R5RS terminology for the naming of variables. Be more specific
3845 about the kind of error that was detected. Make sure file name,
3846 line number etc. are added to all freshly created expressions.
3847 Avoid unnecessary consing when creating the memoized code.
3848
3849 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
3850
3851 * eval.c (s_extra_expression, s_misplaced_else_clause,
3852 s_bad_cond_clause, s_missing_recipient): New static identifiers.
3853
3854 (s_extra_case_clause): Removed.
3855
3856 (scm_m_case, scm_m_cond): If a clause appears after an else
3857 clause, report a misplaced else clause.
3858
3859 (scm_m_cond): Use ASSERT_SYNTAX to signal syntax errors. Be more
3860 specific about the kind of error that was detected. Handle bound
3861 'else and '=>. Avoid unnecessary consing when creating the
3862 memoized code.
3863
3864 (scm_m_cond, unmemocopy, SCM_CEVAL): Use SCM_IM_ELSE to memoize
3865 the syntactic keyword 'else and SCM_IM_ARROW to memoize the
3866 syntactic keyword '=>.
3867
3868 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
3869
3870 * eval.c (scm_m_case): Allow empty lists of case labels.
3871
3872 2003-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
3873
3874 * tags.h (SCM_IM_ELSE, SCM_IM_ARROW): New memoizer codes.
3875
3876 * print.c (scm_isymnames): Add names for the new memoizer codes.
3877
3878 * eval.c (s_missing_clauses, s_bad_case_clause,
3879 s_extra_case_clause, s_bad_case_labels, s_duplicate_case_label,
3880 literal_p): New static identifiers.
3881
3882 (scm_m_case): Use ASSERT_SYNTAX to signal syntax errors. Be more
3883 specific about the kind of error that was detected. Check for
3884 duplicate case labels. Handle bound 'else. Avoid unnecessary
3885 consing when creating the memoized code.
3886
3887 (scm_m_case, unmemocopy, SCM_CEVAL): Use SCM_IM_ELSE to memoize
3888 the syntactic keyword 'else.
3889
3890 2003-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
3891
3892 * eval.c (s_bad_expression, syntax_error_key, syntax_error,
3893 ASSERT_SYNTAX, ASSERT_SYNTAX_2): New static identifiers.
3894
3895 (scm_m_and): Use ASSERT_SYNTAX to signal syntax errors. Avoid
3896 unnecessary consing when creating the memoized code.
3897
3898 2003-10-09 Kevin Ryde <user42@zip.com.au>
3899
3900 * numbers.c (scm_inexact_to_exact): Don't depend on what double->long
3901 cast gives for values bigger than a long, or for nan or inf.
3902
3903 2003-10-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
3904
3905 * smob.h (scm_make_smob_type): Made the declaration match the
3906 definition.
3907
3908 2003-10-07 Marius Vollmer <mvo@zagadka.de>
3909
3910 * goops.c, objects.h, smob.c, smob.h: Make type names char
3911 const * instead of char *. Thanks to Paul Jarc!
3912
3913 2003-10-02 Kevin Ryde <user42@zip.com.au>
3914
3915 * strports.c (scm_call_with_output_string): scm_get_output_string
3916 rather than scm_strport_to_string, so as to guard against the port
3917 having been closed by the called procedure. Reported by Nic Ferrier.
3918
3919 2003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3920
3921 * numbers.h (SCM_INEXACTP): Removed uses of SCM_TYP16S.
3922
3923 * tags.h, deprecated.h (SCM_TYP16S): Deprecated and moved from
3924 tags.h to deprecated.h.
3925
3926 2003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3927
3928 This set of patches introduces a new tc7 code scm_tc7_number for
3929 numbers. Bignums, reals and complex numbers are turned from smobs
3930 into subtypes of scm_tc7_number.
3931
3932 * tags.h (scm_tc7_number): New.
3933
3934 * eq.c (scm_equal_p), eval.c (SCM_CEVAL), evalext.c
3935 (scm_self_evaluating_p), gc-card.c (scm_i_sweep_card), gc-mark.c
3936 (scm_gc_mark_dependencies), goops.c (create_smob_classes), hash.c
3937 (scm_hasher), numbers.c, numbers.h (SCM_NUMP), objects.c
3938 (scm_class_of), print.c (scm_iprin1), smob.c
3939 (scm_smob_prehistory): Don't handle bignums, reals and complex
3940 numbers as subtypes of scm_tc7_smob any more.
3941
3942 * numbers.h, tags.h (scm_tc16_big, scm_tc16_real,
3943 scm_tc16_complex): Moved definitions from tags.h to numbers.h.
3944
3945 2003-09-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
3946
3947 * numbers.c (scm_make_complex), gc-card.c (scm_i_sweep_card): Use
3948 sizeof (scm_t_complex) to determine the memory size of the
3949 malloc'd area for complex numbers.
3950
3951 2003-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
3952
3953 * numbers.c (scm_bigequal): Fixed.
3954
3955 2003-09-16 Marius Vollmer <mvo@zagadka.de>
3956
3957 * stime.c (scm_current_time): 'time' does not set errno so don't
3958 use SCM_SYSERROR for reporting errors.
3959
3960 2003-09-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
3961
3962 This set of patches eliminates the dependency between the
3963 implementation of evaluator specific memoization codes and special
3964 constants like #f, '() etc. ('flags'), which are not evaluator
3965 specific. The goal is to remove definitions of evaluator
3966 memoization codes completely from the public interface. This will
3967 make it possible to experiment more freely with optimizations of
3968 guile's internal representation of memoized code.
3969
3970 * objects.c (scm_class_of): Eliminate dependency on SCM_ISYMNUM.
3971
3972 * print.c (iflagnames): New array, holding the printed names of
3973 guile's special constants ('flags').
3974
3975 (scm_isymnames): Now holds only the printed names of the
3976 memoization codes.
3977
3978 (scm_iprin1): Separate the handling of memoization codes and
3979 guile's special constants.
3980
3981 * tags.h (scm_tc9_flag, SCM_ITAG9, SCM_MAKE_ITAG9, SCM_ITAG9_DATA,
3982 SCM_IFLAGNUM): new
3983
3984 (scm_tc8_char, scm_tc8_iloc, SCM_BOOL_F, SCM_BOOL_T,
3985 SCM_UNDEFINED, SCM_EOF_VAL, SCM_EOL, SCM_UNSPECIFIED, SCM_UNBOUND,
3986 SCM_ELISP_NIL, SCM_IM_DISPATCH, SCM_IM_SLOT_REF,
3987 SCM_IM_SLOT_SET_X, SCM_IM_DELAY, SCM_IM_FUTURE,
3988 SCM_IM_CALL_WITH_VALUES, SCM_IM_NIL_COND, SCM_IM_BIND): Changed
3989 values.
3990
3991 (SCM_IFLAGP): SCM_IFLAGP now only tests for flags.
3992
3993 (SCM_IFLAGP, SCM_MAKIFLAG, SCM_IFLAGNUM): Generalized to use the
3994 tc9 macros and scm_tc9_flag.
3995
3996 2003-09-15 Marius Vollmer <mvo@zagadka.de>
3997
3998 * posix.c (scm_setgroups): Check that the gid list is not too
3999 long. Thanks to Paul Jarc!
4000
4001 2003-09-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
4002
4003 * tags.h: Reduced the number of short instructions from 14 to 13.
4004 The typecode of the former 14th short instruction is now used to
4005 represent long instructions. Changed some comments to reflect
4006 this fact.
4007
4008 (SCM_MAKISYM): ISYMs get a new tc7 code, namely the one that was
4009 previously used by SCM_IM_DEFINE.
4010
4011 (SCM_IM_DEFINE): Turned into a long instruction.
4012
4013 * eval.c (unmemocopy, SCM_CEVAL): Treat SCM_IM_DEFINE as a long
4014 instruction.
4015
4016 * eval.c (SCM_CEVAL): Since characters and iflags have now a tc7
4017 code that is separate from all instructions, one level of dispatch
4018 for long instructions can be eliminated.
4019
4020 * print.c (scm_isymnames): Removed some commented code.
4021
4022 2003-09-12 Marius Vollmer <mvo@zagadka.de>
4023
4024 * __scm.h (SCM_FENCE): Use __memory_barrier with the Intel
4025 compiler on IA64.
4026
4027 * hashtab.h (scm_tc16_hashtable): Added "extern" declaration.
4028
4029 * modules.c (scm_module_reverse_lookup): Check that the obarray
4030 really is a hashtable and do nothing if not.
4031
4032 * inline.h: Use "extern inline" only with GCC. Use "static
4033 inline" else.
4034
4035 2003-09-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
4036
4037 * numbers.h (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Removed uses
4038 of SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
4039
4040 * numbers.h, deprecated.h (SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP,
4041 SCM_SLOPPY_COMPLEXP): Deprecated and moved from numbers.h to
4042 deprecated.h.
4043
4044 2003-09-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
4045
4046 * eq.c (scm_eqv_p, scm_equal_p): Removed uses of
4047 SCM_SLOPPY_INEXACTP, SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
4048
4049 * eq.c (scm_eqv_p, scm_equal_p): Reordered comparisons from
4050 0.0==some_expression to some_expression==0.0. The latter is
4051 better readable. The former is preferred by some people, since it
4052 leads to a compiler error when confusing == with =. However, when
4053 using gcc, a warning will be issued if in an if-statement an
4054 assigment appears. Since many Guile developers are using gcc,
4055 such errors will not remain unnoticed anyway. We can therefore
4056 focus on better readability.
4057
4058 2003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
4059
4060 * tags.h: Added description of Guile's type system. Removed some
4061 old and misleading comments.
4062
4063 2003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
4064
4065 * unit.c (scm_cvref): Eliminate unnecessary uses of SCM_NIMP,
4066 SCM_SLOPPY_REALP and SCM_SLOPPY_COMPLEXP.
4067
4068 2003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
4069
4070 * numbers.h (SCM_MAKINUM): Define in terms of scm_tc2_int.
4071
4072 (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Define in terms of the
4073 respective SLOPPY macro.
4074
4075 2003-09-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
4076
4077 * eq.c (scm_equal_p): Use SCM_TYP7 to check if an object is of
4078 type string, not SCM_TYP7S.
4079
4080 2003-09-03 Kevin Ryde <user42@zip.com.au>
4081
4082 * numbers.c (scm_lognot): Correction to docstring, ones-complement not
4083 2s-complement.
4084
4085 * stime.c (scm_strptime): Add comment about glibc strptime %s and
4086 current timezone requiring SCM_DEFER_INTS.
4087
4088 2003-08-30 Neil Jerram <neil@ossau.uklinux.net>
4089
4090 * script.c (scm_compile_shell_switches): Make -s switch optional
4091 if file to be loaded does not begin with a `-'. (Thanks to Aaron
4092 VanDevender for the patch!)
4093
4094 2003-08-30 Kevin Ryde <user42@zip.com.au>
4095
4096 * numbers.c (scm_lognot): Rewrite using ~ and mpz_com, for directness
4097 and to have non-integer types rejected as per other logical funcs.
4098
4099 2003-08-28 Kevin Ryde <user42@zip.com.au>
4100
4101 * gc.h (scm_remember_upto_here_1): Revise comments on the asm form.
4102
4103 2003-08-23 Kevin Ryde <user42@zip.com.au>
4104
4105 * simpos.c (scm_system): Remove SCM_DEFER_INTS, system() should be
4106 thread safe, and could take a long time too.
4107
4108 2003-08-22 Kevin Ryde <user42@zip.com.au>
4109
4110 * numbers.c (scm_difference): Correction to bignum - negative inum.
4111
4112 2003-08-14 Kevin Ryde <user42@zip.com.au>
4113
4114 * gc.h (scm_remember_upto_here_1, scm_remember_upto_here_2)
4115 [__GNUC__]: Use volatile asm macros rather than a function call.
4116 * gc.c (scm_remember_upto_here_1, scm_remember_upto_here_2): Undefine
4117 macros while defining functions.
4118
4119 * simpos.c (getenv): Use <stdlib.h> for prototype.
4120 (scm_system): In docstring, refer to status:exit-val rather than
4121 "functions above".
4122
4123 2003-08-09 Kevin Ryde <user42@zip.com.au>
4124
4125 * srcprop.c (scm_source_properties): Return plist from hash if it's a
4126 list set by source-properties! rather than an SRCPROPS object,
4127
4128 2003-07-29 Kevin Ryde <user42@zip.com.au>
4129
4130 * properties.c (scm_primitive_property_ref): In docstring, note
4131 parameters to not-found-proc, use hyphens rather than underscores for
4132 that parameter name.
4133 (scm_primitive_property_set_x): In docstring, VAL is the value
4134 parameter not CODE.
4135
4136 2003-07-27 Marius Vollmer <mvo@zagadka.de>
4137
4138 * print.c (scm_print_symbol_name): handle more weird characters by
4139 escaping the symbol name properly. Thanks to Paul Jarc!
4140
4141 * posix.h (scm_setgroups): New prototype.
4142 * posix.c (scm_setgroups): New. Thanks to Paul Jarc!
4143 (scm_getgroups): Handle groups ids that don't fit into a fixnum.
4144 Don't use SCM_WRITABLE_VELTS.
4145
4146 * gc.h (SCM_GC_SET_CELL_BVEC): New.
4147 * gc-card.c (scm_i_init_card_freelist): Use it. Thanks to
4148 Matthias Koeppe!
4149
4150 * __scm.h (SCM_C_INLINE_KEYWORD): New.
4151 * numbers.c: Use it in place of SCM_C_INLINE so that the code
4152 compiles when SCM_C_INLINE is undefined.
4153
4154 2003-07-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
4155
4156 * __scm.h: Reformulated the architecture and compiler properties
4157 in terms of properties of scm_t_bits and SCM variables rather than
4158 in terms of c standard types. This is since it is not known which
4159 of the standard types scm_t_bits and SCM variables will be defined
4160 to.
4161
4162 2003-07-24 Kevin Ryde <user42@zip.com.au>
4163
4164 * numbers.c (scm_angle): Use scm_flo0 for non-negative inum, bignum
4165 and real.
4166
4167 2003-07-18 Kevin Ryde <user42@zip.com.au>
4168
4169 * numbers.c (scm_product): In complex * bignum, correction to
4170 REAL/IMAG fetch, x is the complex, not y.
4171
4172 2003-07-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4173
4174 * numbers.c (scm_odd_p, scm_even_p): Bugfix: Treat result of
4175 scm_inf_p test as Scheme values.
4176 (scm_sum): Bugfix: Normalize bignum created from a negative bignum
4177 and a positive inum.
4178 Use GNU indentation style.
4179
4180 2003-07-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
4181
4182 * values.c (scm_values): Build lists of length 1 by using
4183 scm_list_1 instead of using scm_cons.
4184
4185 2003-07-10 Kevin Ryde <user42@zip.com.au>
4186
4187 * deprecation.c (scm_c_issue_deprecation_warning_fmt): Add va_end.
4188 * list.c (scm_list_n): Ditto.
4189
4190 * gc-malloc.c (scm_gc_realloc): Define "ptr" at start of function.
4191
4192 2003-07-08 Matthias Koeppe <mkoeppe@merkur.math.uni-magdeburg.de>
4193
4194 * tags.h (scm_t_bits, scm_t_signed_bits, etc): Avoid solaris empty
4195 defines of INTPTR_MAX and UINTPTR_MAX, combine conditionals for
4196 scm_t_bits and scm_t_signed_bits to avoid any chance of one and not
4197 the other using intptr_t.
4198
4199 2003-07-08 Kevin Ryde <user42@zip.com.au>
4200
4201 * numbers.c (scm_make_polar): Use sincos, when available.
4202 (scm_magnitude): Use hypot.
4203
4204 * ports.c (scm_char_ready_p, scm_peek_char): In docstrings, don't use
4205 @footnote since it doesn't go through to guile-procedures.txt.
4206
4207 * threads.c (scm_call_with_new_thread): In docstring, use "( )"
4208 outside @var to quieten makeinfo, and use @code.
4209
4210 2003-07-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4211
4212 * gc-malloc.c (decrease_mtrigger): new function
4213 (increase_mtrigger): new function, separate debug registering and
4214 mtrigger administration.
4215 (scm_gc_realloc): bugfix: do mtrigger administration before the
4216 actual realloc, for the realloc might invalidate a GC-d segment of
4217 memory. Thanks to Sam Hocevar for pointing this out.
4218 (scm_gc_realloc): use scm_malloc_reregister instead of
4219 unregistering and registering in sequence.
4220
4221 2003-07-03 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4222
4223 * __scm.h (SCM_ASSERT): change "else" expansion to "do { } while (0)"
4224
4225 2003-07-02 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4226
4227 * __scm.h (SCM_ASRTGO): add "else" to macro expansions with if
4228 clauses.
4229
4230 2003-06-29 Marius Vollmer <mvo@zagadka.de>
4231
4232 * deprecated.h (SCM_OPDIRP, scm_fport, scm_option, scm_srcprops,
4233 scm_srcprops_chunk, scm_info_frame, scm_stack, scm_array,
4234 scm_array_dim, SCM_ARRAY_CONTIGUOUS, SCM_FUNC_NAME, SCM_WTA,
4235 RETURN_SCM_WTA, SCM_VALIDATE_NUMBER_COPY,
4236 SCM_VALIDATE_NUMBER_DEF_COPY, SCM_VALIDATE_OPDIR): Re-added from
4237 the release_1_6 branch.
4238
4239 2003-06-25 Stefan Jahn <stefan@lkcc.org>
4240
4241 * continuations.c: Redeclaration of getcontext() via the
4242 __asm__ ("getcontext") directive.
4243
4244 * continuations.h: Include <ucontext.h> instead of
4245 <sys/ucontext.h>.
4246
4247 2003-06-21 Kevin Ryde <user42@zip.com.au>
4248
4249 * numbers.c (_GNU_SOURCE): #define, to get C99 things.
4250 (scm_asinh, scm_acosh, scm_atanh, scm_truncate, $asinh, $acosh,
4251 $atanh, truncate): Use C library asinh, acosh, atanh and trunc, when
4252 available.
4253 (scm_inexact_to_exact): Expand isfinite to its definition !xisinf.
4254 (isfinite): Remove, conflicts with C99 isfinite().
4255
4256 2003-06-19 Marius Vollmer <mvo@zagadka.de>
4257
4258 * deprecated.h, deprecated.c (scm_strhash, scm_sym2ovcell_soft,
4259 scm_sym2ovcell, scm_intern_obarray_soft, scm_intern_obarray,
4260 scm_symbol_value0, scm_string_to_obarray_symbol scm_intern_symbol,
4261 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
4262 scm_symbol_bound_p, scm_symbol_set_x, scm_gentemp): Re-added from
4263 the release_1_6 branch.
4264
4265 2003-06-14 Stefan Jahn <stefan@lkcc.org>
4266
4267 * threads.h: Redefined scm_getspecific() and scm_setspecific()
4268 to be functions instead of macros.
4269
4270 * threads.c: Conditionalized inclusion of <sys/time.h> and
4271 <unistd.h>.
4272 (scm_getspecific, scm_setspecific): Made these two function
4273 real part of the API.
4274
4275 * posix.c (s_scm_putenv): Added some code to make a
4276 (putenv "FOO="), i.e. setting an empty string, work also on
4277 Win32 systems. Thanks to Kevin Ryde for the proposal.
4278
4279 2003-06-12 Kevin Ryde <user42@zip.com.au>
4280
4281 * posix.c (scm_putenv): Free temporary ptr in mingw unset. Add
4282 freebsd to comment about need to use unsetenv.
4283
4284 2003-06-02 Marius Vollmer <mvo@zagadka.de>
4285
4286 * ports.c (scm_peek_char): Safe the column of the port around the
4287 getc/ungetc calls. Thanks to Dr. Peter Ivanyi!
4288
4289 2003-06-07 Kevin Ryde <user42@zip.com.au>
4290
4291 * tags.h: Use inttypes.h and stdint.h when available, for INTPTR_MAX
4292 and friends required by scm_t_bits setups.
4293
4294 2003-06-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
4295
4296 * tags.h (scm_tc2_int): Added.
4297
4298 * tags.h (scm_tc3_int_1, scm_tc3_int_2): Expressed in terms of
4299 scm_tc2_int.
4300
4301 * tags.h (scm_tcs_cons_imcar, scm_tcs_cons_nimcar, scm_tcs_struct,
4302 scm_tcs_closures): Hard coded values replaced by symbolic ones.
4303
4304 2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
4305
4306 * eval.c: Partially undid my patch from 2003-05-31. This patch
4307 caused the segfault referenced in the previous changelog entry.
4308
4309 2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
4310
4311 * tags.h: Fixed comment about the immediate type code layout.
4312
4313 * eval.c: Fixed handling of non-special instructions. Without
4314 this patch, guile will segfault on (#\0) and similar instructions.
4315
4316 2003-06-05 Kevin Ryde <user42@zip.com.au>
4317
4318 * numbers.c (scm_max, scm_min): For inum, bignum and real, if other
4319 operand is NaN, then return NaN. Also avoid passing NaN to mpz_cmp_d.
4320
4321 * read.c (scm_input_error): Pass arg list parameter to scm_error_scm,
4322 rather than SCM_EOL. Needed by "Unknown # object" case in scm_lreadr.
4323
4324 2003-06-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
4325
4326 * __scm.h, gc-card.c (SCM_DEBUG_DEBUGGER_SUPPORT,
4327 SCM_DEBUG_DEBUGGING_SUPPORT): Renamed macro
4328 SCM_DEBUG_DEBUGGER_SUPPORT to SCM_DEBUG_DEBUGGING_SUPPORT and
4329 generalized it to apply not only to C level functions but also to
4330 scheme level functions.
4331
4332 * debug.c, debug.h, eval.c (make-iloc, scm_make_iloc, iloc?,
4333 scm_iloc_p, dbg-make-iloc, scm_dbg_make_iloc, dbg-iloc?,
4334 scm_dbg_iloc_p): Moved functions scm_make_iloc, scm_iloc_p to
4335 eval.c, made them available under SCM_DEBUG_DEBUGGING_SUPPORT == 1
4336 only and renamed them to scm_dbg_make_iloc, scm_dbg_iloc_p,
4337 respectively.
4338
4339 * deprecated.h, eval.c, eval.h (SCM_ILOC00, SCM_IDINC,
4340 SCM_IDSTMSK): Deprecated. The macro definitions are moved from
4341 eval.h into eval.c and a copy is placed into deprecated.h.
4342
4343 * eval.c, eval.h (SCM_MAKE_ILOC): Removed from eval.h and placed
4344 into eval.c. This definition was not part of the API in any
4345 officially released version of guile and thus does not need to go
4346 through a phase of deprecation.
4347
4348 2003-06-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
4349
4350 * deprecated.c, deprecated.h, eval.c, eval.h (scm_s_expression,
4351 scm_s_test, scm_s_body, scm_s_bindings, scm_s_variable,
4352 scm_s_clauses, scm_s_formals): Deprecated. In eval.c the
4353 definitions are make static and renamed from scm_s_xxx to s_xxx.
4354 In deprecated.c the original definitions are copied.
4355
4356 * deprecated.h, eval.c, eval (SCM_EVALIM2, SCM_EVALIM, SCM_XEVAL,
4357 SCM_XEVALCAR): Deprecated. The macro definitions are moved from
4358 eval.h into eval.c and a copy (slightly modified to work in user
4359 code) is placed into deprecated.h.
4360
4361 * eval.c: Use the local static s_xxx definitions instead of the
4362 scm_s_xxx definitions throughout.
4363
4364 2003-06-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
4365
4366 This set of patches separates the representation of the cxr family
4367 of functions (car, cdr etc.) from the dsubr family of functions
4368 (i. e. functions that take a double precision floating point
4369 argument). Further, the algorithm for handling the cxr function
4370 is improved.
4371
4372 * eval.c (SCM_CEVAL, SCM_APPLY, scm_trampoline_1), numbers.c
4373 (scm_asinh, scm_acosh, scm_atanh, scm_truncate, scm_round, floor,
4374 ceil, sqrt, fabs, exp, log, sin, cos, tan, asin, acos, atan, sinh,
4375 cosh, tanh), objects.c (scm_class_of), procprop.c
4376 (scm_i_procedure_arity), ramap.c (scm_array_map_x), tags.h
4377 (scm_tc7_dsubr, scm_tcs_subrs): Introduce scm_tc7_dsubr as new
4378 typecode for the dsubr family of functions.
4379
4380 * ramap.c (ramap_cxr, ramap_dsubr): Renamed ramap_cxr to
4381 ramap_dsubr.
4382
4383 * eval.c (SCM_CEVAL, SCM_APPLY, call_cxr_1), pairs.c
4384 (scm_init_pairs): Make use of the (now usable) second cell element
4385 of a scm_tc7_cxr function to implement the cxr family of functions
4386 more efficiently.
4387
4388 2003-05-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
4389
4390 * eval.c (SCM_CEVAL, SCM_APPLY, scm_trampoline_0,
4391 scm_trampoline_1, scm_trampoline_2): Postpone error cases to the
4392 end of an if-else-if-sequence of checks.
4393
4394 2003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
4395
4396 * eval.c (SCM_CEVAL): Improved readability of call-with-values
4397 execution. Generalize apply_closure to apply_proc and use that
4398 for call-with-values.
4399
4400 2003-05-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
4401
4402 * eval.c (SCM_CEVAL): Avoid one level of indirection when applying
4403 a non closure.
4404
4405 2003-05-30 Stefan Jahn <stefan@lkcc.org>
4406
4407 * posix.c (s_scm_putenv): Use the new HAVE_UNSETENV
4408 appropriately for mingw32 hosts.
4409
4410 * numbers.h: Defining copysign(), isnan() and finite() to
4411 be prefixed by a single '_' for mingw32 hosts.
4412
4413 2003-05-30 Kevin Ryde <user42@zip.com.au>
4414
4415 * numbers.c (z_negative_one): New variable.
4416 (scm_init_numbers): Initialize it.
4417 (scm_logcount): Use it and mpz_hamdist to count zeros for negatives.
4418
4419 2003-05-29 Stefan Jahn <stefan@lkcc.org>
4420
4421 * win32-dirent.c: Use malloc() instead of scm_malloc().
4422
4423 * stime.c (s_scm_strftime): Add a type cast to avoid compiler
4424 warning.
4425
4426 * posix.c (s_scm_putenv): Disable use of unsetenv() for the
4427 mingw32 build.
4428
4429 * modules.c (s_scm_module_import_interface): Renamed local
4430 variable interface to _interface. Seems like 'interface'
4431 is a special compiler directive for the mingw32 compiler.
4432
4433 * mkstemp.c: Provide prototype to avoid compiler warning.
4434
4435 * load.c (s_scm_search_path): Fixed absolute and relative
4436 path detections for native Windows platforms.
4437
4438 * gc.h, threads.h: Export some more symbols using SCM_API (necessary
4439 to build on mingw32).
4440
4441 * gc-freelist.c ("s_scm_map_free_list",
4442 "s_scm_gc_set_debug_check_freelist_x"): Fixed use of FUNC_NAME.
4443
4444 * fports.c (fport_fill_input): Disable use of
4445 fport_wait_for_input() on Win32 platforms.
4446
4447 * filesys.c (s_scm_basename): Fixed __MINGW32__ code.
4448
4449 * Makefile.am: Modified some rules for cross compiling.
4450
4451 2003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
4452
4453 * eval.c (SCM_CEVAL): In case of an application, all checks for a
4454 proper function object and the correct number of arguments are now
4455 performed in the application part of SCM_CEVAL.
4456
4457 (scm_badformalsp): Removed.
4458
4459 2003-05-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
4460
4461 * deprecated.c (scm_read_and_eval_x): Fixed C99-ism.
4462
4463 2003-05-22 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4464
4465 * num2integral.i.c (NUM2INTEGRAL): Avoid warning about conditional
4466 always being false by inserting preprocessor conditional. (Thanks
4467 to Bruce Korb.)
4468
4469 * __scm.h (SCM_STACK_PTR): New macro. (Cast argument through
4470 (void *) in order to avoid an aliasing warning; thanks to Bruce
4471 Korb.)
4472
4473 * stackchk.h (SCM_STACK_OVERFLOW_P): Use SCM_STACK_PTR.
4474
4475 * threads.c (suspend, launch_thread, scm_threads_mark_stacks): Use
4476 SCM_STACK_PTR.
4477
4478 * threads.c (scm_threads_mark_stacks): Bugfix: Changed
4479 thread->base --> t->base.
4480
4481 * eval.c (SCM_CEVAL): Don't cast argument of SCM_STACK_OVERFLOW_P.
4482
4483 2003-05-20 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4484
4485 * deprecated.h, deprecated.c (scm_makstr, scm_makfromstr,
4486 scm_variable_set_name_hint, scm_builtin_variable,
4487 scm_internal_with_fluids, scm_make_gsubr,
4488 scm_make_gsubr_with_generic, scm_create_hook, SCM_LIST0,
4489 SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5, SCM_LIST6,
4490 SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify, scm_sloppy_memq,
4491 scm_sloppy_memv, scm_sloppy_member, scm_read_and_eval_x,
4492 scm_subr_entry, SCM_SUBR_DOC, scm_make_subr,
4493 scm_make_subr_with_generic, scm_make_subr_opt,
4494 scm_call_catching_errors, scm_make_smob_type_mfpe,
4495 scm_set_smob_mfpe, scm_strprint_obj, scm_read_0str, scm_eval_0str,
4496 SCM_CHARS, SCM_UCHARS, SCM_LENGTH): Re-added from the release_1_6
4497 branch. Some have been slightly rewritten.
4498 (scm_i_object_chars, scm_i_object_length): New, to support
4499 SCM_CHARS, SCM_UCHARS, and SCM_LENTH.
4500
4501 2003-05-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
4502
4503 * eval.c (scm_m_do, unmemocopy, SCM_CEVAL): Reversed order of
4504 names and inits in the memoized code of do.
4505
4506 2003-05-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4507
4508 * c-tokenize.lex (yyget_lineno, yyget_in, yyget_out, yyget_leng,
4509 yyget_text, yyset_lineno, yyset_in, yyset_out, yyget_debug,
4510 yyset_debug, yylex_destroy): Added prototypes (otherwise we'll get
4511 a compilation error if error-on-warning is enabled).
4512
4513 2003-05-17 Marius Vollmer <mvo@zagadka.de>
4514
4515 * c-tokenize.lex: Gobble up complete lines after a '#'. This
4516 removes preprocessor directives from the snarfage that might
4517 otherwise confuse us. These directives appear when compiling with
4518 "-g3", for example.
4519
4520 2003-05-16 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4521
4522 * ChangeLog: add my surname
4523
4524 * srcprop.c (scm_finish_srcprop): use
4525 scm_gc_register_collectable_memory()
4526 (scm_make_srcprops): idem.
4527
4528 2003-05-14 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4529
4530 * gc-malloc.c (scm_gc_register_collectable_memory): avoid
4531 wrap-around for scm_mtrigger
4532 (scm_gc_register_collectable_memory): abort on overflowing
4533 scm_mallocated().
4534
4535 2003-05-13 Kevin Ryde <user42@zip.com.au>
4536
4537 * numbers.c (xmpz_cmp_d): New macro, handling infs if gmp doesn't.
4538 (scm_num_eq_p, scm_less_p, scm_max, scm_min): Use it.
4539
4540 2003-05-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4541
4542 * backtrace.c (scm_display_error_message): Introduced fancy
4543 printing with max level 7 and length 10. (Purpose: avoid printing
4544 gigantic objects in error messages.)
4545
4546 * print.c, print.h (scm_i_port_with_print_state): New function.
4547
4548 * print.c (scm_iprin1, scm_printer_apply,
4549 scm_port_with_print_state): Use scm_i_port_with_print_state.
4550 (scm_simple_format): Modified not to destroy print states.
4551 (print_state_mutex): New mutex.
4552 (scm_make_print_state, scm_free_print_state, scm_prin1):
4553 Lock/unlock print_state_mutex.
4554
4555 * deprecated.h (SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK):
4556 Use current names in definitions.
4557
4558 2003-05-10 Kevin Ryde <user42@zip.com.au>
4559
4560 * numbers.c (scm_num_eq_p, scm_less_p): Don't pass NaN to mpz_cmp_d.
4561
4562 * numbers.c (scm_integer_length): On negative bignums, adjust
4563 mpz_sizeinbase to account for it looking at absolute value where we
4564 want ones-complement.
4565
4566 * numbers.c (scm_gcd): In bignum/inum, don't pass yy==0 to mpz_gcd_ui
4567 since we're only using the ulong return value, and x might not fit.
4568
4569 2003-05-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
4570
4571 * eval.c, eval.h, read.c, read.h (scm_sym_dot): Moved from eval to
4572 read. This will allow to make the definition in read.c static.
4573
4574 2003-05-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
4575
4576 * eval.c, eval.h, evalext.c, evalext.h (scm_m_undefine): Moved
4577 from evalext to eval. This will allow to make some of the
4578 definitions in eval.c static.
4579
4580 2003-05-06 Kevin Ryde <user42@zip.com.au>
4581
4582 * numbers.c (scm_difference): In inum - bignum, handle negative inum.
4583 (scm_logcount): Use mpz_com, not mpz_neg.
4584
4585 2003-05-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
4586
4587 The purpose of this patch is to make guile's internal memoizers
4588 distinguishable from memoizing macros created on the scheme level
4589 or from user provided primitive memoizing macros. The reason is,
4590 that the internal memoizers are the only ones that are allowed to
4591 transform their scheme input into memoizer byte code, while all
4592 other memoizing macros may only transform scheme code into new
4593 scheme code.
4594
4595 To achieve this, a new macro type 'builtin-macro!' is introduced.
4596 Currently, 'builtin-macro!'s are handled as memoizing macros, but
4597 this will change when the memoizer and executor are separated.
4598
4599 * macros.[ch] (scm_i_makbimacro): New.
4600
4601 * macros.h (SCM_BUILTIN_MACRO_P): New.
4602
4603 * macros.c (macro_print, scm_macro_type): Support builtin-macro!s.
4604
4605 * eval.c, goops.c: All of guile's primitive memoizing macros are
4606 primitive builtin-macros now.
4607
4608 * eval.c (scm_macroexp, SCM_CEVAL): Make sure the primitive
4609 builtin-macros are handled equally to memoizing macros.
4610
4611 2003-05-04 Marius Vollmer <mvo@zagadka.de>
4612
4613 * throw.c (scm_ithrow): Remove "asm volatile" hack. It used to
4614 work around a bug in GCC 2.95.2 but is now a bug in itself.
4615
4616 2003-05-02 Marius Vollmer <mvo@zagadka.de>
4617
4618 * deprecated.h (scm_rstate, scm_rng, SCM_SLOPPY_CONSP,
4619 SCM_SLOPPY_NCONSP, scm_tc7_ssymbol, scm_tc7_msymbol,
4620 scm_tcs_symbols): New.
4621
4622 2003-04-30 Marius Vollmer <marius.vollmer@uni-dortmund.de>
4623
4624 * deprecated.h, deprecated.c (scm_protect_object,
4625 scm_unprotect_object, SCM_SETAND_CAR, SCM_SETOR_CAR,
4626 SCM_SET_AND_CDR, SCM_SET_OR_CDR, SCM_FREEP, SCM_NFREEP,
4627 SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16,
4628 SCM_GCCDR, scm_remember, scm_the_root_module, scm_make_module,
4629 scm_ensure_user_module, scm_load_scheme_module, scm_port,
4630 scm_ptob_descriptor, scm_port_rw_active,
4631 scm_close_all_ports_except): New.
4632
4633 * ports.c (scm_c_port_for_each): New function, mostly copied from
4634 scm_port_for_each.
4635 (scm_port_for_each): Reimplemented using scm_c_port_for_each.
4636 * ports.h (scm_c_port_for_each): New prototype.
4637
4638 2003-04-28 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4639
4640 * eval.c (scm_m_atdispatch): Removed until actually needed. (This
4641 macro was introduced in anticipation of GOOPS method compilation
4642 code.)
4643
4644 * goops.c: Removed binding of @dispatch.
4645
4646 2003-04-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
4647
4648 * eval.c, goops.c (@dispatch, @slot-ref, @slot-set!): Move the
4649 instructions that bind the macros on the scheme level back to
4650 goops.c in order to make sure again that the bindings go into the
4651 (oop goops) module and are not visible from the outside.
4652
4653 2003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
4654
4655 * eval.c: Non functional change: Separated R5RS and non-R5RS
4656 macros into different sections of the file and ordered the
4657 memoizers alphabetically.
4658
4659 2003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
4660
4661 * eval.c (scm_ilookup): Rewritten to improve readability.
4662
4663 2003-04-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
4664
4665 * eval.c (scm_i_call_closure_0, call_closure_1, call_closure_2):
4666 Partially reverted patch from 2003-04-23 in oder to find a better
4667 compromise between readability and debuggability.
4668
4669 2003-04-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
4670
4671 * eval.c, eval.h, goops.c, goops.h (scm_m_atslot_ref,
4672 scm_m_atslot_set_x, scm_m_atdispatch): Move the declarations and
4673 definitions of the special goops memoizers from goops.[ch] to
4674 eval.[ch]. Hmm... it seems that scm_m_atdispatch is not used
4675 throughout guile.
4676
4677 2003-04-24 Mikael Djurfeldt <mdj@kvast.blakulla.net>
4678
4679 * ports.c, ports.h (scm_i_port_table_mutex): New mutex.
4680
4681 * fports.c (scm_evict_ports): Lock/unlock scm_i_port_table_mutex.
4682
4683 * ports.c (scm_close_port, scm_flush_all_ports): Ditto.
4684
4685 * ioext.c (scm_fdes_to_ports): Ditto.
4686
4687 * vports.c (scm_make_soft_port): Changed SCM_DEFER/ALLOW_INTS into
4688 lock/unlock scm_i_port_table_mutex.
4689
4690 * strports.c (scm_mkstrport): Ditto.
4691
4692 * ports.c (scm_void_port, scm_port_for_each): Ditto.
4693
4694 * fports.c (scm_fdes_to_port): Ditto.
4695
4696 2003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
4697
4698 This set of patches contains no functional changes, only debatable
4699 minor stylistic ones. Still, in order to prepare a patch between
4700 my local copy and the CVS version, I decided to submit the changes
4701 below. Then, the patch will hopefully only contain relevant
4702 modifications :-)
4703
4704 * eval.c (iqq): Added const specifier.
4705
4706 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
4707 Use NULL instead of 0 to indicate that a pointer is returned.
4708 Removed some misleading 'fall through' comments.
4709
4710 * eval.c (scm_i_call_closure_0, call_closure_1, call_closure_2):
4711 Split up long expressions into smaller ones to be more debugging
4712 friendly.
4713
4714 2003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
4715
4716 * eval.h (SCM_ENTER_FRAME_HDLR, SCM_APPLY_FRAME_HDLR,
4717 SCM_EXIT_FRAME_HDLR): Use SCM_PACK to convert data to a SCM value
4718 rather than casting to SCM.
4719
4720 2003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
4721
4722 * sort.c, pairs.h: Removed unnecessary includes.
4723
4724 2003-04-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
4725
4726 * sort.c: Replaced hand-made trampline code by the new official
4727 mechanism from eval.c. This fixes a segfault in the new test file
4728 sort.test.
4729
4730 (quicksort, compare_function, scm_restricted_vector_sort_x,
4731 scm_sorted_p, scm_merge, scm_merge_list_x, scm_merge_x,
4732 scm_merge_list_step, scm_sort_x, scm_sort, scm_merge_vector_x,
4733 scm_merge_vector_step, scm_stable_sort_x, scm_stable_sort,
4734 scm_sort_list_x, scm_sort_list): Use trampoline mechanism from
4735 eval.c.
4736
4737 (subr2less, lsubrless, closureless, applyless, scm_cmp_function,
4738 cmp_fun_t): Removed.
4739
4740 (compare_function): Added.
4741
4742 * sort.c (quicksort, SWAP, stack_node): Replaced pointer
4743 arithmetics with index arithmetics. Changed quicksort to work on
4744 an array of SCM values instead of an array of characters. Avoid
4745 bytewise copying of SCM elements. Avoid allocating memory on the
4746 stack with alloca. Fixed some comments.
4747
4748 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4749
4750 * eval.c (EXTEND_ENV): Eliminated.
4751
4752 (unmemocopy, SCM_CEVAL, SCM_APPLY): Use SCM_EXTEND_ENV instead of
4753 EXTEND_ENV.
4754
4755 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4756
4757 * __scm.h (SCM_DEBUG_DEBUGGER_SUPPORT): New compile-time option.
4758
4759 * gc.card.c (scm_gc_marked_p): Fixed compiler warning when
4760 compiling with SCM_DEBUG==1 by moving definition behind prototype.
4761
4762 * gc.card.c (scm_dbg_t_list_cell, scm_dbg_t_double_cell,
4763 scm_dbg_gc_marked_p, scm_dbg_gc_get_card, scm_dbg_gc_get_bvec,
4764 scm_t_list_cell_struct, scm_t_list_cell, scm_t_double_cell,
4765 scm_gc_marked_p, scm_gc_get_card, scm_gc_get_bvec): Fixed
4766 functions such that they check if the object is a non-immediate.
4767 Further, renamed identifiers to use the scm_dbg_ prefix and made
4768 their inclusion into the lib dependent of the
4769 SCM_DEBUG_DEBUGGER_SUPPORT compile time option.
4770
4771 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4772
4773 * __scm.h: Fixed comment about the SCM_DEBUG_TYPING_STRICTNESS
4774 debug option.
4775
4776 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4777
4778 * list.c (scm_ilength, scm_last_pair), unif.c (l2ra): Prefer
4779 !SCM_CONSP over SCM_NCONSP. Now, guile itself does not include
4780 any calls to SCM_NCONSP any more.
4781
4782 * unif.c (l2ra): Eliminate redundant check.
4783
4784 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4785
4786 * list.c (scm_cons_star), ramap.c (scm_ra_sum, scm_ra_product,
4787 scm_array_map_x), unif.c (l2ra): Prefer !SCM_NULLP over
4788 SCM_NNULLP. Now, guile itself does not include any calls to
4789 SCM_NNULLP any more.
4790
4791 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4792
4793 * eval.c (unmemocopy, SCM_APPLY, scm_map, scm_for_each,
4794 scm_copy_tree): Place assignment expressions which are part of
4795 other expressions into an expression of their own.
4796
4797 2003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
4798
4799 * goops.c (TEST_CHANGE_CLASS, scm_sys_initialize_object): Don't
4800 compare SCM values with !=.
4801
4802 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
4803
4804 * eval.c, eval.h, evalext.c, evalext.h (scm_sym_setter,
4805 scm_m_generalized_set_x, scm_init_evalext): Move the declaration
4806 and definition of the memoizer for the generalized set! macro from
4807 evalext.[ch] to eval.[ch]. Use the SCM_SYNTAX snarfer macro to
4808 define the macro object.
4809
4810 * eval.c, eval.h (s_set_x, scm_s_set_x, scm_m_set_x,
4811 scm_m_generalized_set_x): Since now scm_s_set_x is only used in
4812 eval.c, it is made static and renamed to s_set_x.
4813
4814 * evalext.c (scm_defined_p, scm_m_undefine): Prefer !SCM_<foo>
4815 over SCM_N<foo>.
4816
4817 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
4818
4819 * eval.c, root.h (scm_undefineds, SCM_NUM_PROTECTS, undefineds,
4820 scm_init_eval): Made scm_undefineds static in eval.c, renamed it
4821 to undefineds and registered the object as a permanent object.
4822
4823 * eval.c, eval.h (scm_f_apply, scm_init_eval): Made scm_f_apply
4824 static in eval.c, renamed it to f_apply and registered the object
4825 as a permanent object.
4826
4827 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
4828
4829 * eval.c (SCM_BIT7, SCM_BIT8, unmemocopy, SCM_CEVAL): Renamed
4830 file-local macro SCM_BIT8 to SCM_BIT7, which is more appropriate.
4831
4832 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
4833
4834 * numbers.c (scm_logtest): Fixed argument bug in the call to
4835 mpz_and, which showed up when compiling with SCM_DEBUG defined.
4836
4837 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
4838
4839 * gc-card.c (scm_i_sweep_card, scm_i_init_card_freelist): Fixed
4840 type errors that showed up when compiling with SCM_DEBUG defined.
4841
4842 2003-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
4843
4844 * continuations.c, continuations.h, eval.c, eval.h, extensions.c,
4845 gsubr.c, guile.c, init.c, read.c, root.c, root.h, stackchk.h,
4846 throw.c: Removed uses of DEBUG_EXTENSIONS and DYNAMIC_LINKING to
4847 fix compile errors with --disable-deprecated.
4848
4849 2003-04-17 Rob Browning <rlb@defaultvalue.org>
4850
4851 * numbers.c (scm_integer_expt): fix case where we were declaring
4852 vars in the middle of a statement block. Thanks to Thamer
4853 Al-Harbash.
4854
4855 2003-04-17 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4856
4857 * goops.c (TEST_CHANGE_CLASS): Update variable class after class
4858 change.
4859
4860 * eq.c (scm_eqv_p): Turned into a primitive generic.
4861
4862 2003-04-16 Rob Browning <rlb@defaultvalue.org>
4863
4864 * gc_os_dep.c: Added patch for UnixWare and OpenUNIX support.
4865 Thanks to Boyd Gerber.
4866 Added check for __arm__ in addition to arm for LINUX and copied
4867 __s390__ defines from upstream libgc. Thanks to James Treacy for
4868 reporting the problems.
4869
4870 * numbers.c (PTRDIFF_MIN): use SCM_CHAR_BIT.
4871
4872 * socket.c: use SCM_CHAR_BIT.
4873
4874 * random.c (scm_c_random_bignum): use SCM_CHAR_BIT.
4875
4876 * num2integral.i.c (NUM2INTEGRAL): use SCM_CHAR_BIT.
4877
4878 2003-04-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
4879
4880 * feature.c (scm_init_feature): Always add threads feature.
4881
4882 2003-04-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4883
4884 * goops.c (scm_sys_fast_slot_ref): Use SCM_SLOT instead of
4885 scm_at_assert_bound_ref. (We don't want the unbound check. See
4886 oop/goops/active-slot.scm.)
4887
4888 2003-04-14 Rob Browning <rlb@defaultvalue.org>
4889
4890 * tags.h: scm_t_intptr should have been intptr_t.
4891
4892 2003-04-13 Rob Browning <rlb@defaultvalue.org>
4893
4894 * __scm.h (SCM_FLUSH_REGISTER_WINDOWS): don't just rely on "sparc"
4895 test. Instead use
4896 #if defined (sparc) || defined (__sparc__) || defined (__sparc)
4897 as gc_os_dep.c suggests is appropriate.
4898
4899 * goops.c (prep_hashsets): make static to match prototype.
4900 (scm_sym_args): SCM_SYMBOL -> SCM_GLOBAL_SYMBOL. Thanks to Albert
4901 Chin.
4902
4903 * c-tokenize.lex: remove trailing comma from enum. Thanks to
4904 Albert Chin.
4905
4906 * gc_os_dep.c: add NetBSD powerpc config info. Thanks to Thomas
4907 Klausner.
4908
4909 2003-04-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4910
4911 * goops.c (scm_sys_prep_layout_x): Instance allocation is now
4912 indicated through extra fields in getters-n-setters.
4913 (scm_add_slot): Adapted to new format of getters_n_setters slot.
4914 (Thanks to Andy Wingo.)
4915
4916 2003-02-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
4917
4918 * gc-segment.c: add comment
4919
4920 2003-04-07 Rob Browning <rlb@defaultvalue.org>
4921
4922 * debug.h: change "id" arg name to "info_id" to avoid objective-c
4923 clash.
4924
4925 * num2integral.i.c (NUM2INTEGRAL): fix bug pointed out by Mikael
4926 and add regression test to standalone/.
4927
4928 2003-04-06 Rob Browning <rlb@defaultvalue.org>
4929
4930 * strings.c (scm_mem2string): use memcpy rather than by-hand loop.
4931 Thanks to Dale P. Smith.
4932
4933 * random.c: #include gmp.h.
4934 (scm_c_random_bignum): normalize result on return.
4935
4936 * init.c: #include gmp.h.
4937
4938 * numbers.h: remove the gmp.h #include (not needed now).
4939
4940 * posix.h: change occurences of "id" to something else so we don't
4941 cause trouble when included via objective-c (can't hurt, might
4942 help). Still have usage in debug.h, though.
4943
4944 2003-04-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4945
4946 * random.c (scm_c_random_bignum): Don't generate a random number
4947 equal to m (the second argument of scm_c_random_bignum); only
4948 generate numbers in the range 0 <= r < m.
4949 (scm_c_default_rstate): Use SCM_VARIABLE_REF to access
4950 scm_var_random_state.
4951
4952 * num2integral.i.c (INTEGRAL2BIG): Put negation of n inside then
4953 clause.
4954
4955 2003-04-05 Rob Browning <rlb@defaultvalue.org>
4956
4957 * modules.c (scm_module_import_interface): move declaration of
4958 uses before any code.
4959
4960 2003-04-05 Mikael Djurfeldt <djurfeldt@nada.kth.se>
4961
4962 * Makefile.am (scmconfig.h): Look for config.h in top_builddir,
4963 not top_srcdir.
4964
4965 * hashtab.c (rehash_after_gc): Clear to_rehash list before
4966 processing it in order to avoid an infinite loop.
4967
4968 * print.c (scm_prin1): Remember old state of pstate->writingp.
4969
4970 2003-04-05 Marius Vollmer <mvo@zagadka.de>
4971
4972 * Changed license terms to the plain LGPL thru-out.
4973
4974 2003-04-04 Rob Browning <rlb@defaultvalue.org>
4975
4976 * socket.c (FLIPCPY_NET_HOST_128): new macro.
4977 (ipv6_net_to_num, ipv6_num_to_net, bignum_in_ipv6_range_p):
4978 rewrite to handle GMP bignums.
4979
4980
4981 * random.c (scm_c_random_bignum): rewrite to handle GMP bignums.
4982
4983 * ports.c (scm_getc): minor tweak.
4984
4985 * numbers.h: remove SCM_BIGDIG conditionals, reorganize, and
4986 rewrite to handle GMP bignums.
4987
4988 * numbers.c: rewrite *many* functions to handle GMP bignums.
4989
4990 * num2integral.i.c (NUM2INTEGRAL, INTEGRAL2NUM, INTEGRAL2BIG):
4991 handle GMP bignums.
4992
4993 * num2float.i.c (NUM2FLOAT): handle GMP bignums.
4994
4995 * init.c (check_config): remove SCM_BIGDIG conditionals.
4996 (scm_init_guile_1): test to make sure mpz_t fits in a double_cell.
4997
4998 * gc-card.c ("sweep_card"): handle new mpz_t bignums.
4999
5000 * eval.c: remove SCM_BIGDIG conditionals.
5001
5002 * eq.c (s_scm_eqv_p): scm_i_bigcomp -> scm_i_bigcmp.
5003
5004 2003-03-31 Rob Browning <rlb@defaultvalue.org>
5005
5006 * Makefile.am (scmconfig.h): change srcdir to builddir. (Thanks
5007 to Kevin Ryde.)
5008
5009 2003-03-27 Rob Browning <rlb@defaultvalue.org>
5010
5011 * threads.h: fix various preprocessor usages of new public
5012 symbols to expect 0 or 1 values rather than 1 or undefined.
5013 i.e. change #ifdef to #if, etc.
5014
5015 * threads.c: fix various preprocessor usages of new public
5016 symbols to expect 0 or 1 values rather than 1 or undefined.
5017 i.e. change #ifdef to #if, etc.
5018
5019 * tags.h: fix various preprocessor usages of new public
5020 symbols to expect 0 or 1 values rather than 1 or undefined.
5021 i.e. change #ifdef to #if, etc.
5022
5023 * stacks.c: fix various preprocessor usages of new public
5024 symbols to expect 0 or 1 values rather than 1 or undefined.
5025 i.e. change #ifdef to #if, etc.
5026
5027 * stackchk.h: fix various preprocessor usages of new public
5028 symbols to expect 0 or 1 values rather than 1 or undefined.
5029 i.e. change #ifdef to #if, etc.
5030
5031 * stackchk.c: fix various preprocessor usages of new public
5032 symbols to expect 0 or 1 values rather than 1 or undefined.
5033 i.e. change #ifdef to #if, etc.
5034
5035 * sort.c: fix various preprocessor usages of new public
5036 symbols to expect 0 or 1 values rather than 1 or undefined.
5037 i.e. change #ifdef to #if, etc.
5038
5039 * read.c: fix various preprocessor usages of new public
5040 symbols to expect 0 or 1 values rather than 1 or undefined.
5041 i.e. change #ifdef to #if, etc.
5042
5043 * random.c: fix various preprocessor usages of new public
5044 symbols to expect 0 or 1 values rather than 1 or undefined.
5045 i.e. change #ifdef to #if, etc.
5046
5047 * print.c: fix various preprocessor usages of new public
5048 symbols to expect 0 or 1 values rather than 1 or undefined.
5049 i.e. change #ifdef to #if, etc.
5050
5051 * objects.c: fix various preprocessor usages of new public
5052 symbols to expect 0 or 1 values rather than 1 or undefined.
5053 i.e. change #ifdef to #if, etc.
5054
5055 * numbers.h: fix various preprocessor usages of new public
5056 symbols to expect 0 or 1 values rather than 1 or undefined.
5057 i.e. change #ifdef to #if, etc.
5058
5059 * null-threads.c: fix various preprocessor usages of new public
5060 symbols to expect 0 or 1 values rather than 1 or undefined.
5061 i.e. change #ifdef to #if, etc.
5062
5063 * lang.c: fix various preprocessor usages of new public
5064 symbols to expect 0 or 1 values rather than 1 or undefined.
5065 i.e. change #ifdef to #if, etc.
5066
5067 * lang.h: fix various preprocessor usages of new public
5068 symbols to expect 0 or 1 values rather than 1 or undefined.
5069 i.e. change #ifdef to #if, etc.
5070
5071 * iselect.h: fix various preprocessor usages of new public
5072 symbols to expect 0 or 1 values rather than 1 or undefined.
5073 i.e. change #ifdef to #if, etc.
5074
5075 * init.c: fix various preprocessor usages of new public
5076 symbols to expect 0 or 1 values rather than 1 or undefined.
5077 i.e. change #ifdef to #if, etc.
5078
5079 * gh_data.c: fix various preprocessor usages of new public
5080 symbols to expect 0 or 1 values rather than 1 or undefined.
5081 i.e. change #ifdef to #if, etc.
5082
5083 * gh.h: fix various preprocessor usages of new public
5084 symbols to expect 0 or 1 values rather than 1 or undefined.
5085 i.e. change #ifdef to #if, etc.
5086
5087 * gen-scmconfig.c: change most new public symbols to be defined to
5088 0 or 1 rather than being either 1 or undefined.
5089
5090 * gc_os_dep.c: fix various preprocessor usages of new public
5091 symbols to expect 0 or 1 values rather than 1 or undefined.
5092 i.e. change #ifdef to #if, etc.
5093 (STACK_GROWS_DOWN): define to 0 or 1 rather than 1 or undef.
5094
5095 * gc.h: fix various preprocessor usages of new public
5096 symbols to expect 0 or 1 values rather than 1 or undefined.
5097 i.e. change #ifdef to #if, etc.
5098
5099 * gc-card.c: fix various preprocessor usages of new public
5100 symbols to expect 0 or 1 values rather than 1 or undefined.
5101 i.e. change #ifdef to #if, etc.
5102
5103 * gc-mark.c: fix various preprocessor usages of new public
5104 symbols to expect 0 or 1 values rather than 1 or undefined.
5105 i.e. change #ifdef to #if, etc.
5106
5107 * feature.c: fix various preprocessor usages of new public
5108 symbols to expect 0 or 1 values rather than 1 or undefined.
5109 i.e. change #ifdef to #if, etc.
5110
5111 * evalext.c: fix various preprocessor usages of new public
5112 symbols to expect 0 or 1 values rather than 1 or undefined.
5113 i.e. change #ifdef to #if, etc.
5114
5115 * eval.h: fix various preprocessor usages of new public
5116 symbols to expect 0 or 1 values rather than 1 or undefined.
5117 i.e. change #ifdef to #if, etc.
5118
5119 * eval.c: fix various preprocessor usages of new public
5120 symbols to expect 0 or 1 values rather than 1 or undefined.
5121 i.e. change #ifdef to #if, etc.
5122
5123 * eq.c: fix various preprocessor usages of new public
5124 symbols to expect 0 or 1 values rather than 1 or undefined.
5125 i.e. change #ifdef to #if, etc.
5126
5127 * coop.c: fix various preprocessor usages of new public
5128 symbols to expect 0 or 1 values rather than 1 or undefined.
5129 i.e. change #ifdef to #if, etc.
5130
5131 * coop-threads.c: fix various preprocessor usages of new public
5132 symbols to expect 0 or 1 values rather than 1 or undefined.
5133 i.e. change #ifdef to #if, etc.
5134
5135 * coop-pthreads.c: fix various preprocessor usages of new public
5136 symbols to expect 0 or 1 values rather than 1 or undefined.
5137 i.e. change #ifdef to #if, etc.
5138
5139 * coop-defs.h: fix various preprocessor usages of new public
5140 symbols to expect 0 or 1 values rather than 1 or undefined.
5141 i.e. change #ifdef to #if, etc.
5142
5143 * convert.i.c: fix various preprocessor usages of new public
5144 symbols to expect 0 or 1 values rather than 1 or undefined.
5145 i.e. change #ifdef to #if, etc.
5146
5147 * continuations.c: fix various preprocessor usages of new public
5148 symbols to expect 0 or 1 values rather than 1 or undefined.
5149 i.e. change #ifdef to #if, etc.
5150
5151 * _scm.h: fix various preprocessor usages of new public symbols to
5152 expect 0 or 1 values rather than 1 or undefined. i.e. change
5153 #ifdef to #if, etc.
5154
5155 2003-03-26 Marius Vollmer <marius.vollmer@uni-dortmund.de>
5156
5157 * init.c (scm_init_guile_1): Call scm_i_init_deprecated.
5158
5159 * deprecated.c, deprecated.h: New files, to collect deprecated
5160 things in one place.
5161 * Makefile.am: Added them in all the right places.
5162
5163 * Makefile.am (EXTRA_DIST): Added "scmconfig.h.top".
5164 (scmconfig.h): Get "scmconfig.h.top" from $(srcdir) so that VPATH
5165 builds work.
5166 (DOT_X_FILES): Removed "iselect.x".
5167 (DOT_DOC_FILES): Removed "iselect.doc".
5168
5169 2003-03-25 Rob Browning <rlb@defaultvalue.org>
5170
5171 * win32-socket.h: #include "libguile/__scm.h". Replace usage of
5172 HAVE_WINSOCK2_H with SCM_HAVE_WINSOCK2_H.
5173
5174 * win32-socket.c: #include <config.h> if HAVE_CONFIG_H.
5175
5176 * vports.c: #include <config.h> if HAVE_CONFIG_H.
5177
5178 * unif.c: #include <config.h> if HAVE_CONFIG_H. Replace usage of
5179 HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
5180
5181 * threads.h: replace usage of struct timespect with
5182 scm_t_timespec. Replace usage of USE_PTHREAD_THREADS with
5183 SCM_USE_PTHREAD_THREADS. Remove typedef for struct timespec in
5184 favor of scm_t_timespec from scmconfig.h.
5185
5186 * threads.c: move libguile/_scm.h include to the top so we pick up
5187 any critical defines like _GNU_SOURCE early. Replace usage of
5188 struct timespect with scm_t_timespec. Replace usage of
5189 STACK_GROWS_UP with SCM_STACK_GROWS_UP. Replace usage of
5190 USE_PTHREAD_THREADS with SCM_USE_PTHREAD_THREADS.
5191
5192 * threads-plugin.h: replace usage of struct timespect with
5193 scm_t_timespec.
5194
5195 * threads-plugin.c: #include <config.h> if HAVE_CONFIG_H. Replace
5196 usage of struct timespect with scm_t_timespec.
5197
5198 * tags.h: move HAVE_STDINT_H handling to scmconfig.h. Move
5199 HAVE_INTTYPES_H handling to scmconfig.h. #include
5200 "libguile/__scm.h". Rework handling for scm_t_bits,
5201 scm_t_signed_bits, SCM_T_BITS_MAX, SCM_T_SIGNED_BITS_MAX,
5202 SCM_T_SIGNED_BITS_MIN, and SIZEOF_SCM_T_BITS to use scm_t_intptr,
5203 scm_t_uintptr, SCM_SIZEOF_INTPTR_T, and SCM_SIZEOF_UINTPTR_T, and
5204 SCM_SIZEOF_UNSIGNED_LONG. Rename usage of HAVE_ARRAYS to
5205 SCM_HAVE_ARRAYS.
5206
5207 * symbols.c: #include <config.h> if HAVE_CONFIG_H.
5208
5209 * struct.c: #include <config.h> if HAVE_CONFIG_H.
5210
5211 * strports.c: #include <config.h> if HAVE_CONFIG_H.
5212
5213 * strop.c: #include <config.h> if HAVE_CONFIG_H.
5214
5215 * stime.h: move handling of time related headers to scmconfig.h.
5216
5217 * stime.c: #include <config.h> if HAVE_CONFIG_H.
5218
5219 * stacks.c: replace usage of STACK_GROWS_UP with
5220 SCM_STACK_GROWS_UP.
5221
5222 * sort.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
5223 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5224
5225 * socket.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
5226 of uint32 and HAVE_UINT_32 with scm_t_int32.
5227
5228 * smob.c: #include <config.h> if HAVE_CONFIG_H.
5229
5230 * simpos.c: #include <config.h> if HAVE_CONFIG_H.
5231
5232 * script.c: #include <config.h> if HAVE_CONFIG_H.
5233
5234 * scmsigs.c: #include <config.h> if HAVE_CONFIG_H.
5235
5236 * scmconfig.h.top: new file -- preamble for scmconfig.h.
5237
5238 * rw.c: #include <config.h> if HAVE_CONFIG_H.
5239
5240 * regex-posix.c: #include <config.h> if HAVE_CONFIG_H.
5241
5242 * read.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5243
5244 * rdelim.c: #include <config.h> if HAVE_CONFIG_H.
5245
5246 * random.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
5247 of LONG32, LONG64, SIZEOF_LONG, and HAVE_LONG_LONGS with
5248 scm_t_int32, scm_t_int64, and SCM_HAVE_T_INT64. Rename usage of
5249 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5250
5251 * ramap.c: replace usage of HAVE_LONG_LONGS with
5252 "SCM_SIZEOF_LONG_LONG != 0".
5253
5254 * putenv.c: #include <config.h> if HAVE_CONFIG_H. #include
5255 "libguile/scmconfig.h".
5256
5257 * pthread-threads.c: #include <config.h> if HAVE_CONFIG_H.
5258
5259 * print.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5260 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
5261
5262 * posix.c: #include <config.h> if HAVE_CONFIG_H.
5263
5264 * ports.c: #include <config.h> if HAVE_CONFIG_H.
5265
5266 * objects.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5267
5268 * numbers.h: replace usage of HAVE_FLOATINGPOINT_H with
5269 SCM_HAVE_FLOATINGPOINT_H. Replace usage of HAVE_IEEEFP_H with
5270 SCM_HAVE_IEEEFP_H. Replace usage of HAVE_NAN_H with
5271 SCM_HAVE_NAN_H. Replace usage of STDC_HEADERS with
5272 SCM_HAVE_STDC_HEADERS. Replace usage of ptrdiff_t with
5273 scm_t_ptrdiff. Replace usage of HAVE_LONG_LONGS with
5274 "SCM_SIZEOF_LONG_LONG != 0".
5275
5276 * numbers.c: #include <config.h> if HAVE_CONFIG_H. Replace usage
5277 of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0". Replace
5278 usage of ptrdiff_t with scm_t_ptrdiff. Replace usage of
5279 SIZEOF_PTRDIFF_T with SCM_SIZEOF_SCM_T_PTRDIFF.
5280
5281 * num2integral.i.c: #include <config.h> if HAVE_CONFIG_H.
5282
5283 * null-threads.h: replace usage of struct timespect with
5284 scm_t_timespec.
5285
5286 * net_db.c: #include <config.h> if HAVE_CONFIG_H.
5287
5288 * mkstemp.c: #include <config.h> if HAVE_CONFIG_H. #include
5289 "libguile/__scm.h". Remove definition of gcc_uint64_t in favor of
5290 scm_t_uint64 and rename usages.
5291
5292 * mallocs.c: #include <config.h> if HAVE_CONFIG_H.
5293
5294 * load.c: #include <config.h> if HAVE_CONFIG_H.
5295
5296 * iselect.h: move handling of time related headers to scmconfig.h.
5297 Rename usage of HAVE_SYS_SELECT_H to SCM_HAVE_SYS_SELECT_H.
5298 Rename usage of HAVE_WINSOCK2_H to SCM_HAVE_WINSOCK2_H. Rename
5299 usage of USE_COOP_THREADS to SCM_USE_COOP_THREADS.
5300
5301 * iselect.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
5302 of USE_COOP_THREADS to SCM_USE_COOP_THREADS. Rename usage of
5303 USE_NULL_THREADS to SCM_USE_NULL_THREADS.
5304
5305 * ioext.c: #include <config.h> if HAVE_CONFIG_H.
5306
5307 * inline.h: #include "libguile/__scm.h" at the top. Change code
5308 to use SCM_C_INLINE and SCM_INLINE_C_INCLUDINT_INLINE_H to decide
5309 what to do instead of creating a new public #define. Rename usage
5310 of USE_COOP_THREADS to SCM_USE_COOP_THREADS. Rename usage of
5311 USE_NULL_THREADS to SCM_USE_NULL_THREADS. Rename usage of
5312 USE_COPT_THREADS to SCM_USE_COPT_THREADS.
5313
5314 * inline.c: rearrange handling -- now we just #define
5315 SCM_INLINE_C_INCLUDING_INLINE_H to 1 and #include
5316 "libguile/inline.h". scmconfig.h will define SCM_C_INLINE as
5317 appropriate, and we use that in inline.h along with the above
5318 define to determine how to respond.
5319
5320 * init.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
5321 HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5322
5323 * guile.c: #include <config.h> if HAVE_CONFIG_H.
5324
5325 * gh_data.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
5326 of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5327
5328 * gh.h: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5329
5330 * gen-scmconfig.h.in: new file -- see gen-scmconfig.c for details.
5331
5332 * gen-scmconfig.c: new file -- see comments in file for details.
5333
5334 * gdbinit.c: #include <config.h> if HAVE_CONFIG_H.
5335
5336 * gc_os_dep.c: #include <config.h> if HAVE_CONFIG_H. Replace
5337 usage of STACK_GROWS_UP with SCM_STACK_GROWS_UP.
5338
5339 * gc.h: replace usage of SIZEOF_LONG with
5340 SCM_SIZEOF_UNSIGNED_LONG. Replace usage of USE_PTHREAD_THREADS
5341 with SCM_USE_PTHREAD_THREADS. Remove SCM_SIZEOF_LONG definition
5342 since we handle that in scmconfig.h now.
5343
5344 * gc.c: #include <config.h> if HAVE_CONFIG_H.
5345
5346 * gc-mark.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
5347 of HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of
5348 HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
5349
5350 * gc-malloc.c: #include <config.h> if HAVE_CONFIG_H.
5351
5352 * gc-card.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5353 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
5354
5355 * fports.c: #include <config.h> if HAVE_CONFIG_H.
5356
5357 * filesys.c: #include <config.h> if HAVE_CONFIG_H.
5358
5359 * feature.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
5360 of USE_NULL_THREADS to SCM_USE_NULL_THREADS.
5361
5362 * extensions.c: #include <config.h> if HAVE_CONFIG_H.
5363
5364 * evalext.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5365 Replace usage of HAVE_LONG_LONGS with "SCM_SIZEOF_LONG_LONG != 0".
5366
5367 * eval.c: #include <config.h> if HAVE_CONFIG_H. #include
5368 "libguile/__scm.h" rather than scmconfig.h. Rename usage of
5369 HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS
5370 with "SCM_SIZEOF_LONG_LONG != 0".
5371
5372 * error.c: #include <config.h> if HAVE_CONFIG_H.
5373
5374 * eq.c: #include <config.h> if HAVE_CONFIG_H. Rename usage of
5375 HAVE_ARRAYS to SCM_HAVE_ARRAYS. Replace usage of HAVE_LONG_LONGS
5376 with "SCM_SIZEOF_LONG_LONG != 0".
5377
5378 * deprecation.c: #include <config.h> if HAVE_CONFIG_H.
5379
5380 * coop.c: replace usage of struct timespect with scm_t_timespec.
5381 #include <config.h> if HAVE_CONFIG_H.
5382
5383 * coop-threads.c: #include "libguile/_scm.h" early. Replace
5384 usage of struct timespect with scm_t_timespec. Replace usage of
5385 STACK_GROWS_UP with SCM_STACK_GROWS_UP.
5386
5387 * coop-pthreads.c: #include "libguile/_scm.h" early. Replace
5388 usage of struct timespect with scm_t_timespec. Replace usage of
5389 STACK_GROWS_UP with SCM_STACK_GROWS_UP.
5390
5391 * coop-defs.h: move handling of time related headers to
5392 scmconfig.h. Add #include "libguile/__scm.h". Rename usage of
5393 HAVE_WINSOCK2_H to SCM_HAVE_WINSOCK2_H. Replace usage of struct
5394 timespect with scm_t_timespec.
5395
5396 * convert.i.c: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5397
5398 * convert.h: rename usage of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5399
5400 * convert.c: #include <config.h> if HAVE_CONFIG_H. Rename usage
5401 of HAVE_ARRAYS to SCM_HAVE_ARRAYS.
5402
5403 * continuations.c: move libguile/_scm.h include to the top so we
5404 pick up any critical defines like _GNU_SOURCE early.
5405
5406 * backtrace.c: #include <config.h> if HAVE_CONFIG_H.
5407
5408 * async.c: #include <config.h> if HAVE_CONFIG_H.
5409
5410 * alloca.c: #include <config.h> if HAVE_CONFIG_H.
5411
5412 * _scm.h: #include <config.h> if HAVE_CONFIG_H.
5413 Rename usage of USE_PTHREAD_THREADS to SCM_USE_PTHREAD_THREADS.
5414
5415 * __scm.h: move libguile/scmconfig.h include up to the top, so
5416 we're sure to pick up any critical defines like _GNU_SOURCE early.
5417 #include <limits.h> removed in favor of scmconfig.h inclusion when
5418 appropriate. STDC_HEADERS based inclusion of stdlib.h,
5419 sys/types.h, stddef.h, and sys/stdtypes.h removed in favor of
5420 scmconfig.h inclusion when appropriate. Various Win32 related
5421 definitions removed in favor of scmconfig.h inclusion when
5422 appropriate.
5423 (HAVE_UINTPTR_T): definition removed (see NEWS).
5424 (SIZEOF_PTRDIFF_T): definition removed (see NEWS).
5425 (HAVE_LONG_LONGS): definition removed (see NEWS).
5426 (HAVE_LONG_LONG): definition removed (see NEWS).
5427 (HAVE_PTRDIFF_T): definition removed (see NEWS).
5428
5429 * Makefile.am: scmconfig.h is now generated by building and
5430 running gen-scmconfig.h and capturing its output. gen-scmconfig
5431 uses config.h and the configure.in generated gen-scmconfig.h to
5432 decide what to output. See gen-scmconfig.c for details.
5433 (noinst_PROGRAMS): add gen-scmconfig.
5434 (gen_scmconfig_SOURCES): new variable.
5435 (gen-scmconfig.$(OBJEXT)): new target - be careful to handle
5436 cross-compiling right.
5437 (scmconfig.h): build scmconfig.h from gen-scmconfig's output.
5438 (BUILT_SOURCES): add scmconfig.h.
5439
5440 2003-03-19 Marius Vollmer <mvo@zagadka.de>
5441
5442 * gc_os_dep.c: Added defines for sparc-unknown-netbsdelf1.5 from
5443 Adrian Bunk. Thanks!
5444
5445 2003-03-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5446
5447 * goops.c (make_class_from_template): New fourth arg:
5448 applicablep.
5449 (scm_class_extended_generic_with_setter, scm_class_self): Fixed
5450 cpls.
5451
5452 * smob.c (scm_set_smob_apply): Call scm_i_inherit_applicable.
5453
5454 * goops.c, objects.c, objects.h (scm_make_extended_class): New
5455 second arg: applicablep.
5456 (scm_i_inherit_applicable): New function.
5457
5458 * goops.c, goops.h (scm_class_applicable,
5459 scm_class_extended_accessor): New classes.
5460
5461 2003-03-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
5462
5463 * procs.c (scm_procedure_documentation): Removed redundant
5464 SCM_NIMP test and replaced other calls to SCM_IMP by more explicit
5465 predicates.
5466
5467 2003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5468
5469 * list.c, list.h (scm_filter, scm_filter_x): New functions.
5470
5471 * modules.c (scm_module_import_interface): New function.
5472
5473 * goops.c, goops.h (scm_class_accessor_method): Renamed from
5474 scm_class_accessor.
5475 (scm_class_accessor): New class.
5476
5477 2003-03-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5478
5479 * goops.c (scm_primitive_generic_generic): Enable primitive
5480 generic if not enabled.
5481 (scm_sys_goops_loaded): Setup unextended primitive generics.
5482
5483 * goops.c, goops.h (scm_c_extend_primitive_generic): New function.
5484
5485 * snarf.h (SCM_PRIMITIVE_GENERIC, SCM_PRIMITIVE_GENERIC_1): New
5486 snarf macros.
5487
5488 * numbers.c (scm_abs): Use SCM_PRIMITIVE_GENERIC. (This is only a
5489 testing example. All uses of SCM_GPROC should be converted.)
5490
5491 * procprop.c (scm_stand_in_scm_proc): Use scm_assq instead of
5492 scm_assoc.
5493
5494 * eq.c (scm_equal_p): Turned into a primitive generic.
5495
5496 2003-02-27 Rob Browning <rlb@defaultvalue.org>
5497
5498 * Makefile.am (scmconfig.h): new target -- generate file from
5499 ../config.h.
5500 (modinclude_HEADERS): remove version.h.
5501 (nodist_modinclude_HEADERS): add version.h.
5502
5503 2003-02-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5504
5505 This fixes a serious GC bug, introduced during the latest
5506 reorganization of the GC, which disabled freeing of structs and
5507 GOOPS objects:
5508
5509 * struct.c (scm_struct_prehistory): Init scm_i_structs_to_free to
5510 SCM_EOL.
5511 (scm_struct_prehistory): Move scm_free_structs to
5512 scm_before_mark_c_hook.
5513
5514 * gc-card.c (sweep_card): Check that we haven't swept structs on
5515 this card before. That can happen if scm_i_sweep_all_segments has
5516 been called from some other place than scm_igc.
5517
5518 2003-02-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5519
5520 * environments.c (DEFAULT_OBARRAY_SIZE): Changed from 137 to 31
5521 (since hash tables now adapt their size).
5522
5523 * modules.c (scm_modules_prehistory): Changed from 2001 to 1533
5524 (current number of prehistory bindings; hashtable code will select
5525 a prime which is greater than this value).
5526
5527 * symbols.c (scm_symbols_prehistory): Changed from 1009 to 2139
5528 (current number of initial symbols).
5529
5530 * properties.c (scm_init_properties): Don't specify size of
5531 scm_properties_whash.
5532
5533 * objprop.c (scm_init_objprop): Don't specify size of
5534 scm_object_whash.
5535
5536 * keywords.c (scm_init_keywords): Don't specify a hash table size.
5537
5538 * hooks.c (scm_c_hook_add): Fixed bug in append mode.
5539
5540 The following changes introduce the use of resizable hash tables
5541 throughout Guile. It also renames the old *-hash-table* functions
5542 to *-alist-vector* and places them, together with the rest of the
5543 weak vector support, in the module (ice-9 weak-vector). We should
5544 probably introduce a new, better, API for weak references, for
5545 example "weak pairs" a la MIT-Scheme. (In Chez scheme, they even
5546 look like and are used like ordinary pairs.)
5547
5548 * environments.c (obarray_enter, obarray_retrieve, obarray_remove,
5549 leaf_environment_fold, obarray_remove_all): Use hashtable
5550 accessors.
5551
5552 * gc.c (scm_init_storage): Moved hook initialization to
5553 scm_storage_prehistory.
5554 (scm_storage_prehistory): New function.
5555 (scm_igc): Added commentary about placement of
5556 scm_after_sweep_c_hook.
5557
5558 * gc-mark.c (scm_mark_all): Use hashtable accessors.
5559 (scm_gc_mark_dependencies): Use SCM_WVECT_WEAK_KEY_P and
5560 SCM_WVECT_WEAK_VALUE_P.
5561
5562 * hashtab.c, hashtab.h (scm_hash_for_each, scm_hash_map): New
5563 functions.
5564 (scm_vector_to_hash_table, scm_c_make_resizing_hash_table):
5565 Removed.
5566 (scm_make_weak_key_hash_table, scm_make_weak_value_hash_table,
5567 scm_make_doubly_weak_hash_table): Moved here from weaks.c.
5568
5569 * init.c (scm_init_guile_1): Removed call to scm_init_weaks; Added
5570 calls to scm_storage_prehistory and scm_hashtab_prehistory.
5571
5572 * modules.c (module-reverse-lookup): Use hashtable accessors.
5573
5574 * symbols.c, symbols.h (scm_i_hash_symbol): New function.
5575
5576 * weaks.c, weaks.h (scm_make_weak_key_alist_vector,
5577 scm_make_weak_value_alist_vector,
5578 scm_make_doubly_weak_alist_vector): New functions.
5579
5580 * weaks.c (scm_init_weaks_builtins): New function.
5581
5582 * weaks.h (SCM_WVECTF_WEAK_KEY, SCM_WVECTF_WEAK_VALUE,
5583 SCM_WVECTF_NOSCAN, SCM_WVECT_WEAK_KEY_P, SCM_WVECT_WEAK_VALUE_P,
5584 SCM_WVECT_NOSCAN_P): New macros.
5585
5586 * weaks.c (scm_scan_weak_vectors): Use SCM_WVECT_WEAK_KEY_P
5587 and SCM_WVECT_WEAK_VALUE_P.
5588
5589 * weaks.c, weaks.h (scm_i_allocate_weak_vector): Renamed from
5590 allocate_weak_vector and exported.
5591
5592 2003-02-13 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5593
5594 * hashtab.c: Undid thread safety. (We decided that it's better to
5595 let the user explicitly protect the tables (or not) according what
5596 is suitable for the application.)
5597
5598 2003-02-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5599
5600 * hashtab.c (scm_hash_fn_remove_x, scm_internal_hash_fold): Made
5601 thread safe and handle resizing tables.
5602 (scm_ihashx, scm_sloppy_assx, scm_delx_x): Removed
5603 SCM_DEFER/ALLOW_INTS.
5604
5605 2003-02-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5606
5607 * hashtab.c (scm_vector_to_hash_table,
5608 scm_c_make_resizing_hash_table, scm_make_hash_table): New
5609 functions.
5610 (scm_hash_fn_get_handle, scm_hash_fn_create_handle_x): Made thread
5611 safe and handle resizing tables.
5612
5613 * weaks.c (scm_make_weak_key_hash_table,
5614 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
5615 Size argument made optional. Return resizable table if not
5616 specified.
5617
5618 2003-02-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5619
5620 * eval.c (scm_trampoline_0, scm_trampoline_1, scm_trampoline_2):
5621 Fixed formals tests for closures. (Thanks to Kevin Ryde.)
5622
5623 2003-02-05 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5624
5625 * debug.c (scm_procedure_source): Handle all objects for which
5626 procedure? is #t. (Thanks to Bill Schottstaedt.)
5627
5628 2003-01-23 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5629
5630 * futures.c (mark_futures): Don't need to mark data of recycled
5631 futures.
5632 (scan_futures, cleanup_undead): Be smarter about marking
5633 futures---avoid unnecessary passes through future lists.
5634
5635 * futures.h, futures.c: New files; Introduced recycling of
5636 futures. For fine-grained threading this lifts performance to
5637 another level. We can now use parallelization in inner loops of
5638 Guile programs without impossible overhead.
5639
5640 * threads.h, threads.c: Moved futures to their own file.
5641
5642 * Makefile.am (libguile_la_SOURCES): Added futures.c.
5643 (DOT_X_FILES): Added futures.x.
5644 (DOT_DOC_FILES): Added futures.doc.
5645 (modinclude_HEADERS): Added futures.h.
5646
5647 * threads.c, threads.h (scm_i_create_thread): Renamed from
5648 create_thread and made global.
5649
5650 * futures.c (scm_make_future): New procedure.
5651
5652 * eval.c: #include "libguile/futures.h".
5653
5654 * init.c: #include "futures.h"
5655 (scm_init_guile_1): Call scm_init_futures.
5656
5657 * stime.c (SCM_TIME_UNITS_PER_SECOND): Renamed from CLKTCK.
5658
5659 * stime.h (SCM_TIME_UNITS_PER_SECOND): Definition moved here.
5660
5661 * eval.c, eval.h (scm_trampoline_0, scm_i_call_closure_0): New
5662 functions.
5663
5664 * eval.c (scm_trampoline_1): Fixed arguments test for closures.
5665
5666 2003-01-22 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5667
5668 * threads.c (create_thread): Don't unwind dynwind chain of parent
5669 thread before creation. Just start the new thread with an empty
5670 dynwind chain.
5671
5672 2003-01-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5673
5674 * evalext.c, evalext.h (scm_self_evaluating_p): New function.
5675
5676 2003-01-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5677
5678 * threads.c (scm_timed_wait_condition_variable): Support timed
5679 waiting also for simple condition variables.
5680
5681 * goops.c (TEST_CHANGE_CLASS): Use scm_change_object_class instead
5682 of calling the procedure change-object-class.
5683
5684 2003-01-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5685
5686 * ramap.c (scm_ramapc): Typo in error message.
5687
5688 2003-01-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5689
5690 * goops.c (scm_sys_prep_layout_x): Bugfix: Only create layout for
5691 slots with instance allocation.
5692
5693 * goops.c, goops.h (scm_class_extended_generic_with_setter): New
5694 class.
5695 (scm_compute_applicable_methods): Use scm_generic_function_methods.
5696
5697 * goops.c (scm_generic_function_methods): Support extended
5698 generic functions.
5699
5700 2002-12-29 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5701
5702 * eval.c (unmemocopy): Bugfix: scm_sym_delay --> scm_sym_future.
5703 Thanks to Neil for pointing this out!
5704
5705 2002-12-29 Neil Jerram <neil@ossau.uklinux.net>
5706
5707 * lang.h: Remove declarations matching definitions removed from
5708 lang.c (just below).
5709
5710 2002-12-28 Neil Jerram <neil@ossau.uklinux.net>
5711
5712 * lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null,
5713 scm_m_while, scm_nil_eq): Remove definitions that were superfluous
5714 and already commented out.
5715
5716 * read.h (scm_lreadparen), read.c (scm_lreadr, scm_read_token,
5717 scm_lreadparen): Support reading vectors with Elisp syntax if
5718 SCM_ELISP_READ_EXTENSIONS is defined. (SCM_ELISP_READ_EXTENSIONS
5719 is not currently defined, and there isn't even a configure switch
5720 to enable it yet.)
5721
5722 2002-12-26 Marius Vollmer <mvo@zagadka.ping.de>
5723
5724 * Makefile.am (c-tokenize.o): Refer to source via $< so that vpath
5725 builds work.
5726 (EXTRA_DIST): Added version.h.in.
5727
5728 2002-12-21 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5729
5730 This change makes it possible for one thread to do lazy sweeping
5731 while other threads are running. Now only the mark phase need to
5732 have all threads asleep. We should look further into this issue.
5733 Presently, I've put the locking of scm_i_sweep_mutex at
5734 "conservative" places due to my current lack of knowledge about
5735 the garbage collector. Please feel free to restrict these regions
5736 further to allow for maximal parallelism!
5737
5738 * gc.c, gc.h (scm_i_sweep_mutex): New mutex.
5739
5740 * gc.c (scm_gc_for_newcell), gc-malloc.c (scm_realloc,
5741 scm_gc_register_collectable_memory): Substitute locking of
5742 scm_i_sweep_mutex for calls to scm_i_thread_put_to_sleep.
5743 (scm_igc): Lock sweep mutex here instead of in callers; Calls to
5744 scm_i_thread_put_to_sleep/scm_i_thread_wake_up used to demarkate
5745 the single-thread section (which now only contains the mark
5746 phase).
5747 (scm_gc): Don't lock sweeo mutex here since scm_igc locks it;
5748 Removed SCM_DEFER/ALLOW_INTS. Simply call scm_igc directly.
5749
5750 * threads.c (gc_section_mutex): Removed.
5751
5752 2002-12-19 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5753
5754 * threads.c (create_thread): Clear parent field in root state in
5755 order not to unnecessarily remember dead threads.
5756
5757 * eval.c (call_subr2o_1, call_lsubr2_2): New functions.
5758 (scm_trampoline_1, scm_trampoline_2): Use them.
5759
5760 2002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5761
5762 Partial introduction of real plugin interface.
5763
5764 * Makefile.am (modinclude_HEADERS): Added threads-plugin.h.
5765 (EXTRA_DIST): Added threads-plugin.c.
5766
5767 * threads-plugin.h, threads-plugin.c: New files.
5768
5769 * threads.h: #include "libguile/threads-plugin.h".
5770
5771 * threads.c: #include "libguile/threads-plugin.c".
5772
5773 * pthread-threads.c: Temporarily remove debugging functions.
5774
5775 * threads.c, threads.h (scm_yield): Added back.
5776
5777 2002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5778
5779 * threads.c (really_launch): Detach before unlocking
5780 thread_admin_mutex in order not to risk being joined.
5781 (scm_i_thread_put_to_sleep, scm_i_thread_wake_up): Keep
5782 thread_admin_mutex locked during GC.
5783
5784 * pthread-threads.c, pthread-threads.h: Improvements to debugging
5785 functions.
5786
5787 2002-12-16 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5788
5789 * pthread-threads.c, pthread-threads.h (SCM_DEBUG_THREADS): Added
5790 support for debugging mutex operations.
5791
5792 * threads.c (scm_thread): Removed filed joining_threads.
5793 (thread_print): Print thread number as well as address of thread
5794 structure.
5795 (scm_join_thread): Bugfix.
5796 (scm_lock_mutex, scm_try_mutex, scm_unlock_mutex,
5797 scm_timed_wait_condition_variable, scm_signal_condition_variable,
5798 scm_broadcast_condition_variable): Use the low-level API.
5799 (scm_all_threads): Return copy of thread list (to prevent
5800 unintended destruction).
5801 (scm_threads_prehistory): Initialize heap_mutex of fake thread.
5802
5803 * pthread-threads.c, pthread-threads.h, threads.c: Fixes to
5804 pthread "native" recursive mutex support.
5805
5806 2002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5807
5808 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): New definitions.
5809 Simply lock a thread C API recursive mutex.
5810 (SCM_NONREC_CRITICAL_SECTION_START,
5811 SCM_NONREC_CRITICAL_SECTION_END, SCM_REC_CRITICAL_SECTION_START,
5812 SCM_REC_CRITICAL_SECTION_END): Removed.
5813
5814 * eval.c: Replaced SOURCE_SECTION_START / SOURCE_SECTION_END with
5815 direct calls to scm_rec_mutex_lock / unlock around the three calls
5816 to scm_m_expand_body.
5817
5818 * eval.c, eval.h (promise_free): New function.
5819 (scm_force): Rewritten; Now thread-safe; Removed
5820 SCM_DEFER/ALLOW_INTS.
5821
5822 * pthread-threads.h: Added partially implemented plugin interface
5823 for recursive mutexes. These are, for now, only intended to be
5824 used internally within the Guile implementation.
5825
5826 * pthread-threads.c: New file.
5827
5828 * threads.c: Conditionally #include "pthread-threads.c".
5829
5830 * eval.c, eval.h (scm_makprom, scm_force): Rewritten to be
5831 thread-safe;
5832
5833 * snarf.h (SCM_MUTEX, SCM_GLOBAL_MUTEX, SCM_REC_MUTEX,
5834 SCM_GLOBAL_REC_MUTEX): New macros.
5835
5836 * eval.c, threads.c, threads.h, snarf.h: Rewrote critical section
5837 macros---use mutexes instead.
5838
5839 * tags.h (SCM_IM_FUTURE): New tag.
5840
5841 * eval.c (scm_m_future): New primitive macro.
5842 (SCM_CEVAL): Support futures.
5843 (unmemocopy): Support unmemoization of futures.
5844
5845 * print.c (scm_isymnames): Name of future isym.
5846
5847 * version.c: Unmade some changes to my private copy that got
5848 committed by mistake.
5849
5850 2002-12-11 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5851
5852 * gc-malloc.c, gc.h, init.c: Reverted gc-malloc change of
5853 2002-12-10.
5854
5855 * gc.c (scm_igc): Don't call scm_i_thread_invalidate_freelists.
5856
5857 * gc.c (scm_gc_sweep): Call it here instead, which is a more
5858 logical place.
5859
5860 * threads.c (create_thread): Remember root object until the handle
5861 of the new thread is on all_threads list.
5862
5863 * root.c (scm_make_root): Moved copying of fluids until after
5864 creation of root handle so that the fluids are GC protected. Also
5865 removed the critical section.
5866
5867 2002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5868
5869 * gc-malloc.c, gc.h (scm_gc_malloc_prehistory): New function.
5870
5871 * gc-malloc.c (malloc_mutex): New mutex.
5872 (scm_gc_malloc_prehistory): Initialize it.
5873 (scm_realloc): Serialize call to realloc
5874 (scm_calloc): Same for calloc.
5875 Thanks to Wolfgang Jaehrling!
5876 (Now we have to make sure all calls to malloc/realloc are made
5877 through scm_malloc.)
5878
5879 * init.c (scm_init_guile_1): Call scm_gc_malloc_prehistory.
5880
5881 * threads.c (really_launch): Release heap (to prevent deadlock).
5882 (create_thread): Release heap before locking thread admin mutex.
5883
5884 2002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5885
5886 * threads.c (scm_i_thread_invalidate_freelists): New
5887 function.
5888
5889 * gc.c (scm_igc): Call scm_i_thread_invalidate_freelists.
5890
5891 * modules.c (scm_export): Inserted a return statement.
5892
5893 2002-12-10 Han-Wen Nienhuys <hanwen@cs.uu.nl>
5894
5895 * modules.c (scm_export): new function
5896
5897 * gc-card.c: add a note about malloc()/free() overhead.
5898
5899 2002-12-10 Mikael Djurfeldt <mdj@kvast.blakulla.net>
5900
5901 * Makefile.am (c-tokenize.$(OBJEXT)): Don't look for c-tokenize.c
5902 in srcdir.
5903
5904 2002-12-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5905
5906 These changes remove scm_ints_disabled (which hasn't has any
5907 effect in Guile for quite some time).
5908
5909 * async.c, error.h (scm_ints_disabled): Removed.
5910
5911 * gc.c (scm_gc_for_newcell), init.c (scm_init_guile_1),
5912 root.c (scm_internal_cwdr), gdbint.c (SCM_BEGIN_FOREIGN_BLOCK,
5913 SCM_END_FOREIGN_BLOCK): Don't touch scm_ints_disabled.
5914 (old_ints): Removed.
5915
5916 * __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Define as a recursive
5917 critical section.
5918 (SCM_REDEFER_INTS, SCM_ALLOW_INTS): Define as SCM_DEFER_INTS and
5919 SCM_ALLOW_INTS.
5920
5921 2002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5922
5923 * threads.c (scm_mutex_lock, scm_cond_wait, scm_cond_timedwait):
5924 Removed accidental #if 0 around these functions.
5925
5926 These changes are the start of support for preemptive
5927 multithreading. Marius and I have agreed that I commit this code
5928 into the repository although it isn't thoroughly tested and surely
5929 introduces many bugs. The bugs should only be exposed when using
5930 threads, though. Signalling and error handling for threads is
5931 very likely broken. Work on making the implementation cleaner and
5932 more efficient is needed.
5933
5934 * __scm.h (SCM_ALLOW_INTS_ONLY): Removed.
5935 (SCM_NONREC_CRITICAL_SECTION_START,
5936 SCM_NONREC_CRITICAL_SECTION_END, SCM_REC_CRITICAL_SECTION_START,
5937 SCM_REC_CRITICAL_SECTION_END): New macros.
5938 (SCM_CRITICAL_SECTION_START/END): Defined here.
5939
5940 * eval.c: Insert SOURCE_SECTION_START / SOURCE_SECTION_END around
5941 the three calls to scm_m_expand_body.
5942
5943 * gc.h: #include "libguile/pthread-threads.h";
5944 (SCM_FREELIST_CREATE, SCM_FREELIST_LOC): New macros.
5945
5946 * gc.c (scm_i_freelist, scm_i_freelist2): Defined to be of type
5947 scm_t_key;
5948
5949 * gc.c, gc-freelist.c, inline.h: Use SCM_FREELIST_LOC for freelist
5950 access.
5951
5952 * gc-freelist.c (scm_gc_init_freelist): Create freelist keys.
5953
5954 * gc-freelist.c, threads.c (really_launch): Use
5955 SCM_FREELIST_CREATE.
5956
5957 * gc-malloc.c (scm_realloc, scm_gc_register_collectable_memory):
5958
5959 * gc.c (scm_i_expensive_validation_check, scm_gc,
5960 scm_gc_for_newcell): Put threads to sleep before doing GC-related
5961 heap administration so that those pieces of code are executed
5962 single-threaded. We might consider rewriting these code sections
5963 in terms of a "call_gc_code_singly_threaded" construct instead of
5964 calling the pair of scm_i_thread_put_to_sleep () and
5965 scm_i_thread_wake_up (). Also, we would want to have as many of
5966 these sections eleminated.
5967
5968 * init.c (scm_init_guile_1): Call scm_threads_prehistory.
5969
5970 * inline.h: #include "libguile/threads.h"
5971
5972 * pthread-threads.h: Macros now conform more closely to the
5973 pthreads interface. Some of them now take a second argument.
5974
5975 * threads.c, threads.h: Many changes.
5976
5977 2002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
5978
5979 * Makefile.am (version.h): Changed $^ --> $< in rule for
5980 version.h.
5981
5982 2002-12-08 Rob Browning <rlb@defaultvalue.org>
5983
5984 * version.h.in (SCM_MICRO_VERSION): use @--@ substitution now.
5985 (SCM_MINOR_VERSION): use @--@ substitution now.
5986 (SCM_MICRO_VERSION): use @--@ substitution now.
5987 (scm_effective_version): new function prototype.
5988
5989 * version.c (scm_effective_version): new function, also add
5990 effective-version.
5991
5992 * Makefile.am (schemelibdir): VERSION -> GUILE_EFFECTIVE_VERSION.
5993 (libpath.h): use GUILE_EFFECTIVE_VERSION to compute
5994 SCM_LIBRARY_DIR.
5995 (version.h): generate this here rather than configure.in. This
5996 approach tracks source edits better (i.e. more immediately).
5997 Might be worth considering for other .in files too.
5998
5999 2002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
6000
6001 Reorganized thread package selection. A thread package now only
6002 implements a small set of pthread like functions and Guile
6003 implements the rest on top of that. Guile's implementation is
6004 what the "coop-pthreads" package has been previously. Support for
6005 "coop" threads has been removed until I get time to add it again.
6006
6007 * Makefile.am (libguile_la_SOURCES): Removed iselect.c.
6008 (noinst_HEADERS): Removed coop-threads.c, coop-threads.h, coop.c,
6009 null-threads.c, coop-pthreads.c.
6010 (modinclude_HEADERS): Removed coop-defs.h, coop-pthreads.h. Added
6011 pthread-threads.h.
6012
6013 * validate.h (SCM_VALIDATE_THREAD): Moved to threads.h.
6014
6015 * threads.h: Do not include "libguile/coop-defs.h". Include
6016 "libguile/pthread-threads.h" for USE_COPT_THREADS. Removed
6017 (previously deprecated) C level thread API prototypes. They are
6018 now in the thread package specific headers, "null-threads.h" and
6019 "pthread-threads.h".
6020 (SCM_VALIDATE_THREAD, SCM_VALIDATE_MUTEX, SCM_VALIDATE_CONDVAR):
6021 New.
6022 (scm_threads_init): Removed.
6023 (SCM_CRITICAL_SECTION_START, SCM_CRITICAL_SECTION_END,
6024 SCM_THREAD_SWITCHING_CODE, scm_i_switch_counter,
6025 SCM_I_THREAD_SWITCH_COUNT): Define here.
6026 (scm_single_thread_p): Removed.
6027 (scm_call_with_new_thread): Take two args directly instead of list
6028 of two args.
6029 (scm_i_thread_data, scm_i_set_thread_data, SCM_THREAD_LOCAL_DATA,
6030 SCM_SET_THREAD_LOCAL_DATA): Define here.
6031
6032 * threads.c: Merged with "coop-pthreads.c".
6033
6034 * null-threads.h: Implement pthread-like API as a set of macros.
6035
6036 * pthread-threads.h: New, implement pthread-like API by deferring
6037 to pthread itself.
6038
6039 * init.c (scm_init_guile_1): Do not call scm_init_iselect, which
6040 has been lost in the reorganization.
6041
6042 2002-12-01 Mikael Djurfeldt <mdj@linnaeus>
6043
6044 The following change makes it possible to move procedure
6045 application dispatch outside inner loops. The motivation was
6046 clean implementation of efficient replacements of R5RS primitives
6047 in SRFI-1.
6048
6049 The semantics is clear: scm_trampoline_N returns an optimized
6050 version of scm_call_N (or NULL if the procedure isn't applicable
6051 on N args).
6052
6053 Applying the optimization to map and for-each increases efficiency
6054 noticeably. For example, (map abs ls) is 8 times faster than
6055 before.
6056
6057 * eval.h (scm_t_trampoline_1, scm_t_trampoline_2): New types.
6058
6059 * eval.c, eval.h (scm_trampoline_1, scm_trampoline_2): New functions.
6060
6061 * eval.c (call_subr2_2, call_lsubr_2, call_closure_2): New functions;
6062 (map, for-each): Handle also application on two args as a special
6063 case; Use trampolines.
6064
6065 Other changes:
6066
6067 * sort.c (scm_cmp_function): Choose subr2less for scm_tc7_subr_2o;
6068 (subr2oless): Removed.
6069 (scm_restricted_vector_sort_x): Use scm_return_first to keep the
6070 vector GC protected.
6071
6072 * eval.c (check_map_args): Use scm_out_of_range_pos instead of
6073 scm_out_of_range.
6074
6075 2002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
6076
6077 * evalext.[ch] (scm_m_undefine, undefine): Deprecated.
6078
6079 2002-11-17 Mikael Djurfeldt <mdj@linnaeus>
6080
6081 * debug.c (scm_make_iloc): Added missing "return".
6082
6083 2002-11-17 Marius Vollmer <mvo@zagadka.ping.de>
6084
6085 * strports.c (scm_eval_string_in_module): Validate second arg to
6086 be a module. Thanks to Arno Peters!
6087
6088 2002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
6089
6090 * .cvsignore: remove goops.c
6091
6092 2002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
6093
6094 * modules.c (scm_env_top_level, scm_lookup_closure_module,
6095 module_variable, scm_module_lookup_closure,
6096 scm_module_transformer, scm_sym2var, scm_module_reverse_lookup,
6097 scm_system_module_env_p): Don't compare SCM values with C
6098 operators == or !=. Avoid SCM_IMP predicates. Prefer !SCM_FALSEP
6099 over SCM_NFALSEP.
6100
6101 2002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
6102
6103 * eval.h (SCM_MAKE_ILOC): New macro.
6104
6105 * debug.c (scm_make_iloc): Use SCM_MAKE_ILOC instead of computing
6106 the iloc bitpattern here.
6107
6108 2002-11-14 Mikael Djurfeldt <mdj@linnaeus>
6109
6110 * coop-pthreads.c, coop-pthreads.h: scm_internal_select should be
6111 part of the API, otherwise it's difficult to write Guile
6112 extensions using non-blocking I/O => moved #include
6113 "libguile/iselect.h" from coop-pthreads.c --> coop-pthreads.h.
6114
6115 * coop-pthreads.c (scm_unlock_mutex): Changed s_lock_mutex -->
6116 s_unlock_mutex.
6117
6118 2002-11-10 Marius Vollmer <mvo@zagadka.ping.de>
6119
6120 * __scm.h (USE_THREADS, GUILE_ISELECT): Do not define here. They
6121 are defined in configure.in.
6122
6123 * threads.c: Removed SCM_API from function definitions. SCM_API
6124 is only for declarations.
6125
6126 2002-11-07 Mikael Djurfeldt <mdj@linnaeus>
6127
6128 * coop-pthreads.h: Added support for thread specific data to the
6129 generic C API for the coop-pthreads case.
6130
6131 * threads.c, threads.h (scm_cond_init): Undo unintentional API
6132 change.
6133 (scm_cond_broadcast): Added missing function.
6134
6135 2002-11-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6136
6137 * coop.c (coop_next_runnable_thread): Removed, wich should have
6138 happened when GUILE_ISELECT was hard-wired.
6139
6140 2002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
6141
6142 * Makefile.am (libguile_la_SOURCES): Added threads.c
6143 (DOT_DOC_FILES): Added threads.doc.
6144 (DOT_X_FILES): Added threads.x.
6145 (EXTRA_libguile_la_SOURCES): Removed threads.c.
6146 (noinst_HEADERS): Added coop-pthreads.c.
6147 (modinclude_HEADERS): Added coop-pthreads.h.
6148
6149 * __scm.h (USE_THREADS, GUILE_ISELECT): Define when
6150 SCM_DEBUG_DEPRECATED. Removed their use thru-out Guile.
6151
6152 * iselect.c: Include "_scm.h" before testing HAVE_UNISTD_H.
6153 Thanks to Bill Schottstaedt!
6154
6155 * numbers.c (scm_integer_expt): Make 0^z == 0 for z != 0.
6156
6157 * _scm.h (HAVE_RESTARTABLE_SYSCALLS): Do define even when
6158 SCM_COPT_THREADS is defined.
6159 (SCM_SYSCALL): Use EINTR-expection version when SCM_COPT_THREADS
6160 is defined.
6161
6162 * coop-pthreads.c: Some harmless renamings of internal stuff.
6163 (create_thread): New, generalized version of
6164 scm_call_with_new_thread.
6165 (scm_call_with_new_thread): Use it.
6166 (scm_spawn_thread): New, use create_thread.
6167
6168 2002-11-02 Marius Vollmer <mvo@zagadka.ping.de>
6169
6170 * coop-pthreads.c, coop-pthreads.h: Redone completely, you might
6171 start testing it now.
6172
6173 * _scm.h: Include <errno.h< so that SCM_SYSCALL is correctly
6174 defined when HAVE_RESTARTABLE_SYSCALLS is not defined.
6175 (HAVE_RESTARTABLE_SYSCALLS): Do not define when USE_COPT_THREADS
6176 is defined.
6177
6178 2002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
6179
6180 * scmsigs.c (signal_cell_handlers, install_handler_data,
6181 scm_delq_spine_x, really_install_handler, install_handler): New
6182 scheme for triggering signal handlers, to simplify take_signal.
6183 (take_signal): Simplified, to avoid race conditions.
6184 (scm_sigaction_for_thread): Use new Scheme. Validate that thread
6185 hasn't exited yet.
6186
6187 * async.c (scm_async_click): Reset pending_asyncs, handle
6188 signal_asyncs. Don't set cdr of a non-signal async to #f.
6189 (scm_i_queue_async_cell): Do not check cdr of cell for #f, queue
6190 always. Set pending_asyncs.
6191 (scm_system_async_mark_for_thread): Check that thread has not
6192 exited.
6193 (scm_unmask_signals, decrease_block): Call scm_async_click after
6194 block_asyncs becomes zero.
6195
6196 * __scm.h (SCM_ASYNC_CLICK): Check pending_asyncs instead of
6197 active_asyncs.
6198
6199 * root.h (scm_root_state): Added pending_asyncs and signal_asyncs
6200 fields.
6201 * root.c (root_mark): Mark them.
6202 (make_root): Initialize them.
6203
6204 * iselect.c, iselect.h: Replaced GUILE_ISELECT with
6205 USE_COOP_THREADS.
6206 (scm_internal_select): Define one version for USE_COOP_THREADS and
6207 one for USE_NULL_THREADS.
6208 (scm_init_iselect): Likewise.
6209
6210 * inline.h (scm_cell, scm_double_cell): Also allow
6211 USE_COPT_THREADS to not protect the slot initializers.
6212
6213 * init.c (scm_init_guile_1): Call scm_init_thread_procs. This is
6214 because threads need to be initialized before the stack, but
6215 gsubrs such as scm_timed_condition_variable_wait can only be
6216 created later.
6217
6218 * threads.h: Include "coop-pthreads.h" when requested.
6219 (scm_threads_make_mutex, scm_threads_lock_mutex,
6220 scm_threads_unlock_mutex, scm_threads_monitor): Removed, they were
6221 not implemented anyway.
6222 (scm_init_thread_procs, scm_try_mutex,
6223 scm_timed_condition_variable_wait,
6224 scm_broadcast_condition_variable, scm_c_thread_exited_p,
6225 scm_thread_exited_p): New prototypes.
6226 (struct timespec): Define if not already defined.
6227 (scm_t_mutex, scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
6228 scm_mutex_unlock, scm_mutex_destroy, scm_t_cond, scm_cond_init,
6229 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
6230 scm_cond_broadcast, scm_cond_destroy): Declarations moved here and
6231 deprecated.
6232
6233 * threads.c: Include <errno.h>. Include "coop-pthreads.c" when
6234 requested.
6235 (scm_thread_exited_p): New.
6236 (scm_try_mutex, scm_broadcast_condition_variable): Newly
6237 registered procedures.
6238 (scm_wait_condition_variable, scm_timed_wait_condition_variable):
6239 Use the latter as the procedure for "wait-condition-variable",
6240 thus offering a optional timeout parameter to Scheme.
6241 (scm_wait_condition_variable): Implement in terms of
6242 scm_timed_wait_condition_variable.
6243 (scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
6244 scm_mutex_unlock, scm_mutex_destroy, scm_cond_init,
6245 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
6246 scm_cond_broadcast, scm_cond_destroy): Implement in terms of
6247 scm_make_mutex, etc, and deprecate.
6248 (scm_init_threads): Do not create smobs, leave this to
6249 scm_threads_init. Do not include "threads.x" file.
6250 (scm_init_thread_procs): New, include "threads.x" here.
6251
6252 * null-threads.h (scm_null_mutex, scm_null_mutex_init,
6253 scm_null_mutex_lock, scm_null_mutex_unlock,
6254 scm_null_mutex_destroy, scm_null_condvar, scm_null_condvar_init,
6255 scm_null_condvar_wait, scm_null_condvar_signal,
6256 scm_null_condvar_destroy): Removed.
6257 (scm_mutex_init, scm_mutex_lock, scm_mutex_unlock, scm_cond_init,
6258 scm_cond_wait, scm_cond_signal, scm_cond_broadcast,
6259 scm_cond_destory): Do not define, they are now deprecated and
6260 handled by threads.{h,c}.
6261
6262 * null-threads.c (scm_null_mutex, scm_null_cond): Define here.
6263 (scm_threads_init): Create smobs here, using the appropriate
6264 sizes.
6265 (block): Removed, now unused.
6266 (scm_c_thread_exited_p): New.
6267 (scm_null_mutex_init, scm_null_mutex_lock, scm_null_mutex_unlock,
6268 scm_null_mutex_destroy, scm_null_condvar_init,
6269 scm_null_condvar_wait, scm_null_condvar_signal,
6270 scm_null_condvar_destroy): Removed and updated users to do their
6271 task directly.
6272 (scm_try_mutex, timeval_subtract,
6273 scm_timed_wait_condition_variable,
6274 scm_broadcast_condition_variable): New.
6275 (scm_wait_condition_variable): Removed.
6276
6277 * coop-defs.h (coop_m): Added 'level' field.
6278 (scm_t_mutex, scm_mutex_init, scm_mutex_lock, scm_mutex_trylock,
6279 scm_mutex_unlock, scm_mutex_destroy, scm_t_cond, scm_cond_init,
6280 scm_cond_wait, scm_cond_timedwait, scm_cond_signal,
6281 scm_cond_broadcast, scm_cond_destroy, struct timespec): Do not
6282 define.
6283 (coop_condition_variable_broadcast): New.
6284
6285 * coop-threads.c (scm_threads_init): Create smobs here, using the
6286 appropriate sizes.
6287 (scm_c_thread_exited_p, scm_try_mutex,
6288 scm_timed_wait_condition_variable,
6289 scm_broadcast_condition_variable): New.
6290 (scm_wait_condition_variable): Removed.
6291
6292 * coop.c (coop_new_mutex_init): Initialize level.
6293 (coop_mutex_trylock, coop_mutex_lock, coop_mutex_unlock): maintain
6294 level.
6295 (coop_condition_variable_signal): Renamed to
6296 coop_condition_variable_broadcast and reimplemented in terms of
6297 that. Thus...
6298 (coop_condition_variable_broadcast): New.
6299
6300 * goops.c (hell_mutex): Reimplemented using scm_make_mutex, etc.
6301
6302 * coop-pthreads.h, coop-pthreads.c: New, but unfinished.
6303
6304 2002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
6305
6306 * null-threads.c: Include <time.h>. Also, use <...> for inclusion
6307 of system headers.
6308
6309 * async.c, goops.h, modules.h, validate.h (SCM_MAKE_VALIDATE_MSG):
6310 New. Use it instead of SCM_MAKE_VALIDATE in lots of places to
6311 give better error messages. Thanks to Bill Schottstaedt!
6312
6313 2002-10-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
6314
6315 * evalext.h, evalext.c (scm_definedp, scm_defined_p): Renamed
6316 scm_definedp to scm_defined_p and deprecated scm_definedp.
6317
6318 2002-10-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
6319
6320 * async.h, async.c (scm_system_async): Fixed deprecation to work
6321 correctly when deprecated features are excluded.
6322
6323 2002-10-16 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6324
6325 * async.c (scm_system_async_mark_for_thread): Validate thread
6326 argument.
6327
6328 * coop-threads.c (scm_i_thread_root): Do not validate argument.
6329
6330 * feature.c (scm_init_feature): Don't add 'threads' for
6331 USE_NULL_THREADS.
6332
6333 * inline.h (scm_cell, scm_double_cell): Also allow
6334 USE_NULL_THREADS to not protect the slot initializers.
6335
6336 * scmsigs.c (scm_sigaction_for_thread): It's "USE_THREADS" not
6337 "USE_THREAD".
6338
6339 * Makefile.am (noinst_HEADERS): Added null-threads.c.
6340 (modinclude_HEADERS): Added null-threads.h.
6341
6342 * threads.h: Include null-threads.h when !USE_COOP_THREADS.
6343 * threads.c: Include null-threads.c when !USE_COOP_THREADS.
6344 (scm_init_threads): Use generic type names scm_t_mutex and
6345 scm_t_cond instead of coop_m and coop_c.
6346
6347 * null-threads.c, null-threads.h: New files.
6348
6349 2002-10-15 Marius Vollmer <mvo@zagadka.ping.de>
6350
6351 * Makefile.am: Replaced "$<" in non-pattern rules with its value.
6352 This is to support makes that know about "$<" only in pattern
6353 rules, like Sun's make.
6354
6355 2002-10-13 Marius Vollmer <mvo@zagadka.ping.de>
6356
6357 * Makefile.am (libpath.h): Fixed typo in top_srcdir_absolute
6358 substitution. Thanks to David Allouche!
6359
6360 2002-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
6361
6362 * evalext.h: Replaced SCM_DEBUG_DEPRECATED with
6363 !SCM_ENABLE_DEPRECATED.
6364
6365 2002-10-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6366
6367 * async.c (scm_system_async_mark_for_thread): Only call
6368 scm_i_thread_root when USE_THREADS is defined. Use scm_root
6369 otherwise.
6370
6371 * scmsigs.c (take_signal): Only call scm_i_thread_root when
6372 USE_THREADS is defined. Use scm_root otherwise.
6373 (scm_sigaction_for_thread): Ignore THREAD argument when
6374 USE_THREADS is not defined. Also, move THREAD argument defaulting
6375 out of HAVE_SIGACTION section, which was a bug.
6376
6377 2002-10-10 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6378
6379 * scmsigs.c (scm_sigaction_for_thread): Store original handler in
6380 signal_handlers, not the closure that is used as the async.
6381 The closure is stored in signal_handler_cells, as previously.
6382
6383 2002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
6384
6385 * root.h (scm_root_state): Added 'block_async' slot.
6386 (scm_active_asyncs): Removed abbrev.
6387 * root.c (scm_make_root): Initialize 'block_asyncs' slot.
6388
6389 * __scm.h (SCM_ASYNC_TICK): Do without the scm_active_asyncs
6390 abbrev.
6391
6392 * async.h (scm_call_with_blocked_asyncs,
6393 scm_call_with_unblocked_asyncs, scm_c_call_with_blocked_asyncs,
6394 scm_c_call_with_unblocked_asyncs): New prototypes.
6395 (scm_mask_signals, scm_unmask_signals): Deprecated.
6396 (scm_mask_ints): Turned into a macro.
6397 * async.c (scm_mask_ints): Removed.
6398 (scm_run_asyncs): Do not set scm_mask_ints while running an async.
6399 this should not be necessary.
6400 (scm_async_click): Test block_asyncs instead of scm_mask_ints.
6401 (scm_mask_signals, scm_unmask_signals): Deprecated. Emit
6402 deprecation warning and check for errornous use. Set block_asyncs
6403 instead of scm_mask_ints.
6404 (increase_block, decrease_block, scm_call_with_blocked_asyncs,
6405 scm_call_with_unblocked_asyncs, scm_c_call_with_blocked_asyncs,
6406 scm_c_call_with_unblocked_asyncs): New.
6407
6408 * script.c (scm_compile_shell_switches): Do not set scm_mask_ints.
6409 Asyncs are enabled by default.
6410
6411 2002-10-09 Neil Jerram <neil@ossau.uklinux.net>
6412
6413 * vports.c (scm_make_soft_port): Allow vector argument to carry a
6414 6th element: an input waiting thunk.
6415 (sf_input_waiting): New.
6416
6417 2002-10-05 Marius Vollmer <mvo@zagadka.ping.de>
6418
6419 * root.c (root_mark): Mark active_asyncs slot.
6420
6421 * async.c (scm_async_click): Set the cdr of a executed handler
6422 cell to SCM_BOOL_F, not SCM_EOL.
6423 (scm_i_queue_async_cell): Queue the cell at the end of the list,
6424 and only if the handler procedure is not already present.
6425 (scm_system_async_mark_for_thread): Initialize cdr of handler cell
6426 with SCM_BOOL_F.
6427 * scmsigs.c (scm_sigaction_for_thread): Likewise.
6428
6429 2002-10-04 Rob Browning <rlb@defaultvalue.org>
6430
6431 * guile.c (main): switch to scm_lt_dlset_preloaded_symbols;
6432
6433 * dynl.c (sysdep_dynl_link): switch to scm_lt_dlhandle,
6434 scm_lt_dlopenext, and scm_lt_dlerror.
6435 (sysdep_dynl_unlink): switch to scm_lt_dlhandle, scm_lt_dlclose,
6436 and scm_lt_dlerror.
6437 (sysdep_dynl_func): switch to scm_lt_dlhandle, scm_lt_dlsym,
6438 and scm_lt_dlerror.
6439 (sysdep_dynl_init): switch to scm_lt_dlinit();
6440
6441 * Makefile.am (libguile_la_LIBADD): switch to use
6442 libguile-ltdl.la.
6443
6444 * numbers.c (scm_integer_expt): (expt 0 1) should be 1.
6445
6446 2002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
6447
6448 * scmsigs.h (scm_sigaction_for_thread): New prototype.
6449 * scmsigs.c (got_signal): Removed.
6450 (signal_handler_cells, signal_handler_threads): New.
6451 (take_signal): Queue the cell of the signal for the specified
6452 thread. Reset the signal handler on systems that don't have
6453 sigaction.
6454 (sys_deliver_signals): Removed.
6455 (close_1): New.
6456 (scm_sigaction_for_thread): Renamed from scm_sigaction and
6457 extended to also set the thread of a signal and allocate a cell
6458 for it. Keep the Scheme name "sigaction". Check that signum is
6459 within range. Also, use SCM_VECTOR_REF instead of SCM_VELTS.
6460 (scm_sigaction): Implement in terms of scm_sigaction_for_thread.
6461 (scm_init_scmsigs): Allocate signal_handler_cells and
6462 signal_handler_threads vectors.
6463
6464 * async.c: Removed GUILE_OLD_ASYNC_CLICK code. Reorganized so
6465 that system asnycs and user asyncs are separated. Reimplemented
6466 system asyncs to work per-thread.
6467
6468 * gc.c (scm_init_gc): Do not use scm_system_async.
6469
6470 * async.h (scm_asyncs_pending, scm_set_tick_rate,
6471 scm_set_switch_rate, scm_system_async_mark_from_signal_handler):
6472 Removed prototypes.
6473 (scm_i_queue_async_cell): New.
6474
6475 * __scm.h (scm_asyncs_pending_p): Removed.
6476 (SCM_ASYNC_CLICK): Check scm_active_asyncs instead of
6477 scm_asyncs_pending_p.
6478
6479 * async.h (scm_system_async_mark_for_thread): New prototype.
6480
6481 * __scm.h: Removed GUILE_OLD_ASYNC_CLICK code.
6482
6483 * root.h (scm_root_state): Added new "active_asyncs" slot.
6484 * root.c (scm_make_root): Initialize it to SCM_EOL.
6485
6486 * coop-defs.h (coop_t): Added new "handle" slot.
6487 * coop-threads.c (all_threads, scm_current_thread,
6488 scm_all_threads, scm_i_thread_root): New.
6489 (scm_threads_init): Add main thread to all_threads.
6490 (scheme_launch_thread): Remove thread from all_threads when it
6491 terminates.
6492 (scm_call_with_new_thread): Initialize handle slot of coop_t
6493 structure and add new thread to all_threads.
6494 (scm_spawn_thread): Likewise.
6495
6496 * threads.h (scm_current_thread, scm_all_threads): New prototypes.
6497 * threads.c (scm_current_thread, scm_all_threads): Register as
6498 primitives.
6499
6500 * dynl.c: Use scm_lt_ prefix for libltdl functions.
6501
6502 2002-09-29 Neil Jerram <neil@ossau.uklinux.net>
6503
6504 * script.c (scm_compile_shell_switches): Fix bad spelling of
6505 `explicitly' in comment.
6506
6507 2002-09-28 Neil Jerram <neil@ossau.uklinux.net>
6508
6509 * posix.c (scm_geteuid, scm_getegid, scm_seteuid, scm_setegid):
6510 Refer to provided? in doc string rather than deprecated feature?.
6511
6512 2002-09-24 Gary Houston <ghouston@arglist.com>
6513
6514 * inline.h (scm_double_cell): prevent reordering of statements
6515 with any following code (for GCC 3 strict-aliasing).
6516 * numbers.c (scm_make_real), num2float.i.c (FLOAT2NUM): removed
6517 the earlier version of the reordering prevention.
6518
6519 2002-09-19 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6520
6521 * inline.h (scm_double_cell): move SET_GCMARK set out of if body.
6522
6523 2002-09-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6524
6525 * gc-malloc.c (scm_gc_register_collectable_memory): more overflow
6526 protection.
6527
6528 2002-09-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6529
6530 * inline.h: include stdio.h
6531
6532 * smob.c (free_print): abort if scm_debug_cell_accesses_p is set
6533
6534 2002-09-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6535
6536 * gc-segment.c (scm_i_make_initial_segment): check user settings
6537 for sanity.
6538
6539 * gc-malloc.c (scm_gc_init_malloc): check user settings for
6540 sanity.
6541
6542 * gc-freelist.c (scm_init_freelist): check user settings for sanity.
6543
6544 * struct.h: change scm_structs_to_free to scm_i_structs_to_free
6545
6546 * gc-malloc.c (scm_gc_register_collectable_memory): use floats;
6547 these won't ever wrap around with high memory usage. Thanks to
6548 Sven Hartrumpf for finding this.
6549
6550 * gc-freelist.c: include <stdio.h>
6551
6552 * gc-malloc.c: add DEBUGINFO for mtrigger GCs.
6553
6554 2002-09-01 Marius Vollmer <mvo@zagadka.ping.de>
6555
6556 * vectors.h (SCM_VECTOR_REF): New.
6557
6558 * snarf.h (SCM_DEFINE_PUBLIC): New.
6559
6560 2002-08-30 Marius Vollmer <mvo@zagadka.ping.de>
6561
6562 * socket.c (scm_addr_vector): Added size of address to arguments.
6563 Use it to avoid accessing a non-existent path in a sockaddr_un.
6564 Changed all callers.
6565
6566 2002-08-29 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6567
6568 * gc.h: remove DOUBLECELL card flags.
6569
6570 * gc-malloc.c (scm_calloc): try to use calloc() before calling
6571 scm_realloc().
6572
6573 * gc-segment.c (scm_i_initialize_heap_segment_data): remove card
6574 init loop; handle this from scm_init_card_freelist()
6575
6576 * gc-card.c (scm_init_card_freelist): init bit vector here.
6577
6578 * numbers.c (scm_make_real): prevent reordering of statements
6579 num2float.i.c (FLOAT2NUM): idem
6580
6581 2002-08-27 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6582
6583 * eval.h: prepend libguile/ to include path
6584
6585 2002-08-26 Marius Vollmer <mvo@zagadka.ping.de>
6586
6587 * script.c (scm_compile_shell_switches): Added "2002" to Copyright
6588 years. Thanks to Martin Grabmüller!
6589
6590 2002-08-25 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6591
6592 * gc-segment.c (scm_i_get_new_heap_segment): use float in stead of
6593 unsigned numbers for computing minimum heap increment. This
6594 prevents weird results when a a negative minimum increment is
6595 computed.
6596
6597 2002-08-24 Marius Vollmer <mvo@zagadka.ping.de>
6598
6599 * gc_os_dep.c: When we have __libc_stack_end, use that directly
6600 instead of the old tricks.
6601
6602 * guile-snarf.in: Do not expect the input file to be the first
6603 argument after the optional "-o" option, just pass everything to
6604 the pre-processor without extracting the input file name.
6605
6606 2002-08-23 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6607
6608 * gc-segment.c (scm_i_get_new_heap_segment): Oops. We want segment
6609 length *at* least SCM_MIN_HEAP_SEG_SIZE, not at most.
6610
6611 2002-08-22 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6612
6613 * gc.h, gc.c: make scm_cells_allocated unsigned again. Thanks to
6614 Bill Schottstaedt for the bug report
6615
6616 2002-08-20 Marius Vollmer <mvo@zagadka.ping.de>
6617
6618 * print.c (scm_iprin1): Print primitives generics always as
6619 "primitive-generic" even when they have no primitive methods yet.
6620
6621 2002-08-17 Gary Houston <ghouston@arglist.com>
6622
6623 * coop.c (coop_create): removed bogus 2nd argument in scm_malloc
6624 call.
6625
6626 2002-08-17 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6627
6628 * ports.c (scm_add_to_port_table): small bugfix.
6629
6630 * mallocs.c (scm_malloc_obj): use scm_gc_malloc in stead of
6631 malloc.
6632
6633 * gc-segment.c (scm_i_get_new_heap_segment): remove cluster cruft:
6634 only use SCM_MIN_HEAP_SEG_SIZE.
6635
6636 * ports.c (scm_add_to_port_table): add backwards compatibility
6637 function
6638
6639 * ports.h: use scm_i_ prefix for port table and port table size.
6640
6641 2002-08-15 Mikael Djurfeldt <mdj@linnaeus>
6642
6643 * vports.c (scm_make_soft_port): Initialize pt variable.
6644
6645 2002-08-13 Marius Vollmer <mvo@zagadka.ping.de>
6646
6647 * strports.h (scm_c_eval_string_in_module,
6648 scm_eval_string_in_module): New prototypes.
6649 * strports.c (scm_eval_string_in_module): New, but use
6650 "eval-string" as the Scheme name and make second parameter
6651 optional.
6652 (scm_eval_string): Implement using scm_eval_string_in_module.
6653 (scm_c_eval_string_in_module): New.
6654 Thanks to Ralf Mattes for the suggestion!
6655
6656 2002-08-09 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6657
6658 * gc-card.c ("sweep_card"): remove SCM_MISC_ERROR messages: print
6659 message and abort.
6660
6661 * gc-mark.c ("scm_gc_mark_dependencies"): idem.
6662
6663 * ports.c ("scm_new_port_table_entry"): return a boxed SCM in
6664 stead of scm_t_port*. The function now takes a tag argument.
6665
6666 2002-08-08 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6667
6668 * gc.h: add scm_debug_cells_gc_interval to public interface
6669
6670 * gc-card.c ("sweep_card"): set scm_gc_running while sweeping.
6671
6672 * gc.c (scm_i_expensive_validation_check): separate expensive
6673 validation checks from cheap ones.
6674
6675 2002-08-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6676
6677 * read.c (scm_input_error): new function: give meaningful error
6678 messages, and throw read-error
6679
6680 * gc-malloc.c (scm_calloc): add scm_calloc.
6681
6682 2002-08-05 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6683
6684 * tags.h: remove GC bits documentation from the tags table.
6685
6686 * read.c (INPUT_ERROR): Prepare for file:line:column error
6687 messages for errors in scm_lreadr() and friends.
6688
6689 2002-08-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6690
6691 * gc-malloc.c (scm_malloc): use scm_realloc() (simplifies
6692 implementation).
6693 (scm_gc_calloc): new function
6694
6695 2002-08-04 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6696
6697 * ports.c (scm_new_port_table_entry): init port entry to 0
6698 completely.
6699
6700 * ports.c (scm_new_port_table_entry): change function from
6701 scm_add_to_port_table. This prevents cells with null-pointers from
6702 being exposed to GC.
6703
6704 * vports.c (scm_make_soft_port) strports.c (scm_mkstrport),
6705 fports.c (scm_fdes_to_port): Use scm_new_port_table_entry().
6706
6707 * gc.c (scm_gc_stats): add cell-yield and malloc-yield statistic
6708 to gc-stats.
6709
6710 * numbers.c (big2str): return "0" for 0 iso. ""
6711
6712 * gc-segment.c, gc-malloc.c gc-mark.c, gc-freelist.c, gc-card.c,
6713 private-gc.h: new file
6714
6715 * gc.c: completely revised and cleaned up the GC. It now uses lazy
6716 sweeping. More documentation in workbook/newgc.text
6717
6718 2002-07-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
6719
6720 * random.c (rstate_free): Return zero.
6721
6722 2002-07-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
6723
6724 * environments.c (remove_key_from_alist): Removed.
6725
6726 (obarray_remove): Simplified.
6727
6728 2002-07-24 Stefan Jahn <stefan@lkcc.org>
6729
6730 * continuations.h: ia64: Include <signal.h> before
6731 <sys/ucontext.h>.
6732
6733 2002-07-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
6734
6735 * modules.c (scm_sym2var): Don't compare SCM values with ==.
6736
6737 2002-07-21 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6738
6739 * goops.c (scm_compute_applicable_methods): use
6740 scm_remember_upto_here_1 iso scm_remember_upto_here
6741
6742 * macros.c: include deprecation.h
6743
6744 * vectors.c (scm_vector_move_right_x): remove side effect in
6745 macro arg.
6746 (scm_vector_move_left_x): idem.
6747
6748 * net_db.c, posix.c, socket.c: variable naming: change ans to
6749 result.
6750
6751 * sort.c (scm_merge_vector_x): accept vector as argument
6752 iso. SCM*. This is needed for full GC correctness.
6753
6754 * gc.h: undo previous undocumented changes related to #ifdef
6755 GENGC.
6756
6757 2002-07-20 Han-Wen Nienhuys <hanwen@cs.uu.nl>
6758
6759 * *.c: add space after commas everywhere.
6760
6761 * *.c: use SCM_VECTOR_SET everywhere, where a vector is written.
6762 Document cases where SCM_WRITABLE_VELTS() is used.
6763
6764 * vectors.h (SCM_VELTS): prepare for write barrier, and let
6765 SCM_VELTS() return a const pointer
6766 (SCM_VECTOR_SET): add macro.
6767
6768 2002-07-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
6769
6770 * eval.c (SCM_CEVAL), macros.c (macro_print, scm_makmacro,
6771 scm_sym_macro, scm_macro_type), macros.h (scm_makmacro):
6772 Deprecated the special kind of built-in dynamic syntax transformer
6773 that was inaccurately named "macro". Note: The built-in syntax
6774 transformers that are named "mmacro" or "memoizing-macro" still
6775 exist, and it is these which come much closer to what one would
6776 call a macro.
6777
6778 2002-07-13 Neil Jerram <neil@ossau.uklinux.net>
6779
6780 * eval.c (unmemocopy): Fix for
6781 1001-local-eval-error-backtrace-segfaults (unmemoization crash
6782 with internal definitions and local-eval).
6783
6784 2002-07-12 Gary Houston <ghouston@arglist.com>
6785
6786 * dynl.c: Don't define stub procedures if DYNAMIC_LINKING is not
6787 defined. They don't do anything useful, especially since the
6788 only case where DYNAMIC_LINKING is undefined seems to be
6789 when --with-modules=no is given to configure, which is basically
6790 requesting that the "dynamic linking module" be omitted.
6791
6792 * Makefile.am (libguile_la_SOURCES): move dynl.c from
6793 libguile_la_SOURCES to EXTRA_libguile_la_SOURCES.
6794
6795 * extensions.c (load_extension): check DYNAMIC_LINKING for
6796 scm_dynamic_call.
6797 * init.c (scm_init_guile_1): check DYNAMIC_LINKING for
6798 scm_init_dynamic_linking.
6799
6800 2002-07-10 Marius Vollmer <mvo@zagadka.ping.de>
6801
6802 * guile.c, iselect.h, net_db.c, posix.c, socket.c: No need to
6803 check for Cygwin when including <winsock2.h>, this is already
6804 check for by configure. Thus, revert change from 2002-07-07.
6805
6806 2002-07-10 Gary Houston <ghouston@arglist.com>
6807
6808 * eq.c: include <string.h>
6809 * dynl.c: docstring editing.
6810
6811 2002-07-09 Gary Houston <ghouston@arglist.com>
6812
6813 * dynl.c (scm_dynamic_call): docstring editing.
6814
6815 2002-07-08 Rob Browning <rlb@defaultvalue.org>
6816
6817 * gc_os_dep.c: HURD fixes.
6818
6819 2002-07-07 Marius Vollmer <mvo@zagadka.ping.de>
6820
6821 Crosscompiling and Cygwin fixes by Jan Nieuwenhuizen. Thanks!
6822
6823 * Makefile.am: Override default rule for c-tokenize.$(OBJECT);
6824 this should be compiled for BUILD host.
6825 Override default rule for
6826 guile_filter_doc_snarfage$(EEXECT); this should run on BUILD host.
6827 Add missing $(EXEEXT) to guile_filter_doc_snarfage invocation.
6828 (snarf2checkedtexi): Use GUILE_FOR_BUILD instead of preinstguile.
6829
6830 * guile.c, iselect.h, net_db.c, posix.c, socket.c: Do not include
6831 <winsock2.h> on Cygwin even when we have it.
6832
6833 2002-07-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
6834
6835 * __scm.h (SCM_CAUTIOUS), eval.c (scm_eval_args, deval_args,
6836 SCM_CEVAL): Removed compile time option SCM_CAUTIOUS to clean up
6837 the code. Full number of arguments checking of closures is
6838 mandatory now. However, the option to disable the checking has
6839 most probably not been used anyway.
6840
6841 2002-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
6842
6843 * __scm.h (SCM_RECKLESS), backtrace.c (SCM_ASSERT), debug.c
6844 (scm_debug_options), eval.c (scm_lookupcar, scm_lookupcar1,
6845 scm_badargsp, SCM_CEVAL, SCM_APPLY, scm_map, scm_for_each),
6846 feature.c (scm_init_feature), gsubr.c (scm_gsubr_apply), numbers.c
6847 (scm_logand, scm_logior, scm_logxor, scm_i_dbl2big), srcprop.c
6848 (scm_source_properties, scm_set_source_properties_x,
6849 scm_source_property): Removed compile time option SCM_RECKLESS to
6850 clean up the code. Full number of arguments checking of closures
6851 is mandatory now. However, the option to disable the checking has
6852 most probably not been used anyway.
6853
6854 * srcprop.c (scm_source_properties, scm_set_source_properties_x,
6855 scm_source_property): Use !SCM_CONSP instead of SCM_NCONSP.
6856
6857 2002-06-30 Gary Houston <ghouston@arglist.com>
6858
6859 * dynl.c: Removed all SCM_DEFER_INTS/SCM_ALLOW_INTS, which won't
6860 do anything useful. Added a comment about need for a mutex if
6861 pre-emptive threading is supported.
6862
6863 * posix.c (scm_convert_exec_args), dynl.c
6864 (scm_make_argv_from_stringlist): static procs: 1) renamed both to
6865 allocate_string_pointers. 2) simplified: don't reallocate the
6866 strings, just make an array of pointers 3) avoid memory leaks on
6867 error 4) let the procedure report errors in its own name.
6868 Consequences: 1) the procedures now assume that SCM strings are
6869 nul-terminated, which should always be the case. 2) Since strings
6870 are not reallocated, it's now possible for strings passed to
6871 dynamic-args-call to be mutated.
6872
6873 2002-06-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
6874
6875 * __scm.h, eval.c, eval.h: Removed compile time option
6876 MEMOIZE_LOCALS to clean up the code. Now, caching of local
6877 variable positions during memoization is mandatory. However, the
6878 option to disable the caching has most probably not been used
6879 anyway.
6880
6881 2002-06-18 Marius Vollmer <mvo@zagadka.ping.de>
6882
6883 * print.c (scm_simple_format): Print missing part of format before
6884 ~% control. Thanks to Daniel Skarda!
6885
6886 2002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
6887
6888 * mkstemp.c: Added exception notice to license statement.
6889
6890 2002-05-22 Marius Vollmer <mvo@zagadka.ping.de>
6891
6892 * numbers.c (mem2ureal): When returning an inexact zero, make sure
6893 it is represented as a floating point value so that we can change
6894 its sign.
6895
6896 From John W. Eaton <jwe@bevo.che.wisc.edu>
6897
6898 * numbers.c (idbl2str): Don't omit sign when printing negative zero.
6899
6900 2002-05-14 Thien-Thi Nguyen <ttn@giblet.glug.org>
6901
6902 * gc_os_dep.c: For I386/OPENBSD, allow for `__i386__'
6903 in addition to `i386'. Thanks to Dale P. Smith.
6904
6905 2002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
6906
6907 * eq.c (real_eqv): New.
6908 (scm_eqv_p): Use it when comparing reals and complexes.
6909
6910 * numbers.c: Include <string.h>, for strncmp.
6911 (mem2complex): Do not create negative NaNs.
6912 (scm_leq_p, scm_geq_p): Explicitely return #f when comparing a
6913 NaN.
6914 (scm_inexact_to_exact): Signal error when converting a NaN.
6915
6916 2002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
6917
6918 * posix.c (scm_putenv): Handle removing variables explicitely by
6919 calling unsetenv.
6920
6921 From John W. Eaton.
6922
6923 * numbers.h: Conditionally include floatingpoint.h, ieeefp.h, and
6924 nan.h. Provide declarations for scm_inf_p, scm_nan_p, scn_inf,
6925 and scm_nan.
6926 * numbers.c: [SCO && ! HAVE_ISNAN] (isnan): New function.
6927 [SCO && ! HAVE_ISINF] (isinf): New function.
6928 (xisinf, xisnan): New functions.
6929 (IS_INF): Delete.
6930 (isfinite): Define in terms of xisinf.
6931 (scm_inf_p, scm_nan_p): New functions.
6932 (guile_Inf, guile_NaN): New file-scope vars.
6933 (guile_ieee_init): New function.
6934 (scm_inf, scm_nan): New functions.
6935 (idbl2str): Handle Inf and NaN. Remove funny label and
6936 corresponding gotos.
6937 (ALLOW_DIVIDE_BY_ZERO): New macro.
6938 (scm_divide): Allow division by zero to occur if
6939 ALLOW_DIVIDE_BY_ZERO is defined.
6940 Handle bignums and ints as special cases.
6941
6942 Additional stuff by me:
6943
6944 numbers.c (mem2ureal): Recognize "inf.0" and "nan.xxx".
6945 (scm_even_p, scm_odd_p): Treat infinity as even and odd.
6946 (iflo2str): Don't output a '+' for negative numbers or for Inf and
6947 NaN. They will provide their own sign.
6948 (scm_divide): Only allow divides by inexact zeros. Dividing by
6949 exact zeros still signals an errors.
6950
6951 2002-04-22 Thien-Thi Nguyen <ttn@giblet.glug.org>
6952
6953 * goops.h (scm_slot_exists_p): Rename from scm_slots_exists_p.
6954 * goops.c (scm_slot_exists_p): Rename from scm_slots_exists_p.
6955 (scm_slot_exists_p): Rename from scm_slots_exists_p.
6956 Thanks to Andreas Rottmann.
6957
6958 2002-04-20 Gary Houston <ghouston@arglist.com>
6959
6960 * removal of unused fields in root state (thanks to Christopher
6961 Cramer for pointing out the disuse.)
6962 * root.h (scm_root_state): removed def_inp, def_outp, def_errp.
6963 (scm_def_inp, scm_def_outp, scm_def_errp): removed.
6964
6965 * root.c (root_mark): don't mark them.
6966 (scm_make_root): don't set them to #f.
6967 * init.c (scm_init_standard_ports): don't initialise with the
6968 default ports.
6969
6970 2002-04-17 Marius Vollmer <mvo@zagadka.ping.de>
6971
6972 * Makefile.am (EXTRA_DIST): Added cpp_err_symbols.c and
6973 cpp_sig_symbols.c.
6974
6975 2002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
6976
6977 * guile-snarf.in: Do not clean input file. This would write to
6978 the $(srcdir) during a VPATH build, which is not allowed. It also
6979 isn't needed since it only works when an output filename has been
6980 specified and in that case we don't need to clean the input file
6981 because the output file will already exist.
6982
6983 2002-03-31 Marius Vollmer <mvo@zagadka.ping.de>
6984
6985 * guile-snarf: Install the trap for removing $cleanfile only when
6986 the value of $cleanfile is actually known.
6987
6988 2002-04-10 Rob Browning <rlb@defaultvalue.org>
6989
6990 * .cvsignore: add versiondat.h and *.c.clean.c.
6991
6992 2002-03-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
6993
6994 * srcprop.[ch] (scm_c_source_property_breakpoint_p): New
6995 function, replaces macro SRCBRKP.
6996
6997 (SRCBRKP): Deprecated.
6998
6999 * eval.c (SCM_CEVAL): Replaced use of SRCBRKP by call to
7000 scm_c_source_property_breakpoint_p. Removed some use of arg1 as
7001 temporary variable.
7002
7003 2002-03-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
7004
7005 * debug.h, eval.c: Deprecated CHECK_ENTRY, CHECK_APPLY and
7006 CHECK_EXIT and removed all references to them.
7007
7008 2002-03-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
7009
7010 * debug.h (scm_ready_p, debug_print): Removed declarations.
7011
7012 * eval.c (EVALCELLCAR): Removed.
7013
7014 (SCM_CEVAL): Eliminated label loopnoap. Removed side-effecting
7015 operation from condition.
7016
7017 2002-03-24 Marius Vollmer <mvo@zagadka.ping.de>
7018
7019 * guile-snarf.in: When the output filename is "-", write to
7020 stdout. When no "-o" option is given, use "-" as the output
7021 filename (i.e., stdout). Only 'clean' the inputfile or remove the
7022 output file on error when the output file name is not "-". Define
7023 the preprocessor macro SCM_MAGIC_SNARFER while snarfing.
7024
7025 * Makefile.am (.c.x): Pass "-o $@" to guile-snarf.
7026
7027 2002-03-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
7028
7029 * eval.c (SCM_CEVAL, SCM_APPLY): Eliminated labels wrongnumargs
7030 and the corresponding goto statements. Removed redundant code.
7031
7032 2002-03-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
7033
7034 * eval.c (SCM_CEVAL): Minimized scope of variable arg2.
7035 Eliminated redundant SCM_IMP check. Exlined call to EVALCAR.
7036 Re-enabled handing of rpsubrs and asubrs.
7037
7038 2002-03-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
7039
7040 * eval.c (SIDEVAL): Removed.
7041
7042 (SCM_CEVAL): Minimized scope of variable orig_sym. Eliminated
7043 goto-labels cdrxnoap, cdrxbegin and nontoplevel_cdrxnoap. Changed
7044 argument checking order for set! to locals, variables and symbols.
7045 Improvements to control structure. Removed some uses of arg1 and
7046 arg2 as temporary variables.
7047
7048 2002-03-15 Thien-Thi Nguyen <ttn@giblet.glug.org>
7049
7050 * guile-snarf.in: Remove "--compat=1.4" support.
7051 Add "-d" and "-D" support.
7052
7053 (deprecated_list): New var.
7054 (compat_mode_clean_xxx): Delete.
7055 (grep_deprecated): New func.
7056 ("main"): If "-d" or "-D", call `grep_deprecated'.
7057
7058 2002-03-15 Neil Jerram <neil@ossau.uklinux.net>
7059
7060 * hooks.h: Change scm_t_c_hookype_t everywhere to
7061 scm_t_c_hook_type.
7062
7063 Docstring fixes:
7064
7065 * strings.c (scm_string_p): Change unnecessary `iff' to `if'.
7066
7067 * ports.c (scm_sys_make_void_port): Use `@file'.
7068
7069 * numbers.c (scm_number_p, scm_real_p): Use `otherwise' rather
7070 than `else'.
7071
7072 * macros.c (scm_makmacro): Don't say that the form replaces its
7073 source, because it doesn't.
7074 (scm_makmmacro): Clarify difference between this and scm_makmacro.
7075
7076 * backtrace.c (scm_display_error), filesys.c (scm_umask,
7077 scm_select, scm_basename), goops.c (scm_method_generic_function),
7078 numbers.c (scm_integer_length), posix.c (scm_getgroups, scm_execl,
7079 scm_setlocale, scm_flock), socket.c (scm_shutdown): Correct
7080 spelling mistakes.
7081
7082 * debug.c (scm_debug_options), eval.c
7083 (scm_eval_options_interface), read.c (scm_read_options): Change
7084 incorrect @var in docstring to @code.
7085
7086 2002-03-14 Marius Vollmer <mvo@zagadka.ping.de>
7087
7088 * unif.c (singp): Use SCM_REALP instead of SCM_SLOPPY_REALP.
7089
7090 * snarf.h (SCM_SNARF_INIT): Add "^:^" after code so that
7091 guile-snarf can remove trailing non-init code.
7092
7093 * guile-snarf.in (modern_snarf): Remove everything following and
7094 including "^:^" from the output.
7095
7096 2002-03-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
7097
7098 * eval.c (SCM_CEVAL), srcprop.h (SRCBRKP): Eliminated union 't'.
7099
7100 * eval.c (SCM_CEVAL): Exlined call to EVALCAR.
7101
7102 2002-03-13 Thien-Thi Nguyen <ttn@giblet.glug.org>
7103
7104 * guile-snarf.in: Update copyright.
7105 Rewrite to internalize error handling.
7106 Add "--compat=1.4" handling.
7107 Add commentary.
7108
7109 * Makefile.am (libpath.h): Use @top_srcdir_absolute@.
7110 (snarfcppopts): New var.
7111 (.c.x): Use $(snarfcppopts). Rework guile-snarf usage.
7112 (.c.doc): Use $(snarfcppopts).
7113
7114 * alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
7115 continuations.c, debug-malloc.c, debug.c, deprecation.c, dynl.c,
7116 dynwind.c, environments.c, eq.c, error.c, eval.c, evalext.c,
7117 extensions.c, feature.c, filesys.c, fluids.c, fports.c, gc.c,
7118 goops.c, gsubr.c, guardians.c, hash.c, hashtab.c, hooks.c,
7119 ioext.c, iselect.c, keywords.c, lang.c, list.c, load.c, macros.c,
7120 modules.c, net_db.c, numbers.c, objects.c, objprop.c, options.c,
7121 pairs.c, ports.c, posix.c, print.c, procprop.c, procs.c,
7122 properties.c, ramap.c, random.c, rdelim.c, read.c, regex-posix.c,
7123 root.c, rw.c, scmsigs.c, script.c, simpos.c, socket.c, sort.c,
7124 srcprop.c, stackchk.c, stacks.c, stime.c, strings.c, strop.c,
7125 strorder.c, strports.c, struct.c, symbols.c, threads.c, throw.c,
7126 unif.c, values.c, variable.c, vectors.c, version.c, vports.c,
7127 weaks.c: Retire inclusion guard macro SCM_MAGIC_SNARFER.
7128
7129 2002-03-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
7130
7131 * eval.c (SCM_CEVAL): Got rid of the last reference to t.lloc.
7132 The next step will be to remove the union 't' and simplify the
7133 code of SCM_CEVAL that way.
7134
7135 2002-03-12 Neil Jerram <neil@ossau.uklinux.net>
7136
7137 * iselect.c (collisionp, gnfds, greadfds, gwritefds, gexceptfds,
7138 rreadfds, rwritefds, rexceptfds): Made static.
7139
7140 * gc.c (terminating), fports.c (terminating): Renamed
7141 scm_i_terminating.
7142
7143 2002-03-11 Marius Vollmer <mvo@zagadka.ping.de>
7144
7145 * numbers.c (scm_divide): Adapt code from libstdc++/f2c to void
7146 potential overflow problems. Thanks to John W Eaton!
7147
7148 * strop.c (string_capitalize_x): Treat characters as unsigned so
7149 that 8-bit chars work. Thanks to David Pirotte!
7150
7151 2002-03-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
7152
7153 * eval.c (SCM_CEVAL): Cleaned up the handling of 'slot-ref',
7154 'slot-set!' and 'nil-cond'. Removed some uses of t.arg1, arg2 and
7155 proc as temporary variables. Introduced temporary variables with
7156 hopefully descriptive names for clarification. Replaced SCM_N?IMP
7157 by a more explicit predicate in some places.
7158
7159 2002-03-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
7160
7161 * eval.c (SCM_CEVAL): Cleaned up the handling of #@dispatch.
7162 Added lots of comments regarding the implementation of #@dispatch.
7163 Changed intra-procedure communication to use t.arg1 instead of
7164 arg2. Removed some uses of t.arg1, t.lloc and proc as temporary
7165 variables. Introduced temporary variables with hopefully
7166 descriptive names for clarification. Replaced SCM_N?IMP by a more
7167 explicit predicate in some places. Use SCM_INSTANCE_HASH instead
7168 of computing the expression explicitly. Eliminate now unused
7169 label nontoplevel_cdrxbegin.
7170
7171 * goops.h (SCM_INSTANCE_HASH): New macro.
7172
7173 * objects.h (SCM_CMETHOD_FORMALS, SCM_CMETHOD_BODY): New macros.
7174
7175 2002-03-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
7176
7177 * Makefile.am (bin_SCRIPTS): Revive this decl, w/ initial element
7178 "guile-snarf" moved back from `noinst_SCRIPTS'.
7179
7180 2002-03-08 Neil Jerram <neil@ossau.uklinux.net>
7181
7182 * srcprop.c (scm_set_source_property_x): If SRCPROPS obj already
7183 exists when adding a source property other than those that are
7184 handled explicitly, add the new property to the SRCPROPS obj's
7185 plist.
7186
7187 * debug.h (SCM_MAX_FRAME_SIZE): Remove incorrect comment about use
7188 of SCM_MAX_FRAME_SIZE as a bit mask; it isn't used like this.
7189
7190 * eval.c (SCM_CEVAL): Don't store scm_debug_eframe_size in
7191 debug.status. It isn't needed, and it can overflow the bits
7192 reserved for it (which may lead to a segv or a GC abort).
7193
7194 2002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
7195
7196 * eval.c (SCM_CEVAL): Cleaned up the handling of 'apply'. Removed
7197 side-effecting operations from conditions and macro calls.
7198 Replaced SCM_N?IMP by a more explicit predicate in some places.
7199 Minimized the scope of some variables.
7200
7201 2002-03-02 Stefan Jahn <stefan@lkcc.org>
7202
7203 * convert.i.c: Fixed int <-> long conversions which would have
7204 failed if their sizes were different.
7205
7206 2002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
7207
7208 * eval.c (SCM_CEVAL): Cleaned up the handling of 'if', 'let',
7209 'letrec' and 'set*': Removed some uses of t.arg1, t.lloc and proc
7210 as temporary variables. Removed side-effecting operations from
7211 conditions and macro calls. Introduced temporary variables with
7212 hopefully descriptive names for clarification. Replaced SCM_N?IMP
7213 by a more explicit predicate in some places. Removed code that
7214 was conditionally compiled if SICP was defined - which it never
7215 is.
7216
7217 2002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
7218
7219 * eval.c (SCM_CEVAL): Cleaned up the handling of 'cons' and 'do':
7220 Removed some uses of t.arg1 and proc as temporary variables.
7221 Removed side-effecting operations from conditions and macro calls.
7222 Introduced temporary variables with hopefully descriptive names
7223 for clarification. Replaced SCM_N?IMP by a more explicit
7224 predicate in some places.
7225
7226 2002-03-02 Dirk Herrmann <D.Herrmann@tu-bs.de>
7227
7228 * eval.c (scm_badargsp, SCM_CEVAL): Replaced SCM_N?IMP by a more
7229 explicit predicate in some places.
7230
7231 (CHECK_EQVISH): Removed.
7232
7233 (SCM_CEVAL): Removed some uses of t.arg1 and proc as temporary
7234 variables. Removed side-effecting operations from conditions and
7235 macro calls. Introduced temporary variables for clarification.
7236 Sorted if-else-if check for the type of the last form in a list by
7237 frequency. Avoided some unnecessary tail-recursion calls.
7238
7239 2002-03-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
7240
7241 * gc.c (SCM_HEAP_SEG_SIZE, CELL_UP, CELL_DN, NEXT_DATA_CELL,
7242 init_heap_seg, alloc_some_heap), gc.h (struct scm_cell, struct
7243 scm_t_cell, SCM_CELLPTR, SCM_GC_CARD_SIZE,
7244 SCM_GC_IN_CARD_HEADERP), tags.h (SCM_CELLP): Renamed the struct
7245 scm_cell and all its uses to scm_t_cell in accordance to Guile's
7246 naming scheme for types.
7247
7248 * alist.c (scm_acons), convert.i.c (CTYPES2UVECT,
7249 CTYPES2UVECT_OPTIONAL), coop-threads.c (scm_call_with_new_thread,
7250 scm_spawn_thread), debug.c (scm_make_debugobj), environments.c
7251 (scm_make_environment), eval.c (scm_closure), fports.c
7252 (scm_fdes_to_port), gc.c (scm_deprecated_newcell,
7253 scm_deprecated_newcell2), inline.h (scm_alloc_cell, scm_cell),
7254 list.c (SCM_I_CONS), numbers.c (scm_i_mkbig), pairs.c (scm_cons),
7255 ports.c (scm_void_port), procs.c (scm_c_make_subr, scm_makcclo),
7256 smob.c (scm_make_smob), smob.h (SCM_NEWSMOB), strings.c
7257 (scm_take_str, scm_allocate_string), strports.c (scm_mkstrport),
7258 unif.c (scm_make_uve), variable.c (make_variable), vectors.c
7259 (scm_c_make_vector), vports.c (scm_make_soft_port): Renamed
7260 scm_alloc_cell to scm_cell.
7261
7262 * environments.c (core_environments_observe), gc.c
7263 (scm_deprecated_newcell2), goops.c (wrap_init, scm_wrap_object),
7264 inline.h (scm_alloc_double_cell, scm_double_cell), num2float.i.c
7265 (FLOAT2NUM), numbers.c (scm_make_real), procs.c
7266 (scm_make_procedure_with_setter), smob.h (SCM_NEWSMOB2,
7267 SCM_NEWSMOB3), struct.c (scm_make_struct, scm_make_vtable_vtable),
7268 symbols.c (scm_mem2symbol, scm_mem2uninterned_symbol), weaks.c
7269 (allocate_weak_vector): Renamed scm_alloc_double_cell to
7270 scm_double_cell.
7271
7272 2002-02-27 Stefan Jahn <stefan@lkcc.org>
7273
7274 * convert.i.c, convert.c: Better range checking.
7275
7276 * inet_aton.c, fports.c: Commented the inclusion of <winsock2.h>.
7277
7278 * deprecation.c (vsnprintf): Define to `_vsnprintf' for
7279 Windows (MinGW).
7280
7281 2002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
7282
7283 * Makefile.am: Update path to pre-inst-guile automake frag.
7284
7285 2002-02-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
7286
7287 * gc.c (scm_gc_sweep): Make it compile even when deprecated
7288 features are excluded.
7289
7290 2002-02-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
7291
7292 * num2integral.i.c (NUM2INTEGRAL): Fixed signedness problem.
7293
7294 2002-02-25 Gary Houston <ghouston@arglist.com>
7295
7296 * convert.c: include <string.h> for convert_i.c.
7297
7298 2002-02-24 Rob Browning <rlb@defaultvalue.org>
7299
7300 * .cvsignore: add stamp-h1.
7301
7302 2002-02-21 Neil Jerram <neil@ossau.uklinux.net>
7303
7304 * unif.c (scm_array_to_list): Correct name, which had been
7305 accidentally changed to scm_t_arrayo_list!
7306
7307 2002-02-20 Mikael Djurfeldt <mdj@linnaeus>
7308
7309 * gc.c (scm_gc_sweep): Print an error message when aborting due to
7310 underflowing scm_mallocated.
7311
7312 2002-02-14 Marius Vollmer <marius.vollmer@uni-dortmund.de>
7313
7314 * gc.h, gc.c (scm_must_malloc, scm_must_realloc, scm_must_strdup,
7315 scm_must_strndup, scm_done_malloc, scm_done_free, scm_must_free):
7316 Reimplemented using the new scm_gc_malloc, etc., functions and
7317 deprecated.
7318
7319 2002-02-11 Thien-Thi Nguyen <ttn@giblet.glug.org>
7320
7321 * Makefile.am (bin_PROGRAMS): Move `guile_filter_doc_snarfage'
7322 to `noinst_PROGRAMS'.
7323 (bin_SCRIPTS): Move all values to `noinst_SCRIPTS'; delete.
7324 (noinst_PROGRAMS, noinst_SCRIPTS): New.
7325
7326 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de>
7327
7328 * gc.h, gc.c (scm_gc_sweep): Issue deprecation warning when
7329 non-zero is returned from a port or smob free function.
7330 (scm_malloc, scm_realloc, scm_strndup, scm_strdup,
7331 scm_gc_register_collectable_memory,
7332 scm_gc_unregister_collectable_memory, scm_gc_malloc,
7333 scm_gc_realloc, scm_gc_free, scm_gc_strndup, scm_gc_strdup): New.
7334
7335 * backtrace.c, continuations.c, convert.i.c, coop-threads.c,
7336 debug-malloc.c, dynl.c, environments.c, environments.h,
7337 extensions.c, filesys.c, fports.c, gc.c, gc.h, gh_data.c, goops.c,
7338 guardians.c, hooks.c, init.c, keywords.c, load.c, numbers.c,
7339 ports.c, posix.c, procs.c, rdelim.c, regex-posix.c, root.c,
7340 smob.c, stime.c, strings.c, struct.c, struct.h, symbols.c, unif.c,
7341 vectors.c, weaks.c: Use scm_gc_malloc/scm_malloc and
7342 scm_gc_free/free instead of scm_must_malloc and scm_must_free, as
7343 appropriate. Return zero from smob and port free functions.
7344
7345 * debug-malloc.c (scm_malloc_reregister): Handle "old == NULL".
7346
7347 * deprecation.h, deprecation.c: Reimplemented to allow deprecation
7348 messages while the GC is running.
7349 (scm_c_issue_deprecation_warning_fmt): New.
7350
7351 * fports.c (scm_setvbuf): Reset read buffer to saved values when
7352 it is pointing to the putback buffer.
7353
7354 2002-02-08 Thien-Thi Nguyen <ttn@giblet.glug.org>
7355
7356 * gsubr.c (create_gsubr): On "too many args" error,
7357 also display arg count and name. Thanks to Bill Schottstaedt.
7358
7359 2002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
7360
7361 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
7362
7363 (bin_SCRIPTS): Remove guile-snarf-docs-texi.
7364 (alldotdocfiles, snarf2checkedtexi, dotdoc2texi): New vars.
7365 (guile.texi, guile-procedures.texi): Use $(dotdoc2texi).
7366
7367 * guile-snarf-docs-texi.in: Bye bye.
7368
7369 2002-02-04 Marius Vollmer <marius.vollmer@uni-dortmund.de>
7370
7371 * symbols.c (scm_make_symbol): Fix typo in docstring.
7372
7373 * symbols.h (scm_mem2uninterned_symbol, scm_symbol_interned_p,
7374 scm_make_symbol): New prototypes.
7375
7376 2002-02-03 Marius Vollmer <mvo@zagadka.ping.de>
7377
7378 * symbols.h (SCM_SET_SYMBOL_HASH): Removed.
7379 (SCM_SYMBOL_INTERNED_P): New.
7380 * symbols.c (scm_symbol_hash): Use scm_ulong2num instead of
7381 SCM_MAKINUM since hash values can well be bignums.
7382 (scm_mem2symbol): Only use hash values below SCM_T_BITS_MAX/2.
7383 This signals a interned symbol.
7384 (scm_mem2uninterned_symbol, scm_symbol_interned_p,
7385 scm_make_symbol): New.
7386
7387 * print.c (scm_iprin1): Print uninterned symbols unreadably.
7388
7389 2002-02-02 Thien-Thi Nguyen <ttn@giblet.glug.org>
7390
7391 * __scm.h (HAVE_UINTPTR_T): Only define if UINTPTR_T attributes
7392 are defined: UINTPTR_MAX, INTPTR_MAX, INTPTR_MIN.
7393 Thanks to Dave Love.
7394
7395 2002-01-31 Marius Vollmer <mvo@zagadka.ping.de>
7396
7397 * symbols.c (scm_gensym): Use " g" as default prefix, not "g".
7398 This might help to make unintended clashes less likely.
7399 (scm_string_to_symbol): Protect the string until the symbols is
7400 created.
7401
7402 2002-01-31 Stefan Jahn <stefan@lkcc.org>
7403
7404 * convert.c, convert.h, convert.i.c: New files containing C
7405 array to Scheme conversion helpers meant to be replacement
7406 functions for the deprecated gh interface.
7407
7408 * Makefile.am: Setup rules for new `convert.*' files.
7409
7410 2002-01-28 Stefan Jahn <stefan@lkcc.org>
7411
7412 * symbols.c (scm_c_symbol2str): New function, replacement for
7413 `gh_scm2newsymbol()'.
7414
7415 * strings.c (scm_c_substring2str): New function. Proper
7416 replacement for `gh_get_substr()'.
7417
7418 * socket.c: Include `stdint.h' if available for the `uint32_t'
7419 declaration.
7420
7421 * scmsigs.c (scm_sigaction): Initialize `chandler' (inhibits
7422 compiler warning).
7423
7424 * backtrace.c: Include `lang.h' for GUILE_DEBUG conditional.
7425
7426 2002-01-22 Neil Jerram <neil@ossau.uklinux.net>
7427
7428 Other changes unrelated to Elisp...
7429
7430 * eval.c (scm_m_if): Use s_if rather than repeating string literal
7431 "if".
7432 (comments): Fix a few typos.
7433 (scm_for_each): Add parentheses around oddly unparenthesized
7434 if/while conditions.
7435
7436 * read.c (scm_read_opts): Add full stop at end of doc for
7437 `keywords' option.
7438
7439 * script.c (scm_compile_shell_switches): Use scm_str2symbol
7440 instead of gh_symbol2scm.
7441
7442 * srcprop.h (SRCPROPBRK): Return C type rather than SCM.
7443 (SRCBRKP): Use SRCPROPBRK rather than duplicating its logic.
7444
7445 * srcprop.c (scm_srcprops_to_plist, scm_source_property): Change
7446 SRCPROPBRK (x) to SCM_BOOL (SRCPROPBRK (x)).
7447
7448 First batch of changes for Elisp support...
7449
7450 * alist.c, async.c, boolean.c, dynl.c, eval.c, filesys.c,
7451 fluids.c, list.c, load.c, options.c, posix.c, print.c, sort.c,
7452 throw.c, vectors.c, weaks.c: Add #include for lang.h.
7453
7454 * eval.c, eval.h, init.c, lang.c, lang.h: Use SCM_ENABLE_ELISP to
7455 conditionalize compilation and initialization of Elisp support
7456 function.
7457
7458 * alist.c (scm_assq, scm_assv, scm_assoc), async.c
7459 (scm_asyncs_pending, scm_run_asyncs, noop), backtrace.c
7460 (scm_set_print_params_x), dynl.c (scm_make_argv_from_stringlist),
7461 filesys.c (fill_select_type, retrieve_select_type), fluids.c
7462 (scm_swap_fluids, scm_swap_fluids_reverse), list.c (scm_null_p,
7463 scm_ilength, scm_append_x, scm_last_pair, scm_reverse,
7464 scm_reverse_x, scm_list_ref, scm_list_set_x, scm_list_cdr_set_x,
7465 scm_c_memq, scm_memv, scm_member), load.c (scm_search_path),
7466 options.c (change_option_setting, scm_options), posix.c
7467 (environ_list_to_c), print.c (scm_iprlist), throw.c
7468 (scm_exit_status), vectors.c (scm_vector), weaks.c
7469 (scm_weak_vector): Use SCM_NULL_OR_NIL_P instead of SCM_NULLP.
7470
7471 * boolean.c (scm_not): Use `SCM_FALSEP || SCM_NILP' instead of
7472 just SCM_FALSEP.
7473
7474 * boolean.c (scm_boolean_p): Use `SCM_BOOLP || SCM_NILP' instead
7475 of just SCM_BOOLP.
7476
7477 * eval.c (scm_lisp_nil, scm_lisp_t, s_nil_ify, scm_m_nil_ify,
7478 s_t_ify, scm_m_t_ify, s_0_cond, scm_m_0_cond, s_0_ify,
7479 scm_m_0_ify, s_1_ify, scm_m_1_ify): Removed.
7480 (scm_m_atfop): Support function aliasing. Support both function
7481 args, which need transformation, and macro args, which do not.
7482 Add explanatory comments.
7483 (SCM_CEVAL): In switch cases for SCM_IM_AND, SCM_IM_COND,
7484 SCM_IM_DO, SCM_IM_IF and SCM_IM_OR, add `|| SCM_NILP' to existing
7485 checks for SCM_FALSEP. In switch case for SCM_IM_NIL_COND, use
7486 SCM_NULLP || SCM_NILP instead of checks against (removed)
7487 scm_lisp_nil. Removed switch cases for SCM_IM_NIL_IFY,
7488 SCM_IM_T_IFY, SCM_IM_0_COND, SCM_IM_0_IFY, SCM_IM_1_IFY.
7489
7490 * lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null,
7491 scm_m_while, scm_nil_eq): Commented out; I don't think we need
7492 these, but I don't want to remove them yet, just in case.
7493 (scm_init_lang): Define `%nil' variable on Scheme level to hold
7494 Elisp nil value.
7495
7496 * lang.h (SCM_NILP): Test against Elisp nil value instead of
7497 against (removed) scm_lisp_nil.
7498 (SCM_NILNULLP, SCM_NIL2EOL, SCM_EOL2NIL): Commented out.
7499 (SCM_NULL_OR_NIL_P): New.
7500
7501 * list.c (scm_append): Use SCM_VALIDATE_NULL_OR_NIL instead of
7502 SCM_VALIDATE_NULL.
7503
7504 * print.c (scm_isymnames): Fix comment. Remove #@nil-ify,
7505 #@t-ify, #@0-cond, #@0-ify, #@1-ify. Add #nil (for SCM_ELISP_NIL
7506 value).
7507
7508 * sort.c (scm_sorted_p, scm_merge, scm_merge_list_x, scm_merge_x,
7509 scm_sort_x, scm_sort, scm_stable_sort_x, scm_stable_sort): Use
7510 SCM_NULL_OR_NIL_P instead of SCM_NULLP. In constructions like `if
7511 (SCM_NULLP (x)) return SCM_EOL;', return x rather than SCM_EOL.
7512
7513 * tags.h (SCM_IM_NIL_IFY, SCM_IM_T_IFY, SCM_IM_0_COND,
7514 SCM_IM_0_IFY, SCM_IM_1_IFY): Removed.
7515 (SCM_IM_BIND, SCM_IM_DELAY, SCM_IM_CALL_WITH_VALUES, SCM_UNBOUND):
7516 Numbering shifted down accordingly.
7517 (SCM_ELISP_NIL): New IFLAG.
7518
7519 * validate.h (SCM_VALIDATE_NULL_OR_NIL): New.
7520
7521 2002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
7522
7523 * eval.c: Removed outdated references to "everr". Improved some
7524 comments.
7525
7526 (scm_deval_args, deval_args): Renamed scm_deval_args to
7527 deval_args, since it is not part of the interface.
7528
7529 (SCM_CEVAL): Added (maybe somewhat verbose) comment. Avoid to
7530 use references to debug.vect[0] before it exists. Add parentheses
7531 to switch statement.
7532
7533 * goops.h: Added local emacs variables.
7534
7535 2002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
7536
7537 * eval.[ch] (scm_deval_args): Made static.
7538
7539 * srcprop.c (scm_source_property): Remove redundant SCM_IMP
7540 test.
7541
7542 * strings.c (scm_c_string2str): Clarified comment. Replaced
7543 THINKME by FIXME for uniformness. Removed question about whether
7544 arguments need to be protected from garbage collection: Arguments
7545 must be protected as any other variable.
7546
7547 2002-01-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
7548
7549 * procs.h (SCM_CLOSURE_BODY): New Macro.
7550
7551 * debug.c (scm_procedure_name, scm_procedure_source), eval.c
7552 (SCM_CEVAL, SCM_APPLY), goops.c (scm_sys_initialize_object,
7553 get_slot_value, set_slot_value), procs.c
7554 (scm_procedure_documentation), sort.c (closureless), stacks.c
7555 (get_applybody): Replace SCM_CDR (SCM_CODE (...)) by
7556 SCM_CLOSURE_BODY.
7557
7558 * sort.c (closureless): Prefer !SCM_FOOP over SCM_NFOOP.
7559
7560 2001-12-26 Marius Vollmer <mvo@zagadka.ping.de>
7561
7562 * Makefile.am (guile-procedures.txt): When we don't have makeinfo,
7563 use "cp" instead.
7564
7565 2001-12-16 Marius Vollmer <mvo@zagadka.ping.de>
7566
7567 * stacks.c, stacks.h (scm_t_stackype): Renamed to scm_stack_type
7568 everywhere.
7569
7570 * continuations.c (scm_make_continuation): Do not retain the
7571 throw_value when the continuation is invoked.
7572
7573 2001-12-08 Stefan Jahn <stefan@lkcc.org>
7574
7575 * strings.c (scm_c_string2str): New function. Converts a
7576 given Scheme string into a C string. Also put in two
7577 THINKME's regarding the malloc policy for the missing converter
7578 routines.
7579
7580 2001-12-01 Neil Jerram <neil@ossau.uklinux.net>
7581
7582 * gh_data.c (gh_module_lookup): Use scm_str2symbol rather than
7583 gh_symbol2scm.
7584
7585 2001-11-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
7586
7587 * gc.h (SCM_GC_CELL_WORD, SCM_GC_CELL_OBJECT,
7588 SCM_GC_SET_CELL_WORD, SCM_GC_SET_CELL_OBJECT): New macros.
7589
7590 (SCM_GC_CELL_TYPE, SCM_CELL_WORD, SCM_CELL_OBJECT,
7591 SCM_SET_CELL_WORD, SCM_SET_CELL_OBJECT, SCM_FREE_CELL_CDR,
7592 SCM_GC_SET_CELL_OBJECT): Express in terms of SCM_GC_CELL_*
7593 macros.
7594
7595 (SCM_FREE_CELL_P): Express in terms of SCM_GC_CELL_TYPE.
7596
7597 * inline.h (scm_alloc_cell, scm_alloc_double_cell): Use
7598 SCM_GC_CELL_* macros when accessing free cells.
7599
7600 2001-11-25 Marius Vollmer <mvo@zagadka.ping.de>
7601
7602 * vectors.h (SCM_MAKE_VECTOR_TAG): New.
7603 * unif.h (SCM_MAKE_BITVECTOR_TAG, SCM_MAKE_UVECTOR_TAG): New.
7604 * symbols.h (SCM_MAKE_SYMBOL_TAG): New.
7605 * strings.h (SCM_MAKE_STRING_TAG): New.
7606 * procs.h (SCM_MAKE_CCLO_TAG): New.
7607 * numbers.h (SCM_MAKE_BIGNUM_TAG): New.
7608
7609 * goops.h: Replaced SCM_DEBUG_DEPRECATED with
7610 !SCM_ENABLE_DEPRECATED.
7611
7612 * async.c, async.h (scm_system_async_mark_from_signal_handler):
7613 New.
7614
7615 * scmsigs.c (scm_take_signal): Removed all code that assumes that
7616 signal handlers are allowed to divert the flow of control. Call
7617 scm_system_async_mark_from_signal_handler instead of
7618 scm_system_async_mark.
7619
7620
7621 Deprecated SCM_NEWCELL and SCM_NEWCELL2. Added scm_alloc_cell and
7622 scm_alloc_double_cell in their place.
7623
7624 * gc.h (SCM_GC_SET_ALLOCATED, scm_debug_newcell,
7625 scm_debug_newcell2, scm_tc16_allocated): Removed from header.
7626 (scm_deprecated_newcell, scm_deprecated_newcell2): New.
7627 (SCM_NEWCELL, SCM_NEWCELL2): Implement in terms of
7628 scm_deprecated_newcell and scm_deprecated_newcell2.
7629
7630 gc.c (scm_tc16_allocated): Only define when including deprecated
7631 features.
7632 (scm_debug_newcell, scm_debug_newcell2): Removed.
7633 (scm_init_storage): Do not initialize scm_tc16_allocated.
7634 (scm_init_gc): Do it here.
7635 (allocated_mark): New, from old code.
7636 (scm_deprecated_newcell, scm_deprecated_newcell2): New.
7637
7638 * inline.c, inline.h: New files.
7639 * Makefile.am: Added them in all the right places.
7640
7641 * _scm.h: Include "libguile/inline.h".
7642
7643 * alist.c, coop-threads.c, debug.c, environments.c, eval.c,
7644 fports.c, gh_data.c, goops.c, guardians.c, lang.c, list.c,
7645 num2float.i.c, numbers.c, pairs.c, ports.c, print.c, procs.c,
7646 smob.c, smob.h, strings.c, strports.c, struct.c, symbols.c,
7647 unif.c, variable.c, vectors.c, vports.c, weaks.c: Replaced
7648 SCM_NEWCELL and SCM_NEWCELL2 with scm_alloc_cell and
7649 scm_alloc_double_cell, respectively.
7650
7651 2001-11-23 Marius Vollmer <mvo@zagadka.ping.de>
7652
7653 * modules.c (scm_c_use_module): Adapt to changes to
7654 `process-use-modules'.
7655
7656 2001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
7657
7658 * numbers.c (scm_divide): Fix more division by zero errors.
7659
7660 2001-11-21 Gary Houston <ghouston@arglist.com>
7661
7662 * Makefile.am (OMIT_DEPENDENCIES): removed, since it seems to be
7663 obsolete. autogen.sh says:
7664 invalid unused variable name: `OMIT_DEPENDENCIES'
7665
7666 2001-11-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
7667
7668 * numbers.c (scm_divide): Fix (/ 0). Thanks to Keith Wright for
7669 reporting the bug.
7670
7671 2001-11-21 Marius Vollmer <mvo@zagadka.ping.de>
7672
7673 * Makefile.am (install-exec-hook): Prepend $(DESTDIR) to filename.
7674 Thanks to Eric Gillespie, Jr!
7675
7676 2001-11-21 Stefan Jahn <stefan@lkcc.org>
7677
7678 * win32-socket.c (getservent, setservent, endservent,
7679 getprotoent, setprotoent, endprotoent): New functions.
7680 Appropriate replacements for M$-Windows.
7681
7682 * numbers.c (SIZE_MAX, PTRDIFF_MAX, PTRDIFF_MIN): Reintroduced
7683 these definitions for GUILE_DEBUG.
7684
7685 * net_db.c: Include "win32-socket.h" if compiling with a native
7686 M$-Windows compiler. Include some pieces of code (protoent and
7687 servent interface) protected by HAVE_* macros when using a
7688 native M$-Windows compiler.
7689
7690 2001-11-20 Marius Vollmer <mvo@zagadka.ping.de>
7691
7692 * modules.c (scm_c_export): Do nothing when the first argument is
7693 already the terminating NULL. Thanks to Han-Wen Nienhuys!
7694
7695 2001-11-20 Thien-Thi Nguyen <ttn@glug.org>
7696
7697 * Makefile.am (libpath.h): In SCM_BUILD_INFO,
7698 also include `buildstamp'.
7699
7700 2001-11-18 Rob Browning <rlb@defaultvalue.org>
7701
7702 * version.c
7703 (s_scm_major_version): use SCM_MAJOR_VERSION.
7704 (s_scm_minor_version): use SCM_MINOR_VERSION.
7705 (s_scm_micro_version): use SCM_MICRO_VERSION.
7706 (s_scm_version): use SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
7707 SCM_MICRO_VERSION.
7708
7709 * version.h.in
7710 (SCM_MAJOR_VERSION): renamed from SCM_GUILE_MAJOR_VERSION.
7711 (SCM_MINOR_VERSION): renamed from SCM_GUILE_MINOR_VERSION.
7712 (SCM_MICRO_VERSION): renamed from SCM_GUILE_MICRO_VERSION.
7713
7714 2001-11-18 Neil Jerram <neil@ossau.uklinux.net>
7715
7716 * vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):
7717 Rewrite docstrings without reference to substring-move-left/right,
7718 since the latter no longer exist.
7719
7720 2001-11-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
7721
7722 * eval.c: Removed bogus comment about acros.
7723
7724 (scm_unmemocar): Use !SCM_CONSP instead of SCM_IMP.
7725 Minimize scope of local variable. Eliminate dependency on
7726 macro DEBUG_EXTENSIONS.
7727
7728 (s_splicing): New error message string.
7729
7730 (scm_m_body): Issue 'bad body' message rather than 'missing
7731 expression' message.
7732
7733 (scm_m_quote): Eliminate unnecessary copying.
7734
7735 (scm_m_lambda, scm_m_letstar, scm_m_letrec, scm_m_let): Leave the
7736 checking of the body to scm_m_body.
7737
7738 (scm_m_do): Move comment to function header. Rename arg1 to
7739 binding. Made the code a bit easier to read.
7740
7741 (evalcar): Removed.
7742
7743 (iqq): Added a comment. Changed the depth parameter to
7744 unsigned. Use size_t for vector lengths. Make sure vector object
7745 is gc protected as long as its contents are read. Add some syntax
7746 checks. Get rid of unnecessary SCM_IMP test. Clean up the
7747 control structure a bit.
7748
7749 (scm_m_delay): Added comment about the implementation of
7750 scm_m_delay.
7751
7752 (scm_m_define): Add comment about guile's currying define
7753 syntax. Renamed 'proc' to 'name'. Eliminate dependency on macro
7754 DEBUG_EXTENSIONS. Simplified code a bit. Eliminate SICP code.
7755
7756 (scm_m_letrec1): Removed. Part of the functionality is taken
7757 over by the new function 'transform_bindings'.
7758
7759 (transform_bindings): New function. Takes over some of the
7760 functionality of removed function 'scm_m_letrec1', namely to split
7761 a list of bindings into a reversed list of variables and a list of
7762 initializers.
7763
7764 (scm_m_letrec): Call 'transform_bindings'.
7765
7766 (scm_m_let): Minimized scope of local variables. Renamed 'proc'
7767 to 'temp' and 'arg1' to 'binding'. Eliminated redundant SCM_NIMP
7768 test. Use 'transform_bindings'. Fixed scoping error with named
7769 let (Thanks to Aubrey Jaffer for reporting the bug and to Neil
7770 Jerram for suggesting the fix). Cleaned up the control structure
7771 a bit.
7772
7773 (scm_m_expand_body): Use 'transform_bindings'. Eliminated
7774 unnecessary consing. Eliminated unnecessary
7775 SCM_DEFER/ALLOW_INTS.
7776
7777 (SCM_CEVAL): Un-obfuscated some loops.
7778
7779 2001-11-16 Neil Jerram <neil@ossau.uklinux.net>
7780
7781 * gc.h (scm_unhash_name): Old declaration removed.
7782
7783 * eval.c (s_scm_eval): Change @var{primitive-eval} to
7784 @code{primitive-eval}.
7785
7786 * feature.c, vectors.c, net_db.c, unif.c, weaks.c, struct.c,
7787 version.c, alist.c, ports.c, ramap.c, unif.c, strings.c, list.c:
7788 Change @deffnx lines in docstrings to say {Scheme Procedure}
7789 rather than primitive or procedure.
7790
7791 * posix.c (scm_execl), filesys.c (scm_close), unif.c
7792 (scm_array_set_x, scm_array_contents, scm_uniform_array_read_x,
7793 scm_bit_set_star_x, scm_bit_invert_x), ramap.c (scm_array_fill_x,
7794 scm_array_for_each, scm_array_index_map_x), vectors.c (scm_vector,
7795 scm_make_vector, scm_vector_to_list, scm_vector_fill_x), strop.c
7796 (scm_string_split, scm_string_ci_to_symbol), strings.c
7797 (scm_string_p), sort.c (scm_merge), print.c (scm_newline),
7798 macros.c (scm_macro_type), alist.c (scm_acons, scm_assq):
7799 Docstring fixes and improvements reflecting edits that have been
7800 made in the reference manual source.
7801
7802 * objprop.c (scm_object_properties, scm_set_object_properties_x,
7803 scm_object_property, scm_set_object_property_x): Remove invalid
7804 @deffnx lines for corresponding procedure property primitives.
7805
7806 These changes add a @deffnx C function declaration and function
7807 index entries for each Guile primitive to the copy of the doc
7808 snarf output that is used for reference manual synchronization.
7809 Online help is unchanged.
7810
7811 * snarf.h (SCM_SNARF_DOCS): Output primitive's C function name.
7812 (SCM_DEFINE, SCM_DEFINE1, SCM_REGISTER_PROC): Supply to C function
7813 name to SCM_SNARF_DOCS.
7814
7815 * guile-snarf-docs-texi.in: Pass the shell script's arguments into
7816 snarf-check-and-output-texi.
7817
7818 * Makefile.am (guile-procedures.texi): New rule.
7819 (BUILT_SOURCES, guile.texi, guile-procedures.txt, CLEANFILES):
7820 Changed so that the last stage of doc snarfing is now performed
7821 twice, once to produce guile-procedures.txt for online help, and
7822 once to produce guile.texi for reference manual synchronization.
7823
7824 2001-11-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
7825
7826 * eval.c (RETURN): Wrap in do{}while(0) in order to make it
7827 safely usable as a single statement followed by a ';', for example
7828 in an if statement.
7829
7830 (SCM_CEVAL, SCM_APPLY): Clean up code using 'RETURN'.
7831
7832 2001-11-13 Neil Jerram <neil@ossau.uklinux.net>
7833
7834 * random.c (scm_random_solid_sphere_x,
7835 scm_random_hollow_sphere_x): Correct "shere" typos.
7836
7837 * hashtab.c (scm_hash_fold): Add missing apostrophe to docstring.
7838
7839 * version.c (scm_version): Update docstring to include
7840 `micro-version'.
7841
7842 2001-11-13 Marius Vollmer <mvo@zagadka.ping.de>
7843
7844 * modules.c (scm_c_export): Call va_end after collecting the
7845 symbols.
7846
7847 * strop.h, strop.c (scm_substring_move_left_x,
7848 scm_substring_move_right_x): Removed.
7849
7850 * __scm.h (HAVE_UINTPTR_T, HAVE_PTRDIFF_T, HAVE_LONG_LONG,
7851 HAVE_LONG_LONGS): Define to "1" when defining them, to mirror what
7852 configure does.
7853
7854 2001-11-12 Marius Vollmer <mvo@zagadka.ping.de>
7855
7856 * numbers.c: Document macros to define when including
7857 num2integral.i.c. MAX_VALUE and MIN_VALU are no longer used, we
7858 now rely on SIZEOF_ macros that have been figured out at
7859 configure time.
7860
7861 * num2integral.i.c: Adapt to new interface.
7862 (NUM2INTEGRAL): Test whether a fixnum can be represented in the
7863 target type by casting it and checking whether it is still the
7864 same. Do not try to handle bignums for integral types that are
7865 smaller than fixnums. When handling bignums, collect the
7866 magnituse first into a unsigned type, and correctly check for
7867 overflow.
7868 (INTEGRAL2BIG): Do not use MIN_VALUE explicitely by observing that
7869 only -MIN_VALUE can still be negative of all negative numbers (in
7870 twos-complement).
7871
7872 * tags.h (SIZEOF_SCM_T_BITS): Define it appropriately.
7873
7874 * __scm.h: Define HAVE_UINTPTR_T, HAVE_PTRDIFF_T and
7875 HAVE_LONG_LONG depending on whether their size is non-zero.
7876
7877 2001-11-11 Thien-Thi Nguyen <ttn@glug.org>
7878
7879 * strop.c (scm_string_null_p): Docfix; nfc.
7880 Thanks to Scott Lenser.
7881
7882 2001-11-07 Neil Jerram <neil@ossau.uklinux.net>
7883
7884 * extensions.c (scm_load_extension): Canonicalize docstring
7885 whitespace.
7886
7887 * unif.c (scm_uniform_array_write), ports.c
7888 (scm_current_output_port, scm_force_output), dynwind.c
7889 (scm_dynamic_wind), scmsigs.c (scm_setitimer, scm_getitimer),
7890 filesys.c (scm_open, scm_lstat), struct.c
7891 (scm_make_struct_layout), random.c (scm_random,
7892 scm_random_solid_sphere_x, scm_random_hollow_sphere_x, strop.c
7893 (scm_i_index): Remove superfluous whitespace from end of docstring
7894 lines.
7895
7896 * filesys.c (scm_select), guardians.c (scm_guardian_greedy_p),
7897 strings.c (scm_make_string), variable.c (scm_make_variable,
7898 scm_make_undefined_variable, scm_variable_p, scm_variable_set_x,
7899 scm_variable_bound_p), scmsigs.c (scm_setitimer, scm_getitimer),
7900 posix.c (scm_crypt), struct.c (scm_make_vtable_vtable), hashtab.c
7901 (scm_hash_fold), ports.c (scm_port_for_each): Remove superfluous
7902 newline at end of docstrings.
7903
7904 * modules.c (scm_set_current_module): Add missing newline to
7905 docstring.
7906
7907 2001-11-07 Stefan Jahn <stefan@lkcc.org>
7908
7909 * win32-socket.[ch]: New files. Defines Winsock-API error codes
7910 and makes them available through Guile. That is because the
7911 Winsock-API does not store its errors in `errno' and thus cannot
7912 return error messages via `strerror (errno)'.
7913
7914 * socket.c (scm_init_socket): Initialize `win32-socket' part
7915 here under M$-Windows.
7916
7917 * numbers.h: Added missing declaration of
7918 `scm_sys_check_number_conversions()'.
7919
7920 * error.c: Local definition of SCM_I_STRERROR and SCM_I_ERRNO
7921 and use in `(strerror)' and `(system-error)'.
7922
7923 * Makefile.am (EXTRA_libguile_la_SOURCES): Added
7924 `win32-socket.[ch]' to extra source and header files.
7925
7926 2001-11-06 Marius Vollmer <mvo@zagadka.ping.de>
7927
7928 * script.c (scm_shell_usage, scm_compile_shell_switches): Prepend
7929 a call to turn-on-debugging when --debug has been given instead of
7930 turning it on directly. Also, handle new `--no-debug' option,
7931 which might suppress the call to turn-on-debugging.
7932
7933 2001-11-05 Stefan Jahn <stefan@lkcc.org>
7934
7935 * struct.c (s_scm_struct_vtable_p): Corrected docstring.
7936
7937 2001-11-04 Stefan Jahn <stefan@lkcc.org>
7938
7939 * Makefile.am (libguile_la_LIBADD): Added $(THREAD_LIBS_LOCAL)
7940 here (was at guile_LDADD) which describes the dependency
7941 correctly and allows a clean build on Win32.
7942
7943 * __scm.h (SCM_API): Follow-up patch. Renamed __FOO__ macros
7944 into FOO.
7945
7946 * __scm.h: USE_DLL_IMPORT indicates the usage of the DLL
7947 import macros for external libraries (libcrypt, libqthreads,
7948 libreadline and libregex).
7949
7950 * coop-defs.h: Include <winsock2.h> for `struct timeval'.
7951
7952 * posix.c (flock): Added support for flock() in M$-Windows.
7953
7954 * guile.c (SCM_IMPORT): Follow-up patch. Use SCM_IMPORT instead
7955 of __SCM_IMPORT__.
7956
7957 * fports.c (getflags): Differentiate reading and writing pipes
7958 descriptors.
7959
7960 * filesys.c (S_IS*): Redefine all of the S_IS*() macros for
7961 M$-Windows.
7962
7963 * coop.c (coop_condition_variable_timed_wait_mutex): Use
7964 conditionalized error code if `ETIMEDOUT' is not available.
7965 (scm_thread_usleep): Remove bogus declaration of `struct timeval
7966 timeout'.
7967
7968 * numbers.c (PTRDIFF_MIN): Moved this definition where it actually
7969 belongs. That is because NO_PREPRO_MAGIC gets undefined after
7970 each inclusion of `num2integral.i.c'.
7971 (SIZE_MAX): Define NO_PREPRO_MAGIC if SIZE_MAX is undefined.
7972
7973 2001-11-03 Marius Vollmer <mvo@zagadka.ping.de>
7974
7975 * eval.c (scm_m_begin): Allow `(begin)`, with no subforms.
7976 (SCM_CEVAL): Evaluate an empty `begin' to SCM_UNSPECIFIED.
7977
7978 2001-11-02 Mikael Djurfeldt <mdj@linnaeus>
7979
7980 * print.c (scm_iprin1): Mark print state as revealed when
7981 dispatching to generic write or display.
7982
7983 * unif.c (scm_ra2contig): Fixed memory overwrite bug.
7984
7985 2001-11-02 Marius Vollmer <mvo@zagadka.ping.de>
7986
7987 Support for native Win32. Thanks to Stefan Jahn!
7988
7989 * Makefile.am: Add win32-uname.c, win32-uname.h, win32-dirent.c
7990 and win32-dirent.h to extra source and header files. These
7991 include the uname() and the POSIX dirent interface implementation
7992 for M$-Windows. Put `-no-undefined' into LDFLAGS to support
7993 linkers which do not allow unresolved symbols inside shared
7994 libraries. Corrected `guile_filter_doc_snarfage$(EXEEXT)'
7995 dependency.
7996
7997 * __scm.h: Defined SCM_API. This macro gets prepended to all
7998 function and data definitions which should be exported or imported
7999 in the resulting dynamic link library in the Win32 port.
8000
8001 * __scm.h, alist.h, arbiters.h, async.h, backtrace.h, boolean.h,
8002 chars.h, continuations.h, coop-defs.h, coop-threads.h,
8003 debug-malloc.h, debug.h, deprecation.h, dynl.h, dynwind.h,
8004 environments.h, eq.h, error.h, eval.h, evalext.h, extensions.h,
8005 feature.h, filesys.h, fluids.h, fports.h, gc.h, gdb_interface.h,
8006 gdbint.h, gh.h, goops.h, gsubr.h, guardians.h, hash.h, hashtab.h,
8007 hooks.h, init.h, ioext.h, iselect.h, keywords.h, lang.h, list.h,
8008 load.h, macros.h, mallocs.h, modules.h, net_db.h, numbers.h,
8009 objects.h, objprop.h, options.h, pairs.h, ports.h, posix.h, print.h,
8010 procprop.h, procs.h, properties.h, ramap.h, random.h, rdelim.h,
8011 read.h, regex-posix.h, root.h, rw.h, scmsigs.h, script.h, simpos.h,
8012 smob.h, socket.h, sort.h, srcprop.h, stackchk.h, stacks.h, stime.h,
8013 strings.h, strop.h, strorder.h, strports.h, struct.h, symbols.h,
8014 tags.h, threads.h, throw.h, unif.h, values.h, variable.h, vectors.h,
8015 vports.h, weaks.h:
8016 Prefixed each each exported symbol with SCM_API.
8017
8018 * continuations.c: Added comment about the use of the extern
8019 declarations of {get,set}context() functions used in the ia64 port.
8020
8021 * continuations.h, gc.c: `__libc_ia64_register_backing_store_base'
8022 is meant to be a `unsigned long *'.
8023
8024 * filesys.c: Include `direct.h' if possible. Use local
8025 `win32-dirent.h' for the native M$-Windows port. Define S_IS*()
8026 macros for M$-Windows. Implementation of `fstat_Win32()' which is
8027 able to differentiate between sockets and other file descriptors.
8028 Use this function as wrapper in `scm_fstat()'. Fixed typo in
8029 `scm_dirname()'.
8030
8031 * fports.c: Include `io.h' is possible. Put `*fp' into referring
8032 statement block in `scm_fport_buffer_add()'.
8033 Some corrections in `getflags()'.
8034
8035 * gdb_interface.h (GDB_INTERFACE): Also support __CYGWIN__.
8036
8037 * guile.c: Make sure to define __SCM_IMPORT__ for shared library
8038 build on Win32. Disable preloaded symbols on Win2 platforms.
8039
8040 * ioext.c, ports.c: Include `io.h' is possible.
8041
8042 * mkstemp.c: Include `process.h' is possible.
8043
8044 * net_db.c: Disable extern declaration of `h_errno' for __CYGWIN__,
8045 too.
8046 Put `scm_return_entry()' into HAVE_GETSERVENT conditional.
8047
8048 * posix.c: Remove unnecessary dirent includes and defines. Include
8049 local `win32-uname.h' for MinGW. Extern declaration of
8050 `mkstemp()' for systems where it does not exists. Make
8051 `getlogin()' available on M$-Windows.
8052
8053 * scmsigs.c: Made `usleep()' avalable on MinGW.
8054
8055 * stime.c: On M$-Windows `tzname[]' is known to be `_tzname[]'.
8056
8057 * win32-dirent.c: Include "win32-dirent.h", not "dirent.h".
8058
8059 * win32-uname.c: Include "win32-uname.h", not "uname.h".
8060
8061 2001-10-28 Mikael Djurfeldt <mdj@linnaeus>
8062
8063 * unif.c (scm_uniform_array_read_x, scm_uniform_array_write):
8064 Don't apply scm_uniform_vector_length on arrays.
8065
8066 2001-10-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
8067
8068 * eval.c (scm_lookupcar, scm_m_letstar, scm_m_do, iqq,
8069 scm_m_define, scm_m_letrec1, scm_m_let, scm_m_expand_body,
8070 scm_macroexp, unmemocopy, scm_eval_args, scm_deval_args,
8071 SCM_CEVAL, scm_map, scm_init_eval): When building lists, prefer
8072 scm_list_<n> over scm_cons[2]?.
8073
8074 (scm_unmemocar, scm_m_cond, scm_m_letstar, scm_m_letrec1,
8075 scm_m_let, scm_m_atbind, unmemocopy, SCM_CEVAL, SCM_APPLY): Use
8076 SCM_C[AD][AD]R instead of explicit form.
8077
8078 (scm_m_set_x, scm_m_cond, scm_m_letstar, scm_m_do): Reordered
8079 comparison parameters.
8080
8081 (scm_m_case, scm_m_cond, scm_m_letstar, scm_m_do, SCM_CEVAL): Use
8082 !SCM_NULLP instead of SCM_NIMP.
8083
8084 (scm_m_case): Don't copy the form. Renamed proc to clause and
8085 minimized its scope. Renamed x to clauses. Removed side
8086 effecting operation from macro call.
8087
8088 (scm_m_cond): Don't copy the form. Renamed arg1 to clause and
8089 minimized its scope. Renamed x to clauses. Minimized the scope
8090 of variable 'len'. Make sure the else clause is treated specially
8091 even in case of '=>' occurences. Don't change the else to #t in
8092 order to be able to distinguish this case in the evaluator. Leave
8093 type checking of the recipient to the evaluator.
8094
8095 (scm_c_improper_memq): Made the comment somewhat clearer.
8096
8097 (scm_m_lambda): Renamed proc to formals. Removed unnecessary
8098 test for SCM_IM_LET at the place of the formal parameters.
8099 Simplified the formal parameter checking.
8100
8101 (scm_m_letstar): Added Comment. Renamed proc to bindings.
8102 Renamed arg1 to binding and minimized its scope. Eliminated
8103 unnecessary consing.
8104
8105 (scm_m_do): Renamed proc to bindings. Minimized the scope of
8106 variable 'len'.
8107
8108 (build_binding_list): New static function.
8109
8110 (unmemocopy): Don't use SCM_TYP7 on pairs (it's unclean).
8111 Further, split up the 'letrec' unmemoizing code to the
8112 corresponding parts for 'do', 'let' and 'letrec', adding comments
8113 to each form. Cleanup the handling of the do form (This removes
8114 some *real* code :-).
8115
8116 (SCM_CEVAL): Removed side effecting operation from macro call.
8117 Handle the 'else clause of the 'cond form specially - the symbol
8118 'else is not replaced with #t any more.
8119
8120 2001-10-14 Gary Houston <ghouston@arglist.com>
8121
8122 * version.c (scm_version): use sprintf instead of snprintf,
8123 for portability. thanks to Bill Schottstaedt.
8124
8125 2001-10-14 Mikael Djurfeldt <mdj@linnaeus>
8126
8127 * read.c (scm_lreadr): When user-defined hash procedure returns
8128 SCM_UNSPECIFIED: Fall back to standard handling instead of raising
8129 an exception. (This prevents parsing of uniform vectors from
8130 interfering with parsing of numbers.)
8131
8132 2001-10-13 Marius Vollmer <mvo@zagadka.ping.de>
8133
8134 * numbers.c: Set NO_PREPRO_MAGIC when defining our version of
8135 PTRDIFF_MIN. Thanks to Ken Raeburn.
8136
8137 2001-10-07 Marius Vollmer <mvo@zagadka.ping.de>
8138
8139 * Makefile.am (EXTRA_libguile_la_SOURCES): Added "mkstemp.c".
8140
8141 * eval.c (scm_m_atbind): First try to find the variable without
8142 defining it locally; when it has not been found, define it
8143 locally.
8144
8145 * modules.c (module_variable): Pass over variables that exist but
8146 are unbound.
8147
8148 2001-10-06 Marius Vollmer <mvo@zagadka.ping.de>
8149
8150 * backtrace.c (display_backtrace_file_and_line): Only use
8151 scm_basename when POSIX support is compiled in. Thanks to Chris
8152 Cramer.
8153
8154 2001-10-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8155
8156 * numbers.c (mem2uinteger): Return number read so far when coming
8157 across a hexdigit after having read a # or if not reading a hex
8158 value. This will enable the calling code to correctly handle
8159 forms like 1e2. (The background is, that the exponent markers d,
8160 e and f are also hexdigits.) Thanks to Mikael Djurfeldt for
8161 providing this patch.
8162
8163 (mem2complex): Fix erroneous double-negation. Now, numbers like
8164 1-i will be read correctly.
8165
8166 2001-10-12 Mikael Djurfeldt <mdj@linnaeus>
8167
8168 * debug.c (scm_mem_to_proc): Fixed typo in previous change.
8169
8170 * validate.h (SCM_VALIDATE_DOUBLE_DEF_COPY): New macro.
8171
8172 2001-10-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
8173
8174 * print.c (scm_print_state_vtable, print_state_pool):
8175 Initialize. These variables are now registered as gc roots.
8176
8177 (scm_current_pstate): Update documentation.
8178
8179 (scm_current_pstate, scm_make_print_state, scm_free_print_state,
8180 scm_prin1, scm_init_print): print_state_pool is registered as a
8181 gc root and thus does not need to be protected by a surrounding
8182 pair any more.
8183
8184 (make_print_state): The car of print_state_pool no longer holds
8185 the scm_print_state_vtable.
8186
8187 (scm_current_pstate, scm_make_print_state, print_circref,
8188 scm_iprin1, scm_prin1, scm_iprlist): Prefer !SCM_<foo> over
8189 SCM_N<foo>.
8190
8191 (scm_prin1): When building lists, prefer scm_list_<n> over
8192 scm_cons[2]?.
8193
8194 (scm_iprlist): Removed a redundant SCM_IMP test.
8195
8196 (scm_simple_format): Use SCM_EQ_P to compare SCM values.
8197
8198 2001-10-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
8199
8200 * debug.c (scm_make_iloc): Prefer !SCM_<foo> over SCM_N<foo>.
8201
8202 (scm_memcons, scm_mem_to_proc): When building lists, prefer
8203 scm_list_<n> over scm_cons[2]?.
8204
8205 (scm_mem_to_proc): Prefer SCM_CONSP over SCM_NIMP.
8206
8207 (scm_procedure_name): Use SCM_CADR instead of explicit form.
8208
8209 (debugobj_print): Coerce scm_intprint arg 1 to long, not int.
8210 Thanks to Rob Browning for the patch (see log entry 2001-09-21) -
8211 for some reason his patch didn't make it into the cvs.
8212
8213 2001-10-09 Dirk Herrmann <D.Herrmann@tu-bs.de>
8214
8215 * numbers.c (mem2decimal_from_point): Cleaned up the parsing a
8216 little bit - should even be somewhat more accurate now.
8217
8218 2001-10-08 Rob Browning <rlb@defaultvalue.org>
8219
8220 * gc.c: support ia64 register backing store.
8221 (SCM_MARK_BACKING_STORE): new macro.
8222
8223 * continuations.h: support ia64 register backing store.
8224 (struct scm_t_contregs): add ia64 register backing store.
8225
8226 * continuations.c: support ia64 register backing store.
8227 (continuation_mark): mark ia64 register backing store.
8228 (continuation_free): free ia64 register backing store.
8229 (scm_make_continuation): capture ia64 register backing store.
8230 (copy_stack_and_call): copy ia64 register backing store.
8231
8232 2001-10-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
8233
8234 * hashtab.c (scm_hash_fn_create_handle_x): The result of assoc_fn
8235 is known to be #f if no entry is found. Thus, use !SCM_FALSEP
8236 instead of SCM_NIMP to test for that case.
8237
8238 * strings.h (SCM_SET_STRING_LENGTH): Cast the length to
8239 scm_t_bits instead of long.
8240
8241 2001-10-06 Marius Vollmer <mvo@zagadka.ping.de>
8242
8243 * tags.h (SCM_T_BITS_MAX, SCM_T_SIGNED_BITS_MAX,
8244 SCM_T_SIGNED_BITS_MIN): New.
8245 * numbers.h (SCM_MOST_POSITIVE_FIXNUM, SCM_MOST_NEGATIVE_FIXNUM):
8246 Use them to make these macros computable by the preprocessor.
8247
8248 * num2integral.i.c (INTEGRAL2NUM): Let the preprocessor test
8249 whether the integral type fits in a fixnum, not the compiler.
8250 This removes a spurious compiler warning. Also, honor the
8251 NO_PREPRO_MAGIC flag to suppress any preprocessor tests. This is
8252 needed for `long long's.
8253
8254 * numbers.c: Define NO_PREPRO_MAGOC when including
8255 num2integral.c.i for `long long' and `signed long long'.
8256
8257 2001-10-06 Mikael Djurfeldt <mdj@linnaeus>
8258
8259 These changes fixes a race condition in the Guile coop - pthread
8260 compatibility code.
8261
8262 * coop.c (mother_awake_p): New variable.
8263 (coop_create): Set mother_awake_p before creating or signalling
8264 mother; wait until mother is going to sleep before returning.
8265 (mother): Reset mother_awake_p before going to sleep.
8266
8267 2001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
8268
8269 * options.c (protected_objects, scm_init_options): The content of
8270 protected_objects is now protected from garbage collection using
8271 scm_gc_register_root instead of scm_permanent_object.
8272
8273 (get_option_setting): New static function that computes an option
8274 setting as it was formerly done in the function scm_options.
8275
8276 (get_documented_option_setting): New static function that
8277 returns option documentation as it was formerly done in the
8278 function scm_options. Note that documentation C strings are no
8279 longer precomputed into SCM objects. Instead, they are converted
8280 into SCM strings every time get_documented_option_setting is
8281 called.
8282
8283 (change_option_setting): New static functions that modifies the
8284 option setting as it was formerly done in the function
8285 scm_options. The function is now exception safe, i. e. won't
8286 cause a memory leak when interrupted. Further, only non-immediate
8287 option values are added to the protection list.
8288
8289 (scm_options): This function now has only the purpose to dispatch
8290 to to get_option_setting, get_documented_option_setting or
8291 change_option_setting, depending on the arguments given to
8292 scm_options.
8293
8294 (scm_init_opts): Don't convert documentation C strings into SCM
8295 strings. Further, don't protect any object values: They _must_
8296 be immediate values, otherwise there is no guarantee that they
8297 have not been collected before anyway.
8298
8299 * options.[ch] (scm_t_option): Made type unsigned, name into a
8300 constant char* and val into a scm_t_bits type.
8301
8302 (scm_options, scm_init_opts): The number of options is guaranteed
8303 to be larger or equal to zero. Thus, the type is changed to
8304 unsigned.
8305
8306 2001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
8307
8308 * num2integral.i.c (NUM2INTEGRAL): Eliminated some warnings about
8309 testing an unsigned value for being >= 0.
8310
8311 2001-10-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
8312
8313 * numbers.h: Removed old comment about using SCM_CAR to access
8314 non-pair cells.
8315
8316 (SCM_MOST_POSITIVE_FIXNUM, SCM_MOST_NEGATIVE_FIXNUM): Make sure
8317 the return value is signed. Thanks to Brian Crowder for the bug
8318 report.
8319
8320 (SCM_SRS): Avoid unnecessary casting and don't unpack input
8321 values. With this patch, SCM_SRS can be safely used for other
8322 types than scm_t_signed_bits. However, it should still better be
8323 an internal macro and thus be renamed to SCM_I_SRS.
8324
8325 (SCM_MAKINUM, SCM_INUM): Use proper casting.
8326
8327 2001-10-03 Gary Houston <ghouston@arglist.com>
8328
8329 * continuations.h, unif.h: in the descriptions of the bit patterns
8330 of the heap cells, make bit 0 the least significant.
8331
8332 2001-09-25 Thien-Thi Nguyen <ttn@glug.org>
8333
8334 * chars.h (SCM_MAKE_CHAR): Use `scm_t_bits' instead of `intptr_t'.
8335 Thanks to Golubev I. N.
8336
8337 2001-09-25 Gary Houston <ghouston@arglist.com>
8338
8339 * ports.c (scm_drain_input): extended the docstring. thanks to
8340 Alex Schroeder and Thien-Thi Nguyen.
8341
8342 2001-09-23 Mikael Djurfeldt <mdj@linnaeus>
8343
8344 * validate.h (SCM_NUM2FLOAT, SCM_NUM2DOUBLE,
8345 SCM_VALIDATE_FLOAT_COPY, SCM_VALIDATE_DOUBLE_COPY): New
8346 macros. (The NUM names might soon change.)
8347
8348 * numbers.h: Added missing declarations.
8349
8350 2001-09-22 Mikael Djurfeldt <mdj@linnaeus>
8351
8352 * Makefile.am: Distribute num2float.i.c.
8353
8354 * num2float.i.c: New file, multiply included by numbers.c, used
8355 to "templatize" the float <-> num conversion routines.
8356
8357 * numbers.c: New functions: scm_num2float, scm_float2num,
8358 scm_num2double, scm_double2num.
8359
8360 2001-09-21 Rob Browning <rlb@defaultvalue.org>
8361
8362 * .cvsignore: really add version.h
8363
8364 * strings.h (SCM_SET_STRING_LENGTH): coerce "l" to a long.
8365 Otherwise it fails on the alpha. However, we might rather choose
8366 this size conditionally.
8367
8368 * numbers.c (scm_gcd): change "k" to a long from an int.
8369 Otherwise it fails on the alpha. However, we might rather choose
8370 this size conditionally.
8371
8372 * error.c (scm_wta): coerce char* to intptr_t before int
8373 assignment.
8374
8375 * debug.c (debugobj_print): coerce scm_intprint arg 1 to long, not
8376 int.
8377
8378 * chars.h (SCM_MAKE_CHAR): coerce value to intptr_t.
8379
8380 2001-09-20 Mikael Djurfeldt <mdj@linnaeus>
8381
8382 * numbers.c (scm_integer_expt): Accept inexact integer in second
8383 argument. (Thanks to Bill Schottstaedt.)
8384
8385 2001-09-20 Rob Browning <rlb@defaultvalue.org>
8386
8387 * .cvsignore: add version.h
8388
8389 * versiondat.h.in: removed (obsolete).
8390
8391 * version.h.in: renamed from version.h.
8392 (SCM_GUILE_MAJOR_VERSION): new public macro.
8393 (SCM_GUILE_MINOR_VERSION): new public macro.
8394 (SCM_GUILE_MICRO_VERSION): new public macro.
8395
8396 * version.h: renamed to version.h.in.
8397
8398 * version.c
8399 (scm_major_version): support integer *_VERSION macros.
8400 (scm_minor_version): support integer *_VERSION macros.
8401 (scm_micro_version): support integer *_VERSION macros.
8402 (scm_version): support integer *_VERSION macros.
8403
8404 2001-09-20 Mikael Djurfeldt <mdj@linnaeus>
8405
8406 * error.c, error.h: Made error keys globally accessible.
8407 Applications might want to test for these or use them in a direct
8408 call to scm_error.
8409
8410 * num2integral.i.c (NUM2INTEGRAL): Report an error when these
8411 routines are passed an inexact. This change in behavior is
8412 motivated by concordance with R5RS: It is more common that a
8413 primitive doesn't want to accept an inexact for an exact.
8414
8415 2001-09-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
8416
8417 The following patch partially undoes my patch from 2001-06-30,
8418 where I added the function scm_gc_mark_cell_conservatively. The
8419 function is buggy, since it breaks guile during conservative
8420 marking if a pointer on the stack points directly into the list of
8421 free cells on the heap: With conservative cell marking this will
8422 cause the whole free list to be scanned and marked - boom!
8423
8424 * gc.c (allocated_mark, MARK, heap_segment,
8425 scm_gc_mark_cell_conservatively, scm_init_storage), gc.h
8426 (scm_gc_mark_cell_conservatively): Remove function
8427 scm_gc_mark_cell_conservatively and update the corresponding
8428 comments and uses accordingly. Thanks to Christopher Cramer for
8429 the patch. (Minor corrections by me.)
8430
8431 2001-09-15 Gary Houston <ghouston@arglist.com>
8432
8433 * root.h (scm_root_state): removed the continuation_stack and
8434 continuation_stack_ptr members, which have no apparent purpose.
8435 (scm_continuation_stack, scm_continuation_stack_ptr): #defines
8436 removed.
8437
8438 * root.c (root_mark), init.c (restart_stack, start_stack), gc
8439 (scm_igc): remove all references to contination_stack and
8440 continuation_stack_ptr, avoiding allocation of a vector and
8441 useless processing during gc.
8442
8443 2001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8444
8445 * guardians.c (tconc_t, t_tconc): Renamed tconc_t to t_tconc.
8446
8447 (TCONC_IN): Make sure that the cell word 0 is initialized last.
8448
8449 (guardians_t, t_guardians): Renamed guardians_t to t_guardians.
8450
8451 (GUARDIAN, GUARDIAN_DATA): Renamed GUARDIAN to GUARDIAN_DATA.
8452
8453 (guardian_apply, scm_get_one_zombie, scm_make_guardian,
8454 mark_and_zombify): Prefer !SCM_<foo> over SCM_N<foo>.
8455
8456 2001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8457
8458 * guardians.c (mark_dependencies_in_tconc,
8459 whine_about_self_centered_zombies, scm_init_guardians): Register
8460 the static global variable `self_centered_zombies' via
8461 scm_gc_register_root, to make some cdr-ing unnecessary.
8462
8463 2001-09-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
8464
8465 * backtrace.c (display_backtrace_file,
8466 display_backtrace_file_and_line): Use SCM_EQ_P when comparing SCM
8467 values, use SCM_FALSEP when comparing SCM values against #f.
8468 Thanks to Rob Browning for the bug report.
8469
8470 2001-09-12 Martin Baulig <martin@home-of-linux.org>
8471
8472 * strings.[ch] (scm_str2string): New function.
8473
8474 2001-09-06 Marius Vollmer <mvo@zagadka.ping.de>
8475
8476 * gc.c (scm_done_free): Always subtract size from scm_mallocated
8477 when computing nm, even if it's negative.
8478 (scm_must_malloc): Abort on overflow of scm_mtrigger.
8479 (scm_must_realloc): Likewise.
8480
8481 2001-09-01 Michael Livshin <mlivshin@bigfoot.com>
8482
8483 * numbers.c (scm_sys_check_number_conversions): new function,
8484 defined if Guile is compiled in debugging mode. currently checks
8485 `scm_num2ulong', should check much much more.
8486
8487 * num2integral.i.c (NUM2INTEGRAL): when converting a bignum to
8488 unsigned, ensure that it's positive. thanks to Martin Baulig!
8489
8490 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
8491
8492 * __scm.h: Added new section about compile time selectable
8493 features.
8494
8495 (long_long, ulong_long, scm_sizet, SCM_WNA, SCM_OUTOFRANGE,
8496 SCM_NALLOC, SCM_HUP_SIGNAL, SCM_INT_SIGNAL, SCM_FPE_SIGNAL,
8497 SCM_BUS_SIGNAL, SCM_SEGV_SIGNAL, SCM_ALRM_SIGNAL, SCM_GC_SIGNAL,
8498 SCM_TICK_SIGNAL, SCM_SIG_ORD, SCM_ORD_SIG, SCM_NUM_SIGS):
8499 Removed.
8500
8501 * deprecation.c (scm_include_deprecated_features): Simplified.
8502
8503 * eval.c (EVALCAR, unmemocopy), eval.h (SCM_XEVALCAR): Use
8504 `SCM_IMP´ instead of `!SCM_CELLP´.
8505
8506 * eval.c (unmemocopy): Eliminate redundant SCM_CELLP tests.
8507 Extract side-effecting operations from macros.
8508
8509 (scm_init_eval): Don't initialize *top-level-lookup-closure*,
8510 scm_top_level_lookup_closure_var and scm_system_transformer.
8511
8512 * gc.c (CELL_P): New local definition to replace SCM_CELLP.
8513
8514 (heap_segment): Use CELL_P instead of SCM_CELLP.
8515
8516 * init.c (start_stack): Don't initialize
8517 scm_top_level_lookup_closure_var and scm_system_transformer.
8518
8519 * modules.c (scm_set_current_module): Don't access
8520 scm_top_level_lookup_closure_var and scm_system_transformer.
8521
8522 (scm_sym2var): Don't call scm_variable_set_name_hint.
8523
8524 (scm_post_boot_init_modules): Removed deprecated initializations.
8525
8526 * print.c (scm_ipruk): Don't access cell contents of non cells.
8527
8528 * strings.c (scm_string_set_x): All strings are writable.
8529
8530 * strings.h (SCM_STRINGP): Use SCM_TYP7 to determine the string
8531 type. There is only one string type now.
8532
8533 (SCM_STRING_COERCE_0TERMINATION_X): Deprecated.
8534
8535 * tags.h: Remove comments about two different string types.
8536
8537 (SCM_CELLP, SCM_NCELLP): Deprecated.
8538
8539 * variable.c (make_variable): Remove code variant for vcells.
8540
8541 * variable.h (SCM_VARIABLE_REF, SCM_VARIABLE_SET,
8542 SCM_VARIABLE_LOC): Remove code variant for vcells.
8543
8544 * __scm.h, deprecation.[ch]: Renamed SCM_DEBUG_DEPRECATED to
8545 SCM_ENABLE_DEPRECATED with the logic reversed.
8546
8547 * dynl.c (moddata, registered_mods), dynl.[ch]
8548 (scm_register_module_xxx, scm_registered_modules,
8549 scm_clear_registered_modules), error.[ch] (scm_wta), eval.c
8550 (*top-level-lookup-closure*), eval.[ch]
8551 (scm_top_level_lookup_closure_var, scm_system_transformer,
8552 scm_eval_3, scm_eval2), gc.h (SCM_SETAND_CAR, SCM_SETOR_CAR,
8553 SCM_SETAND_CDR, SCM_SETOR_CDR, SCM_FREEP, SCM_NFREEP,
8554 SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16,
8555 SCM_GCCDR), gc.[ch] (scm_remember, scm_protect_object,
8556 scm_unprotect_object), modules.c (root_module_lookup_closure,
8557 scm_sym_app, scm_sym_modules, module_prefix, make_modules_in_var,
8558 beautify_user_module_x_var, try_module_autoload_var,
8559 scm_module_full_name), modules.[ch] (scm_the_root_module,
8560 scm_make_module, scm_ensure_user_module, scm_load_scheme_module),
8561 ports.h (scm_port, scm_ptob_descriptor, scm_port_rw_active),
8562 ports.[ch] (scm_close_all_ports_except), random.h (scm_rstate,
8563 scm_rng, scm_i_rstate), strings.h (SCM_SLOPPY_STRINGP,
8564 SCM_RWSTRINGP, SCM_STRING_UCHARS, SCM_STRING_CHARS), strings.[ch]
8565 (scm_read_only_string_p, scm_makstr, scm_makfromstr,
8566 scm_make_shared_substring), tags.h (scm_tc7_substring,
8567 SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP, scm_tc7_ssymbol,
8568 scm_tc7_msymbol, scm_tcs_symbols), variable.c (sym_huh),
8569 variable.[ch] (scm_variable_set_name_hint, scm_builtin_variable),
8570 variable.h (SCM_VARVCELL, SCM_UDVARIABLEP, SCM_DEFVARIABLEP):
8571 Removed.
8572
8573 * dynl.c (scm_dynamic_link, scm_dynamic_func), error.c
8574 (scm_error_scm), filesys.c (scm_chown, scm_chmod, scm_open_fdes,
8575 scm_stat, scm_link, scm_rename, scm_delete_file, scm_mkdir,
8576 scm_rmdir, scm_opendir, scm_chdir, scm_symlink, scm_readlink,
8577 scm_lstat, scm_copy_file), fports.c (scm_open_file), ioext.c
8578 (scm_fdopen), net_db.c (scm_gethost, scm_getnet, scm_getproto,
8579 scm_getserv), ports.c (scm_truncate_file, scm_sys_make_void_port),
8580 posix.c (scm_getpwuid, scm_getgrgid, scm_execl, scm_execlp,
8581 scm_execle, scm_mkstemp, scm_utime, scm_access, scm_setlocale,
8582 scm_mknod, scm_crypt, scm_chroot, scm_getpass, scm_sethostname),
8583 regex-posix.c (scm_make_regexp, scm_regexp_exec), simpos.c
8584 (scm_system, scm_getenv), socket.c (scm_inet_aton), stime.c
8585 (setzone, scm_strftime, scm_strptime), vports.c
8586 (scm_make_soft_port): Remove calls to
8587 SCM_STRING_COERCE_0TERMINATION_X. Since the substring type is
8588 gone, all strings are 0-terminated anyway.
8589
8590 * dynl.h (LIBGUILE_DYNL_H, SCM_DYNL_H), random.h (RANDOMH,
8591 SCM_RANDOM_H): Renamed the macros that are defined to inhibit
8592 double inclusion of the same headers to the SCM_<filename>_H
8593 format.
8594
8595 * eval.c (SCM_CEVAL), gc.c (MARK, scm_gc_sweep), gh_data.c
8596 (gh_scm2chars), hash.c (scm_hasher), objects.c (scm_class_of),
8597 print.c (scm_iprin1): The type scm_tc7_substring does not exist
8598 any more.
8599
8600 * ports.h (SCM_PORTP, SCM_OPPORTP, SCM_OPINPORTP, SCM_OPOUTPORTP,
8601 SCM_INPUT_PORT_P, SCM_OUTPUT_PORT_P, SCM_OPENP), tags.h
8602 (SCM_TYP16_PREDICATE), variable.h (SCM_VARIABLEP): Prefer
8603 !SCM_<foo> over SCM_N<foo>.
8604
8605 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
8606
8607 * Makefile.am: Remove references to symbols-deprecated.c.
8608
8609 * symbols.c (scm_init_symbols): Don't initialize deprecated
8610 symbol functions.
8611
8612 * symbols-deprecated.c: Removed.
8613
8614 * fluids.[ch] (scm_internal_with_fluids), gsubr.[ch]
8615 (scm_make_gsubr, scm_make_gsubr_with_generic), hooks.[ch]
8616 (scm_create_hook), list.c (list*), list.h (SCM_LIST[0-9],
8617 scm_listify), list.[ch] (scm_sloppy_memq, scm_sloppy_memv,
8618 scm_sloppy_member), load.c (scm_end_of_file_key), load.[ch]
8619 (scm_read_and_eval_x), numbers.[ch] (scm_mkbig, scm_big2inum,
8620 scm_adjbig, scm_normbig, scm_copybig, scm_2ulong2big, scm_dbl2big,
8621 scm_big2dbl), numbers.h (SCM_FIXNUM_BIT), procs.h
8622 (scm_subr_entry, SCM_SUBR_DOC), procs.[ch] (scm_make_subr_opt,
8623 scm_make_subr, scm_make_subr_with_generic), root.c (setjmp_type,
8624 setjmp_type), root.[ch] (scm_call_catching_errors), smob.[ch]
8625 (scm_make_smob_type_mfpe, scm_set_smob_mfpe), strports.[ch]
8626 (scm_strprint_obj, scm_read_0str, scm_eval_0str), symbols.h
8627 (SCM_CHARS, SCM_UCHARS, SCM_SETCHARS, SCM_SLOPPY_SUBSTRP,
8628 SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_LENGTH_MAX, SCM_LENGTH,
8629 SCM_SETLENGTH, SCM_ROSTRINGP, SCM_ROLENGTH, SCM_ROCHARS,
8630 SCM_ROUCHARS, SCM_SUBSTRP, SCM_COERCE_SUBSTR, scm_strhash,
8631 scm_sym2vcell, scm_sym2ovcell_soft, scm_sym2ovcell,
8632 scm_intern_obarray_soft, scm_intern_obarray, scm_intern,
8633 scm_intern0, scm_sysintern, scm_sysintern0,
8634 scm_sysintern0_no_module_lookup, scm_symbol_value0,
8635 scm_string_to_obarray_symbol, scm_intern_symbol,
8636 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned_p,
8637 scm_symbol_bound_p, scm_symbol_set_x, scm_gentemp,
8638 scm_init_symbols_deprecated), vectors.c (s_vector_set_length_x),
8639 vectors.[ch] (scm_vector_set_length_x): Removed.
8640
8641 * fluids.h (FLUIDSH, SCM_FLUIDS_H), gsubr.c (GSUBRH, SCM_GSUBR_H),
8642 list.h (LISTH, SCM_LIST_H), load.h (LOADH, SCM_LOAD_H), root.h
8643 (ROOTH, SCM_ROOT_H), strports.h (STRPORTSH, SCM_STRPORTS_H):
8644 Renamed the macros that are defined to inhibit double inclusion of
8645 the same headers to the SCM_<filename>_H format.
8646
8647 * procs.h (SCM_CLOSUREP, SCM_PROCEDURE_WITH_SETTER_P), symbols.h
8648 (SCM_SYMBOLP), vectors.h (SCM_VECTORP): Prefer !SCM_<foo> over
8649 SCM_N<foo>.
8650
8651 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
8652
8653 * continuations.h (scm_contregs), debug.h (scm_debug_info,
8654 scm_debug_frame, SCM_DSIDEVAL), filesys.h (SCM_OPDIRP), fports.h
8655 (scm_fport), options.h (scm_option), snarf.h (SCM_CONST_LONG,
8656 SCM_VCELL, SCM_GLOBAL_VCELL, SCM_VCELL_INIT,
8657 SCM_GLOBAL_VCELL_INIT), srcprop.h (scm_srcprops,
8658 scm_srcprops_chunk), stacks.h (scm_info_frame, scm_stack), unif.h
8659 (scm_array, scm_array_dim, SCM_ARRAY_CONTIGUOUS, SCM_HUGE_LENGTH),
8660 validate.h (SCM_FUNC_NAME, SCM_WTA, RETURN_SCM_WTA,
8661 SCM_VALIDATE_NUMBER_COPY, SCM_VALIDATE_NUMBER_DEF_COPY,
8662 SCM_VALIDATE_STRINGORSUBSTR, SCM_VALIDATE_ROSTRING,
8663 SCM_VALIDATE_ROSTRING_COPY, SCM_VALIDATE_NULLORROSTRING_COPY,
8664 SCM_VALIDATE_RWSTRING, SCM_VALIDATE_OPDIR): Removed.
8665
8666 * continuations.h (CONTINUATIONSH, SCM_CONTINUATIONS_H), filesys.h
8667 (FILESYSH, SCM_FILESYS_H), fports.h (FPORTSH, SCM_FPORTS_H),
8668 options.h (OPTIONSH, SCM_OPTIONS_H), regex-posix.h (REGEXPOSIXH,
8669 SCM_REGEX_POSIX_H), snarf.h (LIBGUILE_SNARF_H, SCM_SNARF_H),
8670 srcprop.h (SCM_SOURCE_PROPERTIES_H, SCM_SRCPROP_H), unif.h
8671 (SCM_UNIFORM_VECTORS_H, SCM_UNIF_H), validate.h (SCM_VALIDATE_H__,
8672 SCM_VALIDATE_H): Renamed the macros that are defined to inhibit
8673 double inclusion of the same headers to the SCM_<filename>_H
8674 format.
8675
8676 * debug.h (SCM_RESET_DEBUG_MODE), regex-posix.h (SCM_RGXP),
8677 srcprop.h (SRCBRKP, PROCTRACEP), struct.h (SCM_STRUCTP),
8678 validate.h (SCM_VALIDATE_THUNK, SCM_VALIDATE_ARRAY,
8679 SCM_VALIDATE_VECTOR_OR_DVECTOR, SCM_VALIDATE_VTABLE): Prefer
8680 !SCM_<foo> over SCM_N<foo>.
8681
8682 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
8683
8684 * _scm.h (_SCMH, SCM__SCM_H), alist.h (ALISTH, SCM_ALIST_H),
8685 arbiters.h (ARBITERSH, SCM_ARBITERS_H), backtrace.h (BACKTRACEH,
8686 SCM_BACKTRACE_H), boolean.h (BOOLEANH, SCM_BOOLEAN_H), chars.h
8687 (SCM_CHARSH, SCM_CHARS_H), coop-defs.h (COOP_DEFSH,
8688 SCM_COOP_DEFS_H), coop-threads.h (COOP_THREADSH,
8689 SCM_COOP_THREADS_H), debug-malloc.h (DEBUGMALLOCH,
8690 SCM_DEBUG_MALLOC_H), dynwind.h (DYNWINDH, SCM_DYNWIND_H),
8691 environments.h (ENVIRONMENTS_H, SCM_ENVIRONMENTS_H), eq.h (EQH,
8692 SCM_EQ_H), evalext.h (EVALEXTH, SCM_EVALEXT_H), extensions.h
8693 (LIBGUILE_EXTENSIONS_H, SCM_EXTENSIONS_H), feature.h (FEATUREH,
8694 SCM_FEATURE_H), gdbint.h (GDBINTH, SCM_GDBINT_H), guardians.h
8695 (SCM_GUARDIANH, SCM_GUARDIANS_H), hash.h (HASHH, SCM_HASH_H),
8696 hashtab.h (HASHTABH, SCM_HASHTAB_H), init.h (INITH, SCM_INIT_H),
8697 ioext.h (IOEXTH, SCM_IOEXT_H), iselect.h (ISELECTH,
8698 SCM_ISELECT_H), keywords.h (KEYWORDSH, SCM_KEYWORDS_H), lang.h
8699 (LANGH, SCM_LANG_H), mallocs.h (MALLOCSH, SCM_MALLOCS_H), net_db.h
8700 (SCM_NETDBH, SCM_NET_DB_H), objprop.h (OBJPROPH, SCM_OBJPROP_H),
8701 posix.h (POSIXH, SCM_POSIX_H), procprop.h (PROCPROPH,
8702 SCM_PROCPROP_H), properties.h (PROPERTIES_H, SCM_PROPERTIES_H),
8703 ramap.h (RAMAPH, SCM_RAMAP_H), rdelim.h (SCM_RDELIM,
8704 SCM_RDELIM_H), read.h (READH, SCM_READ_H), rw.h (SCM_RW,
8705 SCM_RW_H), scmsigs.h (SCMSIGSH, SCM_SCMSIGS_H), script.h (SCRIPTH,
8706 SCM_SCRIPT_H), simpos.h (SIMPOSH, SCM_SIMPOS_H), socket.h
8707 (SCM_SOCKETH, SCM_SOCKET_H), sort.h (SORTH, SCM_SORT_H),
8708 stackchk.h (STACKCHKH, SCM_STACKCHK_H), stime.h (STIMEH,
8709 SCM_STIME_H), strop.h (STROPH, SCM_STROP_H), strorder.h
8710 (STRORDERH, SCM_STRORDER_H), threads.h (THREADSH, SCM_THREADS_H),
8711 throw.h (THROWH, SCM_THROW_H), version.h (VERSIONH,
8712 SCM_VERSION_H), vports.h (VPORTSH, SCM_VPORTS_H): Renamed
8713 the macros that are defined to inhibit double inclusion of the
8714 same headers to the SCM_<filename>_H format.
8715
8716 2001-08-27 Marius Vollmer <mvo@zagadka.ping.de>
8717
8718 * ports.c, ports.h, fprots.c, gc.c, ioext.c: Replaced
8719 "scm_t_portable" with "scm_port_table" which was an artifact from
8720 the great "scm_*_t -> scm_t_" renaming.
8721
8722 2001-08-25 Thien-Thi Nguyen <ttn@revel.glug.org>
8723
8724 * gc_os_dep.c (GC_noop1): Move before `GC_find_limit' where it is
8725 used; nfc. Thanks to Bill Schottstaedt.
8726
8727 * validate.h (SCM_VALIDATE_USHORT_COPY, SCM_VALIDATE_SHORT_COPY,
8728 SCM_VALIDATE_UINT_COPY, SCM_VALIDATE_INT_COPY): New macros.
8729 Thanks to Chris Cramer.
8730
8731 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
8732
8733 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
8734
8735 * eval.c (scm_m_atbind): Redesigned to behvae like `let', but with
8736 dynamic scope.
8737 * dynwind.h (scm_swap_bindings): Declare.
8738 * dynwind.c (scm_swap_bindings): Make non-static.
8739
8740 2001-08-25 Michael Livshin <mlivshin@bigfoot.com>
8741
8742 * gc.c (scm_gc_sweep): now can sweep unreachable variables (by
8743 doing exactly nothing about them). thanks Neil!
8744
8745 2001-08-18 Neil Jerram <neil@ossau.uklinux.net>
8746
8747 * __scm.h (SCM_ENABLE_VCELLS): Fix spelling mistake in comment.
8748
8749 2001-08-17 Thien-Thi Nguyen <ttn@revel.glug.org>
8750
8751 * gc.c: Fix omission bug: Add `heap_segment' forward decl
8752 (proto) in the case when either `GUILE_DEBUG' or
8753 `GUILE_DEBUG_FREELIST' preprocessor symbols are defined.
8754
8755 (map_free_list): Fix typo: Ref `f' correctly.
8756
8757 Thanks to Chris Cramer.
8758
8759 2001-08-15 Rob Browning <rlb@defaultvalue.org>
8760
8761 * Makefile.am (libguile_la_LDFLAGS): use libtool interface version
8762 variables.
8763 (libpath.h): change libguileversion to libguileinterface.
8764
8765 2001-08-07 Marius Vollmer <mvo@zagadka.ping.de>
8766
8767 * Makefile.am (EXTRA_DIST): Distribute ChangeLog-1996-1999 and
8768 ChangeLog-2000. Thanks to Daniel Skarda!
8769
8770 2001-08-07 Michael Livshin <mlivshin@bigfoot.com>
8771
8772 * guile-snarf-docs-texi.in: don't call the tokenizer here, we now
8773 do it from the Makefile.
8774
8775 * Makefile.am: rearrange the snarfing slightly, so that .doc files
8776 are of a reasonable size.
8777
8778 2001-08-02 Neil Jerram <neil@ossau.uklinux.net>
8779
8780 * stacks.c (scm_make_stack): Improve docstring by explaining use
8781 of cutting args.
8782
8783 2001-08-01 Marius Vollmer <mvo@zagadka.ping.de>
8784
8785 * chars.c (scm_char_alphabetic_p, scm_char_numeric_p,
8786 scm_char_whitespace_p, scm_char_upper_case_p,
8787 scm_char_lower_case_p, scm_char_is_both_p): Do not require
8788 characters to fulfill isascii in addition to the primary
8789 predicate.
8790
8791 2001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
8792
8793 * numbers.c (DIGITS, scm_small_istr2int, scm_istr2int,
8794 scm_istr2flo, scm_istring2number): Removed.
8795
8796 (iflo2str, scm_real_p, scm_integer_p): Use SCM_<foo> instead of
8797 SCM_SLOPPY_<foo>.
8798
8799 (t_exactness, t_radix, DIGIT2UINT, XDIGIT2UINT, mem2uinteger,
8800 mem2decimal_from_point, mem2ureal, mem2complex, scm_i_mem2number):
8801 Added.
8802
8803 (scm_string_to_number): Use new number parser.
8804
8805 (scm_exact_to_inexact): Replace dummy by a GPROC, which also
8806 handles complex numbers.
8807
8808 * numbers.h (NUMBERSH, SCM_NUMBERS_H): Rename <foo>H to
8809 SCM_<foo>_H.
8810
8811 (SCM_INEXACTP, SCM_REALP, SCM_COMPLEXP): Prefer !SCM_<pred> over
8812 SCM_N<pred>.
8813
8814 (scm_istr2int, scm_istr2flo, scm_istring2number): Removed.
8815
8816 (scm_i_mem2number): Added.
8817
8818 (scm_exact_to_inexact): Changed signature.
8819
8820 * read.c (scm_lreadr): Perform the shortcut test for '+ and '-
8821 here instead of within scm_i_mem2number. Call scm_i_mem2number
8822 instead of scm_istr2int and scm_istring2number.
8823
8824 2001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
8825
8826 * eval.c (scm_lookupcar, scm_m_body, scm_m_lambda, unmemocopy,
8827 scm_unmemocopy, scm_badargsp, scm_eval_body, CHECK_EQVISH,
8828 SCM_CEVAL, scm_nconc2last, SCM_APPLY, scm_copy_tree): Prefer
8829 !SCM_<pred> over SCM_N<pred>.
8830
8831 (scm_eval_body): Remove side effecting code from macro call.
8832
8833 (SCM_CEVAL, SCM_APPLY): Remove goto statement and redundant
8834 SCM_NIMP test.
8835
8836 2001-07-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
8837
8838 * pairs.h (SCM_VALIDATE_PAIR): Use SCM_CONSP, not SCM_ECONSP.
8839
8840 2001-07-29 Marius Vollmer <mvo@zagadka.ping.de>
8841
8842 Removed vcell slot from structs.
8843
8844 * struct.h (scm_vtable_index_vcell): Removed. Renumbered
8845 subsequent indices.
8846
8847 * struct.c (scm_struct_vtable_p): Do not check vcell slot for
8848 zero. Use scm_vtable_index_layout instead of "0" when accessing
8849 said slot.
8850 (scm_init_struct): Remove vcell slot layout code from
8851 required_vtable_fields.
8852
8853 * objects.h (scm_si_redefined, scm_si_hashsets): Renumbered.
8854
8855 * goops.c (build_class_class_slots): Removed vcell slot
8856 definition.
8857
8858 * goops.h: Renumbered slot indices. (SCM_CLASS_CLASS_LAYOUT):
8859 Removed vcell slot layout code.
8860 (scm_si_vcell): Removed.
8861
8862 2001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
8863
8864 "Glocs" have been removed.
8865
8866 * tags.h: Update tag system docs.
8867 (scm_tc3_cons_gloc): Renamed to scm_tc3_struct. Changed all uses.
8868 (scm_tcs_cons_gloc): Renamed to scm_tcs_struct. Changed all uses.
8869 (SCM_ECONSP, SCM_NECONSP): Removed. Changed all uses to SCM_CONSP
8870 or SCM_NCONSP, respectively.
8871
8872 * struct.c, struct.h, srcprop.c, procs.c, procprop.c, print.c,
8873 objects.c. modules.c, goops.c, eval.c, debug.c: Changed all uses
8874 of scm_tc3_cond_gloc and scm_tcs_cons_gloc. See above.
8875
8876 * print.c (scm_iprin1): Remove printing of glocs. Do not try to
8877 tell glocs from structs.
8878
8879 * gc.c (scm_gc_mark, scm_gc_sweep): Remove handling of glocs.
8880
8881 * eval.c (scm_m_atbind): Make a list of variables, not glocs.
8882 (scm_ceval, scm_deval): For SCM_IM_BIND, fiddle with variables
8883 instead of with glocs.
8884 (EVALCAR): Do not test for glocs.
8885 (scm_lookupcar, scm_lookupcar1): Do not handle glocs in race
8886 condition.
8887 (scm_unmemocar): Do not handle glocs.
8888 (scm_m_atfop): Memoize as a variable, not as a gloc.
8889 (scm_eval_args, scm_deval_args): Do not handle glocs.
8890 (scm_ceval, scm_deval): Likewise.
8891
8892 * eval.h (SCM_XEVALCAR): Do not test for glocs.
8893 (SCM_GLOC_VAR, SCM_GLOC_VAL, SCM_GLOC_SET_VAL, SCM_GLOC_VAL_LOC):
8894 Removed.
8895
8896 * debug.h, debug.c (scm_make_gloc, scm_gloc_p): Removed.
8897
8898 * dynwind.c (scm_swap_bindings): Likewise.
8899 (scm_dowinds): Updated to recognize lists of variables instead of
8900 lists of glocs.
8901
8902 * __scm.h (SCM_CAUTIOS, SCM_RECKLESS): Update comments.
8903
8904
8905 * gc_os_dep.c (GC_noop1): Moved into the same #if/#endif context
8906 where it is needed.
8907
8908 2001-07-25 Gary Houston <ghouston@arglist.com>
8909
8910 * numbers.c (scm_logand, scm_logior, scm_logxor): adjusted the
8911 docstrings to reflect the n-ary implementation.
8912
8913 2001-07-26 Marius Vollmer <mvo@zagadka.ping.de>
8914
8915 * eval.c (scm_ceval, scm_deval): Use "RETURN" macro when returning
8916 value of a variable, not the plain "return" statement.
8917
8918 2001-07-25 Marius Vollmer <mvo@zagadka.ping.de>
8919
8920 * eval.c: Allow variables in memoized code (in addition to glocs).
8921 (scm_lookupcar): Handle variables in lost races. Replace symbol
8922 with variable directly, do not make a gloc.
8923 (scm_unmemocar): Rewrite variables using a reverse lookup, just
8924 like glocs.
8925 (scm_ceval, scm_deval): Deal with variables in SCM_IM_SET and in
8926 the main switch.
8927
8928 2001-07-25 Marius Vollmer <marius.vollmer@uni-dortmund.de>
8929
8930 * variable.c (scm_i_variable_print): Use "value" instead of
8931 "binding" since a binding is the mapping between symbols and
8932 variables, not between variables and their values.
8933
8934 * tags.h (scm_tc7_variable): New.
8935 * gc.c (scm_gc_mark): Handle scm_tc7_variable objects.
8936 * print.c (scm_iprin1): Likewise.
8937
8938 * variable.h (scm_tc16_variable): Removed.
8939 (SCM_VARIABLEP): Test for new tc7 code.
8940 (scm_i_variable_print): New.
8941 * variable.c (scm_tc16_variable): Removed.
8942 (variable_print): Renamed to scm_i_variable_print and made
8943 non-static.
8944 (variable_equal_p): Removed.
8945 (make_variable): Construct a tc7 object instead of a smob.
8946 (scm_init_variable): Do not register smob.
8947
8948 2001-07-22 Marius Vollmer <mvo@zagadka.ping.de>
8949
8950 * tags.h: Include inttypes.h when we have it.
8951
8952 2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
8953
8954 * tags.h (SCM_UNBOUND): Make it the 34th isym/iflag, the 33th slot
8955 is taken by the new SCM_IM_CALL_WITH_VALUES.
8956 * print.c (scm_isymnames): Update table accordingly.
8957
8958 2001-07-22 Gary Houston <ghouston@arglist.com>
8959
8960 * regex-posix.c (s_scm_regexp_exec): use scm_long2num not
8961 SCM_MAKINUM to convert regoff_t value to SCM.
8962
8963 2001-07-21 Gary Houston <ghouston@arglist.com>
8964
8965 * scmsigs.c: include sys/time.h for itimer stuff.
8966
8967 2001-07-19 Rob Browning <rlb@defaultvalue.org>
8968
8969 * gc_os_dep.c (GC_noop1): ifdef out (unused) to quiet warning.
8970
8971 * c-tokenize.lex: add option %nounput to quiet warning.
8972 Add prototype for yylex to quiet warning.
8973
8974 * scmconfig.h.in: add flags for setitimer and getitimer.
8975
8976 * scmsigs.h (scm_init_scmsigs): new prototype.
8977 (scm_init_scmsigs): new prototype.
8978
8979 * scmsigs.c (s_scm_setitimer): new function.
8980 (s_scm_setitimer): new function.
8981
8982 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
8983
8984 * alist.c, arbiters.c, async.h, backtrace.h, boolean.c, chars.c,
8985 chars.h, continuations.h, debug-malloc.h, dynl.c, feature.c,
8986 feature.h, filesys.h, fluids.h, fports.h, gc_os_dep.c,
8987 gdb_interface.h, gh_eval.c, gh_funcs.c, gh_io.c, gh_list.c,
8988 gh_predicates.c, gsubr.c, gsubr.h, guardians.h,
8989 guile-func-name-check.in, guile-snarf-docs-texi.in,
8990 guile-snarf-docs.in, guile-snarf.awk.in, guile-snarf.in,
8991 hashtab.h, iselect.h, keywords.h, lang.c, list.h, load.h,
8992 objprop.c, objprop.h, options.c, options.h, random.h,
8993 regex-posix.h, root.c, root.h, script.c, snarf.h, stackchk.c,
8994 strerror.c, strop.h, strports.h, threads.h, values.c, values.h,
8995 version.c, version.h: Updated copyright notice.
8996
8997 2001-07-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
8998
8999 * goops.c (sym_layout, sym_vcell, sym_vtable, sym_print,
9000 sym_procedure, sym_setter, sym_redefined, sym_h0, sym_h1, sym_h2,
9001 sym_h3, sym_h4, sym_h5, sym_h6, sym_h7, sym_name,
9002 sym_direct_supers, sym_direct_slots, sym_direct_subclasses,
9003 sym_direct_methods, sym_cpl, sym_default_slot_definition_class,
9004 sym_slots, sym_getters_n_setters, sym_keyword_access, sym_nfields,
9005 sym_environment, scm_sym_change_class): New static variables to
9006 hold predefined symbols.
9007
9008 (build_class_class_slots): Build the list using scm_list_n
9009 instead of cons. Also, slots are already created as lists, thus
9010 making a call to maplist unnecessary.
9011
9012 (scm_class_name, scm_class_direct_supers, scm_class_direct_slots,
9013 scm_class_direct_subclasses, scm_class_direct_methods,
9014 scm_class_precedence_list, scm_class_slots, scm_class_environment,
9015 scm_method_procedure, create_standard_classes, purgatory): Use
9016 predefined symbols.
9017
9018 (build_slots_list, compute_getters_n_setters,
9019 scm_sys_initialize_object, scm_sys_inherit_magic_x,
9020 get_slot_value_using_name, set_slot_value_using_name,
9021 scm_sys_invalidate_method_cache_x, scm_generic_capability_p,
9022 scm_compute_applicable_methods, scm_sys_method_more_specific_p,
9023 make_struct_class): Prefer !SCM_<pred> over SCM_N<pred>.
9024
9025 (scm_sys_prep_layout_x): Minimize variable scopes.
9026
9027 (scm_sys_prep_layout_x, scm_sys_fast_slot_ref,
9028 scm_sys_fast_slot_set_x): Fix signedness.
9029
9030 (go_to_hell, go_to_heaven, purgatory, scm_change_object_class,
9031 lock_cache_mutex, unlock_cache_mutex, call_memoize_method,
9032 scm_memoize_method, scm_wrap_object): Use packing and unpacking
9033 when converting to and from SCM values.
9034
9035 (scm_enable_primitive_generic_x): Add rest argument checking.
9036
9037 (map, filter_cpl, maplist, scm_sys_initialize_object,
9038 scm_sys_prep_layout_x, slot_definition_using_name,
9039 scm_enable_primitive_generic_x, scm_compute_applicable_methods,
9040 call_memoize_method, scm_make, scm_make_class): Prefer explicit
9041 predicates over SCM_N?IMP tests.
9042
9043 (scm_sys_prep_layout_x): Fix typo in error message. Fix type
9044 checking.
9045
9046 (burnin, go_to_hell): Use SCM_STRUCT_DATA instead of the SCM_INST
9047 alias.
9048
9049 2001-07-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
9050
9051 * fports.c (fport_print): Don't use SCM_C[AD]R for non pairs.
9052
9053 * num2integral.i.c (INTEGRAL2NUM, INTEGRAL2BIG): Fix signedness.
9054
9055 * symbols-deprecated.c (scm_gentemp): Simplify vector test.
9056
9057 * vectors.c (scm_vector_p): Eliminate redundant IMP test.
9058
9059 2001-07-12 Michael Livshin <mlivshin@bigfoot.com>
9060
9061 * strings.c (s_scm_string): fix arg position in assert.
9062
9063 2001-07-11 Gary Houston <ghouston@arglist.com>
9064
9065 * strports.c (st_write): use memcpy, not strncpy. thanks to
9066 Dale P. Smith.
9067
9068 2001-07-09 Thien-Thi Nguyen <ttn@revel.glug.org>
9069
9070 * alist.c, alloca.c, arbiters.c, async.c, async.h, backtrace.c,
9071 boolean.c, chars.c, continuations.c, coop-defs.h, coop-threads.c,
9072 debug-malloc.h, debug.c, debug.h, dynl.c, dynwind.c, eq.c,
9073 error.c, eval.c, evalext.c, feature.c, feature.h, filesys.c,
9074 filesys.h, fluids.c, fluids.h, fports.c, fports.h, gc.c, gc.h,
9075 gdbint.c, gsubr.c, guardians.c, hash.c, hashtab.c, hooks.c,
9076 hooks.h, inet_aton.c, init.c, ioext.c, keywords.c, keywords.h,
9077 lang.c, list.c, load.c, macros.c, mallocs.c, memmove.c, modules.c,
9078 net_db.c, numbers.c, numbers.h, objects.c, objprop.c, options.c,
9079 pairs.c, pairs.h, ports.c, ports.h, posix.c, print.c, print.h,
9080 procprop.c, procs.c, procs.h, properties.c, putenv.c, ramap.c,
9081 random.c, random.h, read.c, regex-posix.c, regex-posix.h, root.c,
9082 root.h, scmsigs.c, script.c, simpos.c, smob.c, snarf.h, socket.c,
9083 sort.c, srcprop.c, srcprop.h, stackchk.c, stacks.c, stacks.h,
9084 stime.c, strerror.c, strings.c, strings.h, strop.c, strorder.c,
9085 strports.c, struct.c, struct.h, symbols-deprecated.c, symbols.c,
9086 symbols.h, tags.h, threads.c, threads.h, throw.c, unif.c, unif.h,
9087 variable.c, variable.h, vectors.c, vectors.h, version.c, vports.c,
9088 weaks.c, weaks.h: Remove "face-lift" comment.
9089
9090 2001-07-08 Rob Browning <rlb@defaultvalue.org>
9091
9092 * .cvsignore: add stamp-h.in.
9093
9094 2001-07-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9095
9096 * hooks.c (scm_make_hook, scm_add_hook_x),
9097 (scm_remove_hook_x, scm_reset_hook_x, scm_run_hook): Added return
9098 value info to the docstrings.
9099
9100 2001-07-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9101
9102 Some more compatibility patches for Windows.
9103
9104 * posix.c (getlogin): getlogin() implementation for Windows.
9105
9106 * backtrace.c, ioext.c: Include <stdio.h>.
9107
9108 * unif.c, script.c, rw.c, error.c: Include <io.h>, if it does
9109 exist.
9110
9111 * cpp_sig_symbols.in: Added SIGBREAK.
9112
9113 2001-07-01 Marius Vollmer <mvo@zagadka.ping.de>
9114
9115 * strports.c (scm_read_0str, scm_eval_0str): Call
9116 scm_c_read_string and scm_c_eval_string respectively, not
9117 themselves. Thanks to Dale P. Smith!
9118
9119 2001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
9120
9121 * unif.c (scm_array_set_x): The variable args does not
9122 necessarily have to be a list. Further, got rid of a redundant
9123 SCM_NIMP test.
9124
9125 2001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
9126
9127 * list.c (SCM_I_CONS): Make sure the cell type is initialized
9128 last.
9129
9130 * gc.c (s_scm_map_free_list, scm_igc, scm_gc_sweep,
9131 init_heap_seg): Fixed signedness.
9132
9133 (init_heap_seg): Replaced strange for-loop with a while loop.
9134
9135 * weaks.h (WEAKSH, SCM_WEAKS_H): Rename <foo>H to SCM_<foo>_H.
9136
9137 (SCM_WVECTP): Prefer !SCM_<pred> over SCM_N<pred>.
9138
9139 The following patch adds conservative marking for the elements of
9140 free or allocated cells.
9141
9142 * gc.c (allocated_mark, heap_segment): New static functions.
9143
9144 (which_seg): Deleted, since the functionality is now provided by
9145 function heap_segment.
9146
9147 (map_free_list): Use heap_segment instead of which_seg.
9148
9149 (MARK): If cell debugging is disabled, mark free cells
9150 conservatively.
9151
9152 (scm_mark_locations, scm_cellp): Extracted the search for the
9153 heap segment of a SCM value into function heap_segment.
9154
9155 (scm_init_storage): Allocated cells must be marked
9156 conservatively.
9157
9158 * gc.[ch] (scm_gc_mark_cell_conservatively): New function.
9159
9160 The following patch changes the representation of weak vectors to
9161 double cells instead of using an extension of the vector's
9162 allocated memory.
9163
9164 * gc.c (MARK): Use SCM_SET_WVECT_GC_CHAIN instead of assigning to
9165 the result of SCM_WVECT_GC_CHAIN.
9166
9167 (scm_gc_sweep): Weak vectors don't have extra fields any more.
9168
9169 * weaks.c (allocate_weak_vector): New static function. It does
9170 not patch any previously created vector object during the
9171 construction of a weak vector, and thus doesn't need to switch
9172 off interrupts during vector creation.
9173
9174 (scm_make_weak_vector, scm_make_weak_key_hash_table,
9175 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
9176 Use allocate_weak_vector to provide the new weak vector object.
9177
9178 * weaks.h (SCM_WVECT_TYPE, SCM_SET_WVECT_TYPE,
9179 SCM_SET_WVECT_GC_CHAIN): New macros. The weak vector subtype is
9180 now stored in the double cell.
9181
9182 (SCM_IS_WHVEC, SCM_IS_WHVEC_V, SCM_IS_WHVEC_B, SCM_IS_WHVEC_ANY):
9183 Use SCM_WVECT_TYPE.
9184
9185 (SCM_WVECT_GC_CHAIN): The weak objects are now chained together
9186 using an entry of the double cell.
9187
9188 2001-06-30 Thien-Thi Nguyen <ttn@revel.glug.org>
9189
9190 * stamp-h.in: bye bye
9191
9192 2001-06-30 Marius Vollmer <mvo@zagadka.ping.de>
9193
9194 * gh_eval.c (gh_eval_str): Use scm_c_eval_string instead of
9195 scm_eval_0str.
9196
9197 * load.c, load.h (scm_c_primitive_load,
9198 scm_c_primitive_load_path): New.
9199
9200 * strports.c, strports.h (scm_c_read_string): Renamed from
9201 scm_read_0str. Also, added "const" qualifier to argument.
9202 (scm_c_eval_string): Renamed from scm_eval_0str.
9203 (scm_read_0str, scm_eval_0str): Deprecated.
9204
9205 2001-06-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9206
9207 * fluids.c (scm_c_with_fluid): Use scm_list_1() instead of
9208 SCM_LIST1.
9209
9210 2001-06-28 Keisuke Nishida <kxn30@po.cwru.edu>
9211
9212 * list.h (scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5,
9213 scm_list_n): New functions.
9214 (SCM_LIST0, SCM_LIST1, SCM_LIST2, SCM_LIST3, SCM_LIST4, SCM_LIST5,
9215 SCM_LIST6, SCM_LIST7, SCM_LIST8, SCM_LIST9, scm_listify): Deprecated.
9216 (lots of files): Use the new functions.
9217
9218 * goops.c (CALL_GF1, CALL_GF2, CALL_GF3, CALL_GF4): Use scm_call_N.
9219
9220 * strings.c: #include "libguile/deprecation.h".
9221
9222 2001-06-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9223
9224 * read.c (scm_lreadr): When reading a hash token, check for a
9225 user-defined hash procedure first, so that overriding the builtin
9226 hash characters is possible (this was needed for implementing
9227 SRFI-4's read synax `f32(...)').
9228
9229 * num2integral.i.c: Use scm_t_signed_bits instead of scm_t_bits,
9230 because the latter is unsigned now and breaks comparisons like
9231 (n < (scm_t_signed_bits)MIN_VALUE).
9232
9233 2001-06-26 Neil Jerram <neil@ossau.uklinux.net>
9234
9235 * eval.h, eval.c (scm_call_4): New function.
9236
9237 * eval.c (SCM_APPLY, SCM_CEVAL, ENTER_APPLY): Call trap handlers
9238 directly rather than dispatching to them via scm_ithrow and a lazy
9239 catch.
9240
9241 * eval.c (scm_evaluator_trap_table), eval.h (SCM_ENTER_FRAME_HDLR,
9242 SCM_APPLY_FRAME_HDLR, SCM_EXIT_FRAME_HDLR): Add three new options
9243 for trap handler procedures.
9244
9245 * debug.h (SCM_RESET_DEBUG_MODE): Add checks for trap handler
9246 procedures not being #f.
9247
9248 2001-06-27 Michael Livshin <mlivshin@bigfoot.com>
9249
9250 * Makefile.am (c-tokenize.c): add rule to generate it.
9251 (EXTRA_DIST): add c-tokenize.lex, so it gets distributed.
9252
9253 filter-doc-snarfage.c: remove.
9254
9255 2001-06-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9256
9257 * ports.c (scm_output_port_p): Use result of SCM_COERCE_OUTPORT.
9258
9259 The following set of changes makes compiling Guile under various
9260 Windows compilers easier. Compilation under GNU systems should
9261 not be affected at all.
9262
9263 Thanks to Stefan Jahn for all necessary information, patches and
9264 testing.
9265
9266 * posix.c: Conditialize getpwent, getgrent, kill, getppid, getuid,
9267 getpgrp, ttyname, primitive-fork and some header inclusion for
9268 Windows.
9269
9270 * random.c: Define M_PI, if not predefined and use __int64 for
9271 LONG64 under Windows.
9272
9273 * scmsigs.c: Emulate some functions (alarm, sleep, kill) under
9274 Windows and conditionalize some signal names.
9275
9276 * socket.c (scm_getsockopt): Added missing comma.
9277 Include socket library header under Windows.
9278
9279 * stime.c (CLKTCK): Add cast to int, to make it compile under
9280 Windows.
9281
9282 * ports.c (truncate): New function, compiled only under Windows.
9283
9284 * net_db.c: Do not declare errno under Windows.
9285
9286 * iselect.h, inet_aton.c: Include socket library headers under
9287 Windows.
9288
9289 * guile.c (inner_main): Under Windows, initialize socket library
9290 and initialize gdb_interface data structures.
9291
9292 * gdb_interface.h: Under Windows, gdb_interface cannot be
9293 initialized statically. Initialize at runtime instead.
9294
9295 * fports.c (write_all): ssize_t -> size_t.
9296 (fport_print): Conditionalize call to ttyname().
9297 (getflags): New function, compiled only under Windows.
9298
9299 * filesys.c: Conditionalize inclusion of <pwd.h>. Conditionalize
9300 primitives chown, link, fcntl.
9301 (scm_basename, scm_dirname): Under Windows, handle \ as well as /
9302 as path seperator.
9303
9304 * backtrace.c: Include <io.h> under Windows.
9305
9306 * async.h (ASYNCH, SCM_ASYNC_H): Rename <foo>H to SCM_<foo>_H.
9307
9308 * _scm.h: Added preprocessor conditional for __MINGW32__ for errno
9309 declaration.
9310
9311 2001-06-27 Keisuke Nishida <kxn30@po.cwru.edu>
9312
9313 * eval.c (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
9314 scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): New functions.
9315 * eval.h (scm_call_0, scm_call_1, scm_call_2, scm_call_3,
9316 scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3): Declared.
9317 * async.c (scm_run_asyncs), coop-threads.c (scheme_body_bootstrip,
9318 scheme_handler_bootstrip), debug.c (with_traps_inner), dynwind.c
9319 (scm_dynamic_wind, scm_dowinds), environments.c
9320 (import_environment_conflict), eval.c (scm_macroexp, scm_force,
9321 scm_primitive_eval_x, scm_primitive_eval), fluids.c (apply_thunk),
9322 goops.c (GETVAR, purgatory, make_class_from_template,
9323 scm_ensure_accessor), hashtab.c (scm_ihashx, scm_sloppy_assx,
9324 scm_delx_x, fold_proc), hooks.c (scm_c_run_hook), load.c
9325 (scm_primitive_load), modules.c (scm_resolve_module,
9326 scm_c_define_module, scm_c_use_module, scm_c_export,
9327 module_variable, scm_eval_closure_lookup, scm_sym2var,
9328 scm_make_module, scm_ensure_user_module, scm_load_scheme_module),
9329 ports.c (scm_port_for_each), print.c (scm_printer_apply),
9330 properties.c (scm_primitive_property_ref), ramap.c (ramap,
9331 ramap_cxr, rafe, scm_array_index_map_x, read.c (scm_lreadr),
9332 scmsigs.c (sys_deliver_signals), sort.c (applyless), strports.c
9333 (scm_object_to_string, scm_call_with_output_string,
9334 scm_call_with_input_string), throw.c (scm_body_thunk,
9335 scm_handle_by_proc, hbpca_body), unif.c (scm_make_shared_array,
9336 scm_make_shared_array), vports.c (sf_flush, sf_write,
9337 sf_fill_input, sf_close): Use one of the above functions.
9338 * goops.c, hashtab.c, scmsigs.c, sort.c: #include "libguile/root.h".
9339
9340 2001-06-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
9341
9342 * filesys.c (scm_close), ports.c (scm_close_port,
9343 scm_port_closed_p), strop.c (scm_string_null_p): Use SCM_BOOL
9344 instead of SCM_NEGATE_BOOL.
9345
9346 * filesys.c (scm_stat): Clean up type dispatch.
9347
9348 * filesys.c (scm_stat), ports.c (scm_input_port_p,
9349 scm_output_port_p): Get rid of redundant IM type check.
9350
9351 * filesys.c (scm_readdir, scm_getcwd, scm_readlink), gh_data.c
9352 (gh_str2scm), load.c (scm_primitive_load, scm_internal_parse_path,
9353 scm_search_path), net_db.c (scm_gethost, scm_getnet, scm_getproto,
9354 scm_return_entry), numbers.c (scm_number_to_string), objects.c
9355 (scm_make_subclass_object), ports.c (scm_port_mode), read.c
9356 (scm_lreadr), simpos.c (scm_getenv), socket.c (scm_inet_ntoa,
9357 scm_addr_vector), stime.c (scm_strftime), strings.c
9358 (scm_makfromstrs, scm_makfrom0str, scm_substring), strings.h
9359 (SCM_STRING_COERCE_0TERMINATION_X), strop.c (string_copy,
9360 scm_string_split), strports.c (scm_strport_to_string), symbols.c
9361 (scm_symbol_to_string), vports.c (sf_write): Use scm_mem2string
9362 instead of scm_makfromstr.
9363
9364 * net_db.c (scm_sethost, scm_setnet, scm_setproto, scm_setserv),
9365 ports.c (scm_close_all_ports_except), read.c (scm_lreadr,
9366 scm_read_hash_extend), stime.c (scm_strftime), strings.c
9367 (scm_string_append, scm_string), strings.h (SCM_STRINGP,
9368 SCM_STRING_COERCE_0TERMINATION_X, SCM_RWSTRINGP), strop.c
9369 (string_capitalize_x): Prefer explicit type check over SCM_N?IMP,
9370 !SCM_<pred> over SCM_N<pred>.
9371
9372 * strings.[ch] (scm_makfromstr): Deprecated.
9373
9374 (scm_mem2string): New function, replaces scm_makfromstr.
9375
9376 * strings.c (scm_substring), strop.c (string_copy,
9377 scm_string_split), strports.c (scm_strport_to_string), symbols.c
9378 (scm_symbol_to_string): Fix gc problem.
9379
9380 * strings.h (STRINGSH, SCM_STRINGS_H): Rename <foo>H to
9381 SCM_<foo>_H.
9382
9383 * validate.h (SCM_VALIDATE_SUBSTRING_SPEC_COPY): Eliminate
9384 warning about comparing signed and unsigned values. This fix is
9385 not optimal, since it won't work reliably if sizeof (c_start) >
9386 sizeof (size_t) or sizeof (c_end) > sizeof (size_t). A better
9387 solution is to define this macro as an inline function, thus
9388 allowing to specifiy the types of c_start and c_end.
9389
9390 2001-06-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
9391
9392 * debug.h (SCM_DEBUGOBJ_FRAME): Deliver result as a
9393 scm_t_debug_frame*.
9394
9395 * debug.h (DEBUGH, SCM_DEBUG_H), stacks.h (STACKSH, SCM_STACKSH):
9396 Rename <foo>H to SCM_<foo>_H.
9397
9398 * stacks.c (NEXT_FRAME, narrow_stack): Prefer explicit type check
9399 over SCM_N?IMP, !SCM_<pred> over SCM_N<pred>.
9400
9401 (narrow_stack): Make i unsigned. Don't use side-effecting
9402 operations in conditions.
9403
9404 (narrow_stack, scm_make_stack, scm_stack_id,
9405 scm_last_stack_frame): Get rid of redundant SCM_N?IMP checks.
9406
9407 (scm_make_stack, scm_stack_id, scm_last_stack_frame): Clean up
9408 type dispatch. No need to cast result of SCM_DEBUGOBJ_FRAME any
9409 more.
9410
9411 (scm_stack_ref, scm_frame_previous, scm_frame_next): Fix
9412 signedness.
9413
9414 (scm_last_stack_frame): Remove bogus `;´.
9415
9416 * stacks.h (SCM_FRAMEP): Fix type check.
9417
9418 2001-06-25 Michael Livshin <mlivshin@bigfoot.com>
9419
9420 * Makefile.am (MAINTAINERCLEANFILES): be sure to remove
9421 c-tokenize.c when doing maintainer-clean.
9422
9423 * snarf.h (SCM_SNARF_DOCS): change the "grammar" slightly.
9424
9425 * guile-snarf-docs.in, guile-snarf-docs-texi.in: rewrite &
9426 simplify.
9427
9428 * eval.c: all hash signs are in column 0.
9429
9430 * Makefile.am (guile_filter_doc_snarfage): build using
9431 c-tokenize.c, not filter-doc-snarfage.c.
9432 rearrange snarfing dependencies a bit.
9433
9434 * c-tokenize.lex: new file.
9435
9436 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
9437
9438 * srcprop.h, srcprop.c (scm_srcprops_to_plist): Renamed from
9439 scm_t_srcpropso_plist. See the big type renaming.
9440 * coop-defs.h (scm_mutex_trylock, scm_cond_timedwait): Likewise.
9441 Thanks to Seth Alves!
9442
9443 * numbers.c (SIZE_MAX, PTRDIFF_MIN, PTRDIFF_MAX): Only define when
9444 they aren't defined already.
9445
9446 2001-06-23 Dirk Herrmann <D.Herrmann@tu-bs.de>
9447
9448 * backtrace.c (display_backtrace_body): Use SCM_VALIDATE_STACK
9449 and SCM_VALIDATE_OPOUTPORT instead of SCM_ASSERT. Fix signedness
9450 problem.
9451
9452 * backtrace.c (display_expression, scm_set_print_params_x,
9453 display_application, display_frame, scm_backtrace), numbers.c
9454 (scm_istring2number), objects.c (scm_class_of,
9455 scm_mcache_lookup_cmethod, scm_mcache_compute_cmethod): Prefer
9456 explicit type check over SCM_N?IMP, !SCM_<pred> over SCM_N<pred>.
9457
9458 * fluids.c (scm_fluid_ref, scm_fluid_set_x): Fluid numbers are
9459 always positive.
9460
9461 * numbers.c (scm_i_mkbig): Remove unnecessary casts, remove
9462 unnecessary SCM_DEFER_INTS, SCM_ALLOW_INTS.
9463
9464 * objects.c (scm_class_of): Type fix.
9465
9466 (scm_mcache_lookup_cmethod): Improved comment, simplified,
9467 eliminated goto.
9468
9469 * pairs.h (scm_error_pair_access): The function can return if
9470 called recursively.
9471
9472 2001-06-20 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9473
9474 * init.c (scm_init_guile_1): Removed initialization of tag.c.
9475
9476 * gdbint.c, init.c: Removed inclusion of tag.h.
9477
9478 * tag.h, tag.c: Removed files.
9479
9480 * Makefile.am: Removed tag.{h,c,doc,x} in various places.
9481
9482 2001-06-20 Gary Houston <ghouston@arglist.com>
9483
9484 * deprecation.c, extensions.c, rw.c: include string.h.
9485
9486 2001-06-19 Gary Houston <ghouston@arglist.com>
9487
9488 * filter-doc-snarfage.c (process): added ungetc in
9489 MULTILINE_COOKIE case since otherwise it fails when there's no
9490 space between the '(' and the quote of the following string
9491 (gcc 3.0).
9492
9493 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
9494
9495 Throughout: replace "scm_*_t" with "scm_t_*", except "scm_lisp_t".
9496
9497 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
9498
9499 * unif.h (SCM_ARRAY_NDIM): Shift then cast so that no sign
9500 extension takes place.
9501 * strings.h (SCM_STRING_LENGTH): Likewise.
9502 (SCM_STRING_MAX_LENGTH): Use unsigned numbers.
9503
9504 * __scm.h (ptrdiff_t): Typedef to long when configure didn't find
9505 it.
9506
9507 * tags.h: Include <stdint.h> when we have it.
9508 (scm_bits_t): Changed to be a unsigned type. Use uintptr_t when
9509 available. Else use "unsigned long".
9510 (scm_signed_bits_t): New.
9511
9512 * numbers.h (SCM_SRS): Cast shiftee to scm_signed_bits_t.
9513 (SCM_INUM): Cast result to scm_signed_bits_t.
9514
9515 2001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org>
9516
9517 * mkstemp.c: Update path to #include file scmconfig.h.
9518 Thanks to Golubev I. N.
9519
9520 2001-06-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
9521
9522 * struct.h (SCM_STRUCT_VTABLE_FLAGS): New macro.
9523
9524 * goops.h (SCM_NUMBER_OF_SLOTS): Removed bogus `\´ at the end of
9525 the macro definition.
9526
9527 (SCM_CLASSP, SCM_INSTANCEP, SCM_PUREGENERICP, SCM_ACCESSORP,
9528 SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Use SCM_STRUCT_VTABLE_FLAGS
9529 instead of SCM_INST_TYPE.
9530
9531 (SCM_ACCESSORP, SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Make sure
9532 the object is a struct before accessing its struct flags.
9533
9534 (SCM_INST_TYPE, SCM_SIMPLEMETHODP, SCM_FASTMETHODP): Deprecated.
9535
9536 2001-06-10 Gary Houston <ghouston@arglist.com>
9537
9538 * rdelim.c (scm_init_rdelim_builtins): don't try to activate the
9539 (ice-9 rdelim) module in (guile) and (guile-user). it didn't
9540 work reliably anymore. try it from boot-9.scm instead.
9541
9542 2001-06-09 Marius Vollmer <mvo@zagadka.ping.de>
9543
9544 * ports.c (scm_lfwrite): Maintain columnd and row count in port.
9545 Thanks to Matthias Köppe!
9546
9547 2001-06-08 Michael Livshin <mlivshin@bigfoot.com>
9548
9549 * snarf.h, filter-doc-snarfage.c: more changes to cope with
9550 space-happy C preprocessors.
9551
9552 * filter-doc-snarfage.c, guile-snarf.in: try to cope with spaces
9553 inside cookies. thanks to Matthias Köppe!
9554
9555 2001-06-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
9556
9557 * keywords.c (keyword_print): Don't use SCM_C[AD]R to access
9558 keywords. Fix gc protection.
9559
9560 * objects.c (scm_mcache_lookup_cmethod): Don't use side effecting
9561 operations in macro calls.
9562
9563 * pairs.c (scm_error_pair_access): Avoid recursion.
9564
9565 Thanks to Matthias Koeppe for reporting the bugs that correspond
9566 to the following set of patches.
9567
9568 * unif.c (scm_bit_set_star_x, scm_bit_invert_x), vectors.h
9569 (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR): Obtain the
9570 bitvector base address using SCM_BITVECTOR_BASE.
9571
9572 * unif.h (SCM_BITVECTOR_BASE): Return the base address as an
9573 unsigned long*.
9574
9575 2001-06-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
9576
9577 * goops.c (SCM_CLASS_REDEF): Removed.
9578
9579 * vectors.h (VECTORSH, SCM_VECTORS_H): Renamed <foo>H to
9580 SCM_<foo>_H.
9581
9582 Thanks to Matthias Koeppe for reporting the bugs that correspond
9583 to the following set of patches.
9584
9585 * goops.c (scm_sys_prep_layout_x, scm_basic_basic_make_class,
9586 create_basic_classes, scm_sys_fast_slot_set_x, set_slot_value,
9587 scm_sys_allocate_instance, clear_method_cache,
9588 scm_sys_invalidate_method_cache_x, scm_make,
9589 create_standard_classes, scm_make_port_classes, scm_make_class,
9590 scm_add_slot): Use SCM_SET_SLOT to set slot values.
9591
9592 (prep_hashsets): Use SCM_SET_HASHSET to set class hash values.
9593
9594 * goops.h (SCM_SET_SLOT, SCM_SET_HASHSET): New macros.
9595
9596 * ramap.c (BINARY_ELTS_CODE, BINARY_PAIR_ELTS_CODE,
9597 UNARY_ELTS_CODE): Remove bogus break statement.
9598
9599 * vectors.h (SCM_BITVEC_REF, SCM_BITVEC_SET, SCM_BITVEC_CLR):
9600 Don't access bit vectors elements as SCM objects.
9601
9602 * weaks.c (scm_make_weak_vector, scm_make_weak_key_hash_table,
9603 scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table):
9604 Don't assign to an unpacked value.
9605
9606 2001-06-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
9607
9608 * __scm.h (SCM_NORETURN): Moved here from error.h.
9609
9610 (SCM_UNUSED): New macro.
9611
9612 (SCM_DEBUG_PAIR_ACCESSES): New macro.
9613
9614 * backtrace.c (display_error_handler), continuations.c
9615 (continuation_print), debug.c (debugobj_print), dynwind.c
9616 (guards_print), environments.c (observer_print,
9617 core_environments_finalize, leaf_environment_cell,
9618 leaf_environment_print, eval_environment_print,
9619 eval_environment_observer, import_environment_define,
9620 import_environment_undefine, import_environment_print,
9621 import_environment_observer, export_environment_define,
9622 export_environment_undefine, export_environment_print,
9623 export_environment_observer), eval.c (scm_m_quote, scm_m_begin,
9624 scm_m_if, scm_m_set_x, scm_m_and, scm_m_or, scm_m_case,
9625 scm_m_cond, scm_m_lambda, scm_m_letstar, scm_m_do, scm_m_delay,
9626 scm_m_letrec1, scm_m_apply, scm_m_cont, scm_m_nil_cond,
9627 scm_m_nil_ify, scm_m_t_ify, scm_m_0_cond, scm_m_0_ify,
9628 scm_m_1_ify, scm_m_atfop, scm_m_at_call_with_values), evalext.c
9629 (scm_m_generalized_set_x), fluids.c (fluid_print), fports.c
9630 (fport_print), gc.c (gc_start_stats, scm_remember_upto_here_1,
9631 scm_remember_upto_here_2, scm_remember_upto_here, mark_gc_async),
9632 gh_init.c (gh_standard_handler), goops.c (get_slot_value,
9633 set_slot_value, test_slot_existence, scm_change_object_class,
9634 scm_m_atslot_ref, scm_m_atslot_set_x, make_struct_class,
9635 default_setter), guardians.c (guardian_print, guardian_gc_init,
9636 guardian_zombify, whine_about_self_centered_zombies), guile.c
9637 (inner_main), init.c (stream_handler), keywords.c (keyword_print),
9638 mallocs.c (malloc_print), numbers.c (scm_print_real,
9639 scm_print_complex, scm_bigprint), ports.c (flush_port_default,
9640 end_input_default, scm_port_print, fill_input_void_port,
9641 write_void_port), root.c (root_print), smob.c (scm_mark0,
9642 scm_free0, scm_smob_print, scm_smob_apply_1_error,
9643 scm_smob_apply_2_error, scm_smob_apply_3_error, free_print),
9644 stime.c (restorezone), strings.c (scm_makfromstr), struct.c
9645 (scm_struct_free_0, scm_struct_free_standard,
9646 scm_struct_free_entity, scm_struct_gc_init, scm_free_structs),
9647 throw.c (jmpbuffer_print, lazy_catch_print, ss_handler,
9648 scm_handle_by_throw, scm_ithrow), weaks.c
9649 (scm_weak_vector_gc_init, scm_mark_weak_vector_spines,
9650 scm_scan_weak_vectors), ramap.c (scm_array_fill_int), filesys.c
9651 (scm_dir_print): Mark unused parameters with SCM_UNUSED.
9652
9653 * error.h (SCM_NORETURN): Moved to __scm.h.
9654
9655 * error.h (ERRORH, SCM_ERROR_H), pairs.h (PAIRSH, SCM_PAIRS_H):
9656 Renamed <foo>H to SCM_<foo>_H.
9657
9658 * gc.c (debug_cells_gc_interval): New static variable.
9659
9660 (scm_assert_cell_valid): If selected by the user, perform
9661 additional garbage collections.
9662
9663 (scm_set_debug_cell_accesses_x): Extended to let the user specify
9664 if additional garbage collections are desired.
9665
9666 (mark_gc_async): If additional garbage collections are selected
9667 by the user, don't call the after-gc-hook. Instead require the
9668 user to run the hook manually.
9669
9670 * pairs.c (scm_error_pair_access): New function. Only compiled
9671 if SCM_DEBUG_PAIR_ACCESSES is set to 1.
9672
9673 * pairs.h (SCM_VALIDATE_PAIR): New macro.
9674
9675 (SCM_CAR, SCM_CDR, SCM_SETCAR, SCM_SETCDR): If
9676 SCM_DEBUG_PAIR_ACCESSES is set to 1, make sure that the argument
9677 is a real pair object. (Glocs are also accepted, but that may
9678 change.) If not, abort with an error message.
9679
9680 2001-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
9681
9682 * eval.c (SCM_VALIDATE_NON_EMPTY_COMBINATION): New macro.
9683
9684 (SCM_CEVAL, SCM_APPLY): Replace calls to SCM_EVALIM2 with calls
9685 to SCM_VALIDATE_NON_EMPTY_COMBINATION.
9686
9687 2001-06-05 Marius Vollmer <mvo@zagadka.ping.de>
9688
9689 * extensions.c (scm_c_register_extension): Allow NULL as library
9690 name.
9691 (load_extension): Ignore NULL library names when comparing.
9692
9693 * hash.c (scm_hasher): Use SCM_UNPACK in the case labels so that
9694 non-pointers are being compared. Thanks to Alexander Klimov!
9695
9696 2001-06-04 Gary Houston <ghouston@arglist.com>
9697
9698 * rw.c (scm_write_string_partial): new procedure implementing
9699 write-string/partial in (ice-9 rw).
9700 * rw.h: declare scm_write_string_partial.
9701
9702 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
9703
9704 * keywords.c (keyword_print): Substract 1 from length of symbol
9705 name, accounting for the silly dash.
9706
9707 * dynl.c (scm_registered_modules, scm_clear_registered_modules):
9708 Do not emit deprecation warning.
9709
9710 Added exception notice to all files.
9711
9712 * dynl.c: Include "deprecation.h".
9713
9714 2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
9715
9716 * dynl.c (scm_register_module_xxx, scm_registered_modules,
9717 scm_clear_registered_modules): Deprecated.
9718
9719 2001-06-02 Rob Browning <rlb@cs.utexas.edu>
9720
9721 * .cvsignore: add guile_filter_doc_snarfage guile-snarf-docs
9722 guile-snarf-docs-texi.
9723
9724 * fports.c: HAVE_ST_BLKSIZE changed to
9725 HAVE_STRUCT_STAT_ST_BLKSIZE.
9726 (scm_fport_buffer_add): HAVE_ST_BLKSIZE changed to
9727 HAVE_STRUCT_STAT_ST_BLKSIZE.
9728
9729 * filesys.c (scm_stat2scm): HAVE_ST_RDEV changed to
9730 HAVE_STRUCT_STAT_ST_RDEV.
9731 (scm_stat2scm): HAVE_ST_BLKSIZE changed to
9732 HAVE_STRUCT_STAT_ST_BLKSIZE.
9733 (scm_stat2scm): HAVE_ST_BLOCKS changed to
9734 HAVE_STRUCT_STAT_ST_BLOCKS.
9735
9736 2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
9737
9738 * strports.c (scm_eval_string): Use scm_primitive_eval_x instead
9739 of scm_eval_x to allow module changes between the forms in the
9740 string. Set/restore module using scm_c_call_with_current_module.
9741
9742 * mkstemp.c: New file, slightly modified from libiberties
9743 mkstemps.c.
9744
9745 2001-05-31 Michael Livshin <mlivshin@bigfoot.com>
9746
9747 * guile-snarf-docs.in, guile-snarf-docs-texi.in,
9748 filter-doc-snarfage.c: new files.
9749
9750 * Makefile.am: add stuff to [build,] use and distribute
9751 guile-snarf-docs, guile-snarf-docs-texi, guile_filter_doc_snarfage.
9752
9753 * guile-snarf.in: grok the new snarf output.
9754
9755 * snarf.h: make the output both texttools- and `read'-friendly.
9756
9757 * guile-doc-snarf.in: reimplement in terms of guile-snarf and
9758 guile-snarf-docs. (should also deprecate, I guess. maybe not).
9759
9760 2001-05-31 Marius Vollmer <mvo@zagadka.ping.de>
9761
9762 * print.c (scm_simple_format): Support "~~" and "~%". Signal
9763 error for unsupported format controls and for superflous
9764 arguments. Thanks to Daniel Skarda!
9765
9766 * print.h, print.c (scm_print_symbol_name): Factored out of
9767 scm_iprin1.
9768 (scm_iprin1): Call it.
9769
9770 * keywords.c (keyword_print): Use scm_print_symbol_name so that
9771 weird names are printed correctly.
9772
9773 * print.c (scm_print_symbol_name): Symbols whose name starts with
9774 `#' or `:' or ends with `:' are considered weird.
9775
9776 2001-05-30 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9777
9778 * numbers.c (scm_difference, scm_divide): Clarified comments for -
9779 and /.
9780
9781 2001-05-29 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9782
9783 * debug.h: Removed prototype for scm_eval_string.
9784
9785 2001-05-28 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9786
9787 * symbols.c (scm_gensym): Fix buffer overrun (try `(gensym
9788 (make-string 2000 #\!))' in an older version).
9789
9790 Change strncpy to memcpy to allow embedded NUL characters in
9791 symbol prefix.
9792
9793 2001-05-28 Michael Livshin <mlivshin@bigfoot.com>
9794
9795 * hooks.c (scm_create_hook): deprecated.
9796 (make_hook): deleted.
9797 (scm_make_hook): all the hook creation code is now here.
9798
9799 * gc.c (scm_init_gc): don't call `scm_create_hook'. instead make
9800 a hook, make it permanent, and do a `scm_c_define' on it.
9801
9802 * strop.c (s_scm_string_capitalize_x): fix docstring quoting.
9803
9804 * socket.c (s_scm_inet_pton): fix docstring quoting.
9805 (s_scm_inet_ntop): ditto.
9806
9807 * num2integral.i.c (INTEGRAL2NUM): cast to fix a warning.
9808
9809 * hashtab.c (scm_internal_hash_fold): fix argument position in
9810 SCM_ASSERT.
9811
9812 * environments.c (s_scm_import_environment_set_imports_x): fix
9813 argument position in SCM_ASSERT.
9814
9815 * debug.c (s_scm_make_gloc): fix SCM packing/unpacking.
9816 (s_scm_make_iloc): ditto.
9817
9818 2001-05-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
9819
9820 * __scm.h (SCM_DEBUG_TYPING_STRICTNESS): Make 1 the default.
9821
9822 * eval.c (promise_print): Read the promise's value as an object.
9823
9824 (SCM_CEVAL): Don't perform side-effecting operations in macro
9825 parameters.
9826
9827 * eval.h (SCM_EVALIM2): Fix the typing strictness of the
9828 conditional expression.
9829
9830 * gc.c (scm_master_freelist, scm_master_freelist2): Added missing
9831 initializer.
9832
9833 * gh_data.c (gh_set_substr): Removed redundant unsigned >= 0
9834 text, removed redundant computation of effective_length and fixed
9835 the overflow check.
9836
9837 * goops.c (test_slot_existence): Use SCM_EQ_P to compare SCM
9838 values.
9839
9840 (wrap_init): Don't use SCM_C[AD]R for non pairs.
9841
9842 (hell): Make it a scm_bits_t pointer rather than a SCM pointer.
9843
9844 * goops.c (scm_sys_modify_class), strports.c (st_resize_port),
9845 struct.h (SCM_SET_STRUCT_PRINTER): Store unpacked values.
9846
9847 * goops.h (SCM_ACCESSORS_OF, SCM_SLOT): Return a SCM value.
9848
9849 * goops.h (GOOPSH, SCM_GOOPS_H), modules.h (MODULESH,
9850 SCM_MODULES_H), objects.h (OBJECTSH, SCM_OBJECTS_H), struct.h
9851 (STRUCTH, SCM_STRUCT_H), symbols.h (SYMBOLSH, SCM_SYMBOLS_H),
9852 __scm.h (__SCMH, SCM___SCM_H): Change <foo>H to SCM_<foo>_H.
9853
9854 * modules.[ch] (scm_module_tag): Make it a scm_bits_t value.
9855
9856 * objects.h (SCM_SET_CLASS_INSTANCE_SIZE): Fixed typing.
9857
9858 * ramap.c (ramap_rp): Removed bogus `;´.
9859
9860 * sort.c (scm_restricted_vector_sort_x): Fixed signedness
9861 problem.
9862
9863 * symbols.h (SCM_PROP_SLOTS, SCM_SET_PROP_SLOTS, SCM_SYMBOL_FUNC,
9864 SCM_SET_SYMBOL_FUNC, SCM_SYMBOL_PROPS, SCM_SET_SYMBOL_PROPS):
9865 Read SCM objects rather than scm_bits_t values.
9866
9867 * tags.h (SCM_VOIDP_TEST): Removed.
9868
9869 (SCM_DEBUG_TYPING_STRICTNESS): Now takes values 0, 1, 2. The
9870 value of 2 now corresponds to the former 1, the current 1
9871 corresponds to the former situation that SCM_VOIDP_TEST was
9872 defined.
9873
9874 (SCM): Now defined as typedef struct scm_unused_struct * SCM;
9875 If this appears to be not ANSI compliant, we will change it to
9876 typedef struct scm_unused_struct { } * SCM;
9877 Thanks to Han-Wen Nienhuys for the suggestion.
9878
9879 * unif.c (scm_array_set_x): Fix typing problem, and use
9880 SCM_UVECTOR_BASE instead of SCM_VELTS or SCM_CELL_WORD_1 when
9881 dealing with uniform vectors.
9882
9883 2001-05-27 Michael Livshin <mlivshin@bigfoot.com>
9884
9885 * gc.c (scm_init_storage): init `scm_gc_registered_roots'.
9886 (scm_igc): mark from them, too (precisely, not conservatively!).
9887
9888 * root.h (scm_gc_registered_roots): new object in
9889 scm_sys_protects.
9890
9891 * hooks.c (scm_create_hook): call `scm_gc_protect_object' instead
9892 `scm_protect_object'. shouldn't call it at all, though, it seems.
9893
9894 * gc.c (scm_[un]protect_object): deprecated.
9895 (scm_gc_[un]protect_object): new names for scm_[un]protect_object.
9896 (scm_gc_[un]register_root[s]): new.
9897
9898 * gc.h: add prototypes for scm_gc_[un]protect_object,
9899 scm_gc_[un]register_root[s].
9900
9901 2001-05-26 Michael Livshin <mlivshin@bigfoot.com>
9902
9903 revert the controversial part of the 2001-05-24 changes.
9904
9905 2001-05-25 Marius Vollmer <mvo@zagadka.ping.de>
9906
9907 * modules.c (scm_env_module): Exported to Scheme.
9908
9909 * eval.c (scm_debug_opts): New option `show-file-name'.
9910
9911 * debug.h (SCM_SHOW_FILE_NAME): New.
9912
9913 * backtrace.c: Include "libguile/filesys.h".
9914 (sym_base, display_backtrace_get_file_line,
9915 display_backtrace_file, display_backtrace_file_and_line): New.
9916 (display_frame): Call display_backtrace_file_and_line if that is
9917 requested.
9918 (display_backtrace_body): Call scm_display_backtrace_file if
9919 requested.
9920
9921 * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr):
9922 Prototypes removed since there's no definition for these
9923 functions.
9924
9925 2001-05-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
9926
9927 * unif.c (scm_make_ra, array_free), unif.h (SCM_ARRAY_DIMS):
9928 Changed use of scm_array->scm_array_t and
9929 scm_array_dim->scm_array_dim_t to enable build with
9930 --disable-deprecated.
9931
9932 2001-05-24 Michael Livshin <mlivshin@bigfoot.com>
9933
9934 The purpose of this set of changes is to regularize Guile's usage
9935 of ANSI C integral types, with the following ideas in mind:
9936
9937 - SCM does not nesessarily have to be long.
9938 - long is not nesessarily enough to store pointers.
9939 - long is not nesessarily the same size as int.
9940
9941 The changes are incomplete and possibly buggy. Please test on
9942 something exotic.
9943
9944 * validate.h
9945 (SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,BITS,UBITS,INT,UINT}[_DEF]):
9946 new macros.
9947
9948 * unif.h: type renaming:
9949 scm_array -> scm_array_t
9950 scm_array_dim -> scm_array_dim_t
9951 the old names are deprecated, all in-Guile uses changed.
9952
9953 * tags.h (scm_ubits_t): new typedef, representing unsigned
9954 scm_bits_t.
9955
9956 * stacks.h: type renaming:
9957 scm_info_frame -> scm_info_frame_t
9958 scm_stack -> scm_stack_t
9959 the old names are deprecated, all in-Guile uses changed.
9960
9961 * srcprop.h: type renaming:
9962 scm_srcprops -> scm_srcprops_t
9963 scm_srcprops_chunk -> scm_srcprops_chunk_t
9964 the old names are deprecated, all in-Guile uses changed.
9965
9966 * gsubr.c, procs.c, print.c, ports.c, read.c, rdelim.c, ramap.c,
9967 rw.c, smob.c, sort.c, srcprop.c, stacks.c, strings.c, strop.c,
9968 strorder.c, strports.c, struct.c, symbols.c, unif.c, values.c,
9969 vectors.c, vports.c, weaks.c:
9970 various int/size_t -> size_t/scm_bits_t changes.
9971
9972 * random.h: type renaming:
9973 scm_rstate -> scm_rstate_t
9974 scm_rng -> scm_rng_t
9975 scm_i_rstate -> scm_i_rstate_t
9976 the old names are deprecated, all in-Guile uses changed.
9977
9978 * procs.h: type renaming:
9979 scm_subr_entry -> scm_subr_entry_t
9980 the old name is deprecated, all in-Guile uses changed.
9981
9982 * options.h (scm_option_t.val): unsigned long -> scm_bits_t.
9983 type renaming:
9984 scm_option -> scm_option_t
9985 the old name is deprecated, all in-Guile uses changed.
9986
9987 * objects.c: various long -> scm_bits_t changes.
9988 (scm_i_make_class_object): flags: unsigned long -> scm_ubits_t
9989
9990 * numbers.h (SCM_FIXNUM_BIT): deprecated, renamed to
9991 SCM_I_FIXNUM_BIT.
9992
9993 * num2integral.i.c: new file, multiply included by numbers.c, used
9994 to "templatize" the various integral <-> num conversion routines.
9995
9996 * numbers.c (scm_mkbig, scm_big2num, scm_adjbig, scm_normbig,
9997 scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl):
9998 deprecated.
9999 (scm_i_mkbig, scm_i_big2inum, scm_i_adjbig, scm_i_normbig,
10000 scm_i_copybig, scm_i_short2big, scm_i_ushort2big, scm_i_int2big,
10001 scm_i_uint2big, scm_i_long2big, scm_i_ulong2big, scm_i_bits2big,
10002 scm_i_ubits2big, scm_i_size2big, scm_i_ptrdiff2big,
10003 scm_i_long_long2big, scm_i_ulong_long2big, scm_i_dbl2big,
10004 scm_i_big2dbl, scm_short2num, scm_ushort2num, scm_int2num,
10005 scm_uint2num, scm_bits2num, scm_ubits2num, scm_size2num,
10006 scm_ptrdiff2num, scm_num2short, scm_num2ushort, scm_num2int,
10007 scm_num2uint, scm_num2bits, scm_num2ubits, scm_num2ptrdiff,
10008 scm_num2size): new functions.
10009
10010 * modules.c (scm_module_reverse_lookup): i, n: int -> scm_bits_t.
10011
10012 * load.c: change int -> size_t in various places (where the
10013 variable is used to store a string length).
10014 (search-path): call scm_done_free, not scm_done_malloc.
10015
10016 * list.c (scm_ilength): return a scm_bits_t, not long.
10017 some other {int,long} -> scm_bits_t changes.
10018
10019 * hashtab.c: various [u]int -> scm_bits_t changes.
10020 scm_ihashx_closure -> scm_ihashx_closure_t (and made a typedef).
10021 (scm_ihashx): n: uint -> scm_bits_t
10022 use scm_bits2num instead of scm_ulong2num.
10023
10024 * gsubr.c: various int -> scm_bits_t changes.
10025
10026 * goops.[hc]: various {int,long} -> scm_bits_t changes.
10027
10028 * gh_data.c (gh_num2int): no loss of precision any more.
10029
10030 * gh.h (gh_str2scm): len: int -> size_t
10031 (gh_{get,set}_substr): start: int -> scm_bits_t,
10032 len: int -> size_t
10033 (gh_<num>2scm): n: int -> scm_bits_t
10034 (gh_*vector_length): return scm_[u]size_t, not unsigned long.
10035 (gh_length): return scm_bits_t, not unsigned long.
10036
10037 * gc.[hc]: various small changes relating to many things stopping
10038 being long and starting being scm_[u]bits_t instead.
10039 scm_mallocated should no longer wrap around.
10040
10041 * fports.h: type renaming:
10042 scm_fport -> scm_fport_t
10043 the old name is deprecated, all in-Guile uses changed.
10044
10045 * fports.c (fport_fill_input): count: int -> scm_bits_t
10046 (fport_flush): init_size, remaining, count: int -> scm_bits_t
10047
10048 * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr): removed
10049 those prototypes, as the functions they prototype don't exist.
10050
10051 * fports.c (default_buffer_size): int -> size_t
10052 (scm_fport_buffer_add): read_size, write_size: int -> scm_bits_t
10053 default_size: int -> size_t
10054 (scm_setvbuf): csize: int -> scm_bits_t
10055
10056 * fluids.c (n_fluids): int -> scm_bits_t
10057 (grow_fluids): old_length, i: int -> scm_bits_t
10058 (next_fluid_num, scm_fluid_ref, scm_fluid_set_x): n: int ->
10059 scm_bits_t
10060 (scm_c_with_fluids): flen, vlen: int -> scm_bits_t
10061
10062 * filesys.c (s_scm_open_fdes): changed calls to SCM_NUM2LONG to
10063 the new and shiny SCM_NUM2INT.
10064
10065 * extensions.c: extension -> extension_t (and made a typedef).
10066
10067 * eval.h (SCM_IFRAME): cast to scm_bits_t, not int. just so
10068 there are no nasty surprises if/when the various deeply magic tag
10069 bits move somewhere else.
10070
10071 * eval.c: changed the locals used to store results of SCM_IFRAME,
10072 scm_ilength and such to be of type scm_bits_t (and not int/long).
10073 (iqq): depth, edepth: int -> scm_bits_t
10074 (scm_eval_stack): int -> scm_bits_t
10075 (SCM_CEVAL): various vars are not scm_bits_t instead of int.
10076 (check_map_args, scm_map, scm_for_each): len: long -> scm_bits_t
10077 i: int -> scm_bits_t
10078
10079 * environments.c: changed the many calls to scm_ulong2num to
10080 scm_ubits2num.
10081 (import_environment_fold): proc_as_ul: ulong -> scm_ubits_t
10082
10083 * dynwind.c (scm_dowinds): delta: long -> scm_bits_t
10084
10085 * debug.h: type renaming:
10086 scm_debug_info -> scm_debug_info_t
10087 scm_debug_frame -> scm_debug_frame_t
10088 the old names are deprecated, all in-Guile uses changed.
10089 (scm_debug_eframe_size): int -> scm_bits_t
10090
10091 * debug.c (scm_init_debug): use scm_c_define instead of the
10092 deprecated scm_define.
10093
10094 * continuations.h: type renaming:
10095 scm_contregs -> scm_contregs_t
10096 the old name is deprecated, all in-Guile uses changed.
10097 (scm_contregs_t.num_stack_items): size_t -> scm_bits_t
10098 (scm_contregs_t.num_stack_items): ulong -> scm_ubits_t
10099
10100 * continuations.c (scm_make_continuation): change the type of
10101 stack_size from long to scm_bits_t.
10102
10103 * ports.h: type renaming:
10104 scm_port_rw_active -> scm_port_rw_active_t (and made a typedef)
10105 scm_port -> scm_port_t
10106 scm_ptob_descriptor -> scm_ptob_descriptor_t
10107 the old names are deprecated, all in-Guile uses changed.
10108 (scm_port_t.entry): int -> scm_bits_t.
10109 (scm_port_t.line_number): int -> long.
10110 (scm_port_t.putback_buf_size): int -> size_t.
10111
10112 * __scm.h (long_long, ulong_long): deprecated (they pollute the
10113 global namespace and have little value beside that).
10114 (SCM_BITS_LENGTH): new, is the bit size of scm_bits_t (i.e. of an
10115 SCM handle).
10116 (ifdef spaghetti): include sys/types.h and sys/stdtypes.h, if they
10117 exist (for size_t & ptrdiff_t).
10118 (scm_sizet): deprecated.
10119
10120 * Makefile.am (noinst_HEADERS): add num2integral.i.c
10121
10122 2001-05-23 Marius Vollmer <mvo@zagadka.ping.de>
10123
10124 * snarf.h (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of
10125 SCM_VARIABLE_INIT since that it what it used to be.
10126
10127 * deprecation.c (scm_include_deprecated_features): Make docstring
10128 ANSIsh. Thanks to Matthias Köppe!
10129
10130 2001-05-21 Marius Vollmer <mvo@zagadka.ping.de>
10131
10132 * symbols.c (scm_mem2symbol): Re-introduce indirect cell. It is
10133 needed for weak-key hashtables.
10134
10135 * procs.c (scm_make_subr_with_generic): Add missing last argument
10136 in call to scm_c_define_gsubr_with_generic. Thanks to Ariel Rios.
10137
10138 * eval.c: Use SCM_EQ_P instead of `==' or `!=' in certain
10139 places. (scm_c_improper_memq): Return 1 instead of SCM_BOOL_T.
10140
10141 * eval.h (SCM_EVALIM2): Use SCM_EQ_P instead of `=='.
10142
10143 2001-05-20 Marius Vollmer <mvo@zagadka.ping.de>
10144
10145 * symbols.c (scm_mem2symbol): Call `scm_must_strndup' instead of
10146 `duplicate_string'. Do not use an indirect cell, store symbol
10147 directly in collision list of hash table.
10148 (duplicate_string): Removed.
10149
10150 * init.c (scm_init_guile_1): Call scm_init_extensions.
10151
10152 * Makefile.am: Add "extensions.c" and related files in all the
10153 right places.
10154
10155 * extensions.h, extension.c: New files.
10156
10157 * gc.h, gc.c (scm_must_strdup, scm_must_strndup): New.
10158
10159 * modules.h (scm_system_module_env_p): Move out of deprecated
10160 section.
10161
10162 * rw.h (scm_init_rw): Added prototype.
10163
10164 * gsubr.h, gsubr.c (scm_c_make_gsubr, scm_c_define_gsubr,
10165 scm_c_make_gsubr_with_generic, scm_c_define_gsubr_with_generic):
10166 New functions. They replace scm_make_gsubr and
10167 scm_make_gsubr_with_generic. The `make' variants only create the
10168 gsubr object, while the `define' variants also put it into the
10169 current module. Changed all callers.
10170 (scm_make_gsubr, scm_make_gsubr_with_generic): Deprecated.
10171
10172 * procs.h, procs.c (scm_c_make_subr, scm_c_define_subr,
10173 scm_c_make_subr_with_generic, scm_c_define_subr_with_generic): New
10174 functions. They replace scm_make_subr, scm_make_subr_opt and
10175 scm_make_subr_with_generic. The `make' variants only create the
10176 subr object, while the `define' variants also put it into the
10177 current module. Changed all callers.
10178 (scm_make_subr, scm_make_subr_opt, scm_make_subr_with_generic):
10179 Deprecated.
10180
10181 * eval.c, gc.c, gh_funcs.c, goops.c, macros.c, pairs.c, ramap.c,
10182 rdelim.c, rw.c, scmsigs.c, snarf.h, values.c: Changed according to
10183 the comments above.
10184
10185 2001-05-19 Neil Jerram <neil@ossau.uklinux.net>
10186
10187 * throw.c (scm_lazy_catch): Slight docstring clarification.
10188
10189 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
10190
10191 * throw.c: Lazy-catch handlers are no longer allowed to return.
10192 Fixed comments throughout.
10193 (scm_ithrow): Signal an error when a lazy-catch handler returns.
10194 Moved actual jump to jmpbuf into if-branch where the jmpbuf is
10195 recognized as such.
10196
10197 * version.c (s_scm_micro_version): Fix typo in FUNC_NAME, it
10198 refered to s_scm_minor_version previously.
10199
10200 * modules.h, modules.c: Moved around a lot of code so that
10201 deprecated features appear at the bottom.
10202 (root_module_lookup_closure, scm_sym_app, scm_sym_modules,
10203 module_prefix, make_modules_in_var, beautify_user_module_x_var,
10204 scm_the_root_module, scm_make_module, scm_ensure_user_module,
10205 scm_load_scheme_module): Deprecated.
10206 (scm_system_module_env_p): Return SCM_BOOL_T directly for
10207 environments corresponding to the root module.
10208 (convert_module_name, scm_c_resolve_module,
10209 scm_c_call_with_current_module, scm_c_define_module,
10210 scm_c_use_module, scm_c_export): New.
10211 (the_root_module): New static variant of scm_the_root_module. Use
10212 it everywhere instead of scm_the_root_module.
10213
10214 * fluids.h, fluids.c (scm_internal_with_fluids): Deprecated.
10215 (scm_c_with_fluids): Renamed from scm_internal_with_fluids.
10216 (scm_c_with_fluid): New.
10217 (scm_with_fluids): Use scm_c_with_fluids instead of
10218 scm_internal_with_fluids.
10219
10220 * goops.h, goops.c (scm_init_goops_builtins): Renamed from
10221 `scm_init_goops'. Do not explicitly create/switch modules.
10222 Return SCM_UNSPECIFIED.
10223 (scm_init_goops): Only register `%init-goops-builtins' procedure.
10224 (scm_load_goops): Use scm_c_resolve_module instead of
10225 scm_resolve_module.
10226
10227 * init.c (scm_init_guile_1): Call `scm_init_goops' instead of
10228 `scm_init_oop_goops_goopscore_module'. Call `scm_init_rdelim' and
10229 `scm_init_rw' prior to loading the startup files.
10230
10231 * rdelim.h, rdelim.c: (scm_init_rdelim_builtins): Renamed from
10232 scm_init_rdelim. Do not explicitly create/switch modules.
10233 Return SCM_UNSPECIFIED.
10234 (scm_init_rdelim): Only register `%init-rdelim-builtins'
10235 procedure.
10236
10237 * rw.c (scm_init_rw_builtins): Renamed from scm_init_rw. Do not
10238 explicitly create/switch modules. Return SCM_UNSPECIFIED.
10239 (scm_init_rw): Only register `%init-rw-builtins' procedure.
10240
10241 * script.c (scm_shell): Evaluate the compiled switches in the
10242 current module, not in the root module.
10243
10244 2001-05-18 Marius Vollmer <mvo@zagadka.ping.de>
10245
10246 * fluids.c (scm_c_with_fluids): Rename from
10247 scm_internal_with_fluids.
10248 (scm_internal_with_fluids): Deprecated.
10249 (scm_c_with_fluid): New.
10250
10251 2001-05-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
10252
10253 * print.h (PRINTH, SCM_PRINT_H): Renamed PRINTH to SCM_PRINT_H.
10254
10255 (SCM_PORT_WITH_PS_PORT, SCM_PORT_WITH_PS_PS): Only pairs may be
10256 accessed with SCM_C[AD]R.
10257
10258 (SCM_COERCE_OUTPORT): Removed redundant SCM_NIMP test.
10259
10260 2001-05-16 Rob Browning <rlb@cs.utexas.edu>
10261
10262 * version.c (s_scm_major_version): doc fixes.
10263 (s_scm_minor_version): doc fixes.
10264 (s_scm_minor_version): new function.
10265
10266 * version.h (scm_init_version): new function.
10267
10268 * versiondat.h.in: add GUILE_MICRO_VERSION.
10269
10270 2001-05-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
10271
10272 * deprecation.c (scm_init_deprecation): Renamed
10273 GUILE_WARN_DEPRECATED_DEFAULT to SCM_WARN_DEPRECATED_DEFAULT.
10274
10275 2001-05-16 Marius Vollmer <mvo@zagadka.ping.de>
10276
10277 * Makefile.am (cpp_sig_symbols.c, cpp_err_symbols.c): Make
10278 dependent on cpp_cnvt.awk
10279
10280 2001-05-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10281
10282 * script.c (scm_compile_shell_switches): New command line option
10283 `--use-srfi' for loading a list of SRFIs on startup.
10284 (scm_shell_usage): Added `--use-srfi' to help message.
10285
10286 2001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
10287
10288 Merged from mvo-vcell-cleanup-1-branch.
10289
10290 The concept of vcells has been removed from Guile. With it,
10291 explicit obarrays and associated operations are gone. Use
10292 hashtables instead of obarrays.
10293
10294 Throughout: use scm_sym2var instead of scm_sym2vcell and treat
10295 result as variable instead of vcell. Glocs no longer point to a
10296 vcell but to a variable. Use scm_c_define instead of
10297 scm_sysintern and treat the result as a variable (which it is),
10298 not a vcell.
10299
10300 * variable.c, variable.h (SCM_VARVCELL, SCM_UDVARIABLEP,
10301 SCM_DEFVARIABLEP): Deprecated.
10302 (SCM_VARIABLE_REF, SCM_VARIABLE_SET, SCM_VARIABLE_LOC): New.
10303 (variable_print): Do not print name of variable.
10304 (variable_equalp): Compare values, not vcells.
10305 (anonymous_variable_sym): Removed.
10306 (make_vcell_variable): Removed.
10307 (make_variable): New, as replacement.
10308 (scm_make_variable, scm_make_undefined_variable): Do not take name
10309 hint parameter.
10310 (scm_variable_ref): Check for SCM_UNDEFINED and throw "unbound"
10311 error in that case.
10312 (scm_builtin_variable): Deprecated.
10313
10314 * symbols.c, symbols.h (scm_sym2vcell, scm_sym2ovcell_soft,
10315 scm_sym2ovcell, scm_intern_obarray_soft, scm_intern_obarray,
10316 scm_intern, scm_intern0, scm_sysintern0_no_module_lookup,
10317 scm_sysintern, scm_sysintern0, scm_symbol_value0,
10318 scm_string_to_obarray_symbol, scm_intern_symbol,
10319 scm_unintern_symbol, scm_symbol_binding, scm_symbol_interned,
10320 scm_symbol_bound_p, scm_symbol_set_x, scm_gentmp, gentmp_counter):
10321 Deprecated and moved to "symbols-deprecated.c".
10322 (copy_and_prune_obarray, scm_builtin_bindings): Removed.
10323 (scm_init_symbols): Call scm_init_symbols_deprecated.
10324 * symbols-deprecated.c: New file.
10325 * Makefile.am: Added symbols-deprecated.c and related files in all
10326 the right places.
10327
10328 * snarf.h (SCM_VCELL, SCM_GLOBAL_VCELL, SCM_VCELL_INIT,
10329 SCM_GLOBAL_VCELL_INIT): Deprecated.
10330 (SCM_VARIABLE, SCM_GLOBAL_VARIABLE, SCM_VARIABLE_INIT,
10331 SCM_GLOBAL_VARIABLE_INIT): New, as replacement. Changed all uses.
10332
10333 * print.c (scm_iprin1): Use scm_module_reverse_lookup instead of
10334 SCM_GLOC_SYM.
10335
10336 * evalext.c, filesys.c, fports.c, gdbint.c, gh_data.c, gsubr.c,
10337 hooks.c, load.c, numbers.c, objects.c, ports.c, posix.c, procs.c,
10338 ramap.c, random.c, read.c, regex-posix.c, scmsigs.c, script.c,
10339 socket.c, srcprop.c, stacks.c, stime.c, struct.c, tag.c, throw.c:
10340 Changed according to the `throughout' comments.
10341
10342 * modules.h, modules.c (scm_module_system_booted_p): Changed type
10343 to `int'.
10344 (scm_module_type): Removed.
10345 (the_root_module): Renamed to the_root_module_var. Now points to
10346 a variable instead of a vcell. Updated all uses.
10347 (scm_the_root_module): Return SCM_BOOL_F when module systems
10348 hasn't been booted yet.
10349 (SCM_VALIDATE_STRUCT_TYPE): Removed.
10350 (scm_post_boot_init_modules): Made static.
10351 (scm_set_current_module): Call scm_post_boot_init_modules on first
10352 call.
10353 (make_modules_in, beautify_user_module_x, resolve_module,
10354 try_module_autoload, module_make_local_var_x): Tacked on "_var"
10355 suffix. Now point to variables instead of vcells. Updated all
10356 uses.
10357 (scm_module_lookup_closure): Deal with the module being SCM_BOOL_F
10358 and return SCM_BOOL_F in that case.
10359 (scm_module_transformer): Likewise.
10360 (sym_module, scm_lookup_closure_module, scm_env_module): New.
10361 (SCM_F_EVAL_CLOSURE_INTERFACE, SCM_EVAL_CLOSURE_INTERFACE_P): New.
10362 (scm_eval_closure_lookup): Do not allow new definitions when
10363 `interface' flag is set.
10364 (scm_standard_interface_eval_closure): New.
10365 (scm_pre_modules_obarray, scm_sym2var, scm_module_lookup,
10366 scm_lookup, scm_module_define, scm_define, scm_c_module_lookup,
10367 scm_c_lookup, scm_c_module_define, scm_c_define,
10368 scm_module_reverse_lookup, scm_get_pre_modules_obarray,
10369 scm_modules_prehistory): New.
10370 (scm_post_boot_init_modules): Use scm_c_define and scm_c_lookup
10371 instead of scm_intern0.
10372
10373 * macros.c (scm_make_synt): Return SCM_UNSPECIFIED instead of the
10374 symbol.
10375
10376 * keywords.c (s_scm_make_keyword_from_dash_symbol): Use a regular
10377 hashtable operations to maintain the keywords, not obarray ones.
10378
10379 * init.c (scm_load_startup_files): Do not call
10380 scm_post_boot_init_modules. This is done by
10381 scm_set_current_module now.
10382 (scm_init_guile_1): Call scm_modules_prehistory. Call
10383 scm_init_variable early on.
10384
10385 * goops.c (s_scm_sys_goops_loaded): Get
10386 var_compute_applicable_methods from scm_sym2var, not from a direct
10387 invocation of scm_goops_lookup_closure.
10388
10389 * gh_funcs.c (gh_define): Return SCM_UNSPECIFIED instead of vcell.
10390
10391 * gc.c: Added simple debugging hack to mark phase of GC: When
10392 activated, do not tail-call scm_gc_mark. This gives nice
10393 backtraces.
10394 (scm_unhash_name): Removed.
10395
10396 * feature.c (features): Renamed to features_var. Now points to a
10397 variable instead of a vcell. Updated all uses.
10398
10399 * eval.h (SCM_TOP_LEVEL_LOOKUP_CLOSURE): Use
10400 `scm_current_module_lookup_closure' which will do the right thing
10401 when the module system hasn't been booted yet.
10402 (SCM_GLOC_SYM): Removed.
10403 (SCM_GLOC_VAR, SCM_GLOC_SET_VAL): New.
10404 (SCM_GLOC_VAL, SCM_GLOC_LOC): Reimplemented in terms of variables.
10405
10406 * eval.c (scm_lookupcar, scm_lookupcar1): Deal with variables
10407 instead of with vcells. Do not overwrite `var' with the result of
10408 the lookup, use the new `real_var' instead. Remove `var2' in
10409 exchange (which was only used with threads).
10410 (sym_three_question_marks): New.
10411 (scm_unmemocar): Use `scm_module_reverse_lookup' instead of
10412 `SCM_GLOC_SYM'.
10413 (scm_lisp_nil, scm_lisp_t): Directly define as symbols.
10414 (scm_m_atfop): Expect the function definition to be a variable
10415 instead of a vcell.
10416 (scm_macroexp): Do not use `unmemocar', explicitely remember the
10417 symbol instead.
10418 (scm_unmemocopy): Removed thoughts about anti-macro interface.
10419 (scm_eval_args): Use more explicit code in the gloc branch of the
10420 atrocious struct ambiguity test. The optimizer will sort this
10421 out.
10422 (scm_deval_args): Likewise.
10423 (SCM_CEVAL): Likewise. Also, do not use unmemocar, explicitely
10424 remember the symbol instead. Added some comments where
10425 scm_tc3_cons_gloc really exclusively refers to structs.
10426 (scm_init_eval): Use scm_define to initialize "nil" and "t" to
10427 scm_lisp_nil and scm_lisp_t, respectively. Use scm_define instead
10428 of scm_sysintern in general.
10429
10430 * dynwind.c (scm_swap_bindings): Use SCM_GLOC_SET_VAL instead of
10431 explicit magic.
10432
10433 * debug.c (s_scm_make_gloc): Only allow proper variables, no
10434 pairs. Put the variable directly in the gloc.
10435 (s_scm_gloc_p): Use `scm_tc3_cons_gloc' instead of the magic `1'.
10436 (scm_init_debug): Use scm_c_define instead scm_sysintern.
10437
10438 * cpp_cnvt.awk: Emit "scm_c_define" instead of "scm_sysintern".
10439
10440 * backtrace.h, backtrace.c (scm_the_last_stack_fluid): Renamed to
10441 scm_the_last_stack_fluid_var. It now points to a variable instead
10442 of a vcell. Updated all uses.
10443 (scm_has_shown_backtrace_hint_p_var): Now points to a variable
10444 instead of a vcell. Updated all uses.
10445
10446 * _scm.h: Include "variables.h" and "modules.h" since almost
10447 everybody needs them now.
10448
10449 * root.h (scm_symhash, scm_symhash_vars): Removed.
10450 * gc.c (scm_init_storage): Do not initialize them.
10451
10452 2001-05-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
10453
10454 * eval.c (scm_init_eval): Initialize scm_undefineds and
10455 scm_listofnull.
10456
10457 * gc.c (scm_debug_newcell, scm_debug_newcell2): Fixed to behave
10458 like the SCM_NEWCELL macro counterparts.
10459
10460 (scm_init_storage, scm_init_gc): Moved initialization of
10461 scm_tc16_allocated from scm_init_gc to scm_init_storage.
10462
10463 (scm_init_storage): Moved initialization of scm_undefineds and
10464 scm_listofnull to eval.c, initializion of scm_nullstr to
10465 strings.c, initializion of scm_nullvect to vectors.c.
10466
10467 * gc.h (SCM_NEWCELL, SCM_NEWCELL2): Prefer SCM_NULLP over
10468 SCM_IMP, as in scm_debug_newcell and scm_debug_newcell2.
10469
10470 * init.c (scm_init_guile_1): Reordered some initializations and
10471 added dependcy information comments.
10472
10473 * load.c (scm_init_load): Use scm_nullstr.
10474
10475 * strings.c (scm_init_strings): Initialize scm_nullstr.
10476
10477 * vectors.c (scm_init_vectors): Initialize scm_nullvect.
10478
10479 2001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
10480
10481 * values.c (print_values): Print as a unreadable object, not as
10482 multiple lines. Thanks to Matthias Köppe!
10483
10484 2001-05-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
10485
10486 * deprecation.c: Fixed copyright date.
10487
10488 * deprecation.h (DEPRECATION_H, SCM_DEPRECATION_H): Renamed
10489 DEPRECATION_H to SCM_DEPRECATION_H.
10490
10491 2001-05-10 Thien-Thi Nguyen <ttn@revel.glug.org>
10492
10493 * guile-doc-snarf.in: Update copyright.
10494 Fix relative path bug. Thanks to Sergey Poznyakoff.
10495
10496 2001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
10497
10498 * ports.c (scm_port_revealed, scm_set_port_revealed_x): Only
10499 accept open ports. Thanks to Quetzalcoatl Bradley!
10500
10501 2001-05-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10502
10503 * procs.c: Increased `scm_subr_table_room' to 800 because Guile now
10504 has 779 primitives on startup.
10505
10506 2001-05-09 Marius Vollmer <mvo@zagadka.ping.de>
10507
10508 * eval.c (scm_i_eval): Copy expression before passing it to
10509 SCM_XEVAL. The copy operation was removed unintendedly during my
10510 change on 2001-03-25.
10511
10512 2001-05-09 Michael Livshin <mlivshin@bigfoot.com>
10513
10514 from Matthias Köppe (thanks!):
10515
10516 * ports.c (scm_c_read): pointer arithmetic on void pointers isn't
10517 portable.
10518
10519 * deprecation.c (s_scm_include_deprecated_features): ANSI'fied the
10520 docstring.
10521
10522 2001-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
10523
10524 * gc.c (scm_init_gc): Added FIXME comment.
10525
10526 * hooks.c: Since hooks don't have a name any more, it is not
10527 necessary to include objprop.h.
10528
10529 (hook_print, scm_add_hook_x): Replace SCM_NFALSEP by !SCM_FALSEP.
10530
10531 (symbol_name, scm_make_hook_with_name): Removed.
10532
10533 (scm_create_hook): Don't set the hook's name property.
10534
10535 * hooks.h (HOOKSH, SCM_HOOKS_H): Renamed HOOKSH to SCM_HOOKS_H.
10536
10537 (SCM_HOOK_NAME, scm_make_hook_with_name): Removed.
10538
10539 * init.c (scm_init_guile_1): Hooks don't use objprops any more.
10540
10541 * numbers.c (SCM_FLOBUFLEN, FLOBUFLEN, scm_number_to_string,
10542 scm_print_real, scm_print_complex): Renamed SCM_FLOBUFLEN to
10543 FLOBUFLEN and define it unconditionally.
10544
10545 2001-05-07 Marius Vollmer <mvo@zagadka.ping.de>
10546
10547 * gh_data.c (gh_lookup): Call gh_module_lookup with
10548 `scm_current_module ()', not `#f'.
10549 (gh_module_lookup): Expect a module instead of an obarray as first
10550 argument and do lookup in that module.
10551
10552 * ramap.c (raeql_1): Do not call scm_uniform_vector_length on
10553 arrays. The length of array is already determined differently and
10554 scm_uniform_vector_length does not work on arrays.
10555
10556 2001-05-06 Marius Vollmer <mvo@zagadka.ping.de>
10557
10558 * snarf.h (SCM_FUNC_CAST_ARBITRARY_ARGS): Use "SCM (*)()" for C++
10559 as well. "SCM (*)(...)" does not work on RedHat 7.1.
10560
10561 * __scm.h (SCM_WTA_DISPATCH_0): Removed ARG and POS parameters,
10562 they are not used. Changed `wrong type' error into `wrong num
10563 args' error. Changed all callers.
10564
10565 * numbers.c (scm_difference): Call SCM_WTA_DISPATCH_0 when zero
10566 arguments are supplied.
10567
10568 2001-05-05 Thien-Thi Nguyen <ttn@revel.glug.org>
10569
10570 * regex-posix.c (scm_regexp_exec): Expand docstring to briefly
10571 describe `regexp/notbol' and `regexp/noteol' execution flags.
10572
10573 * strop.c (scm_substring_move_x): Doc fix; nfc.
10574
10575 2001-05-05 Marius Vollmer <mvo@zagadka.ping.de>
10576
10577 * objects.c, objects.h (scm_valid_object_procedure_p): New.
10578 (scm_set_object_procedure_x): Use it to check argument. Fix
10579 docstring.
10580
10581 * evalext.c (scm_definedp): Fix docstring.
10582
10583 2001-05-05 Gary Houston <ghouston@arglist.com>
10584
10585 * socket.c: use HAVE_IPV6 instead of AF_INET6 to enable IPv6
10586 support.
10587
10588 2001-05-04 Neil Jerram <neil@ossau.uklinux.net>
10589
10590 * eval.c (scm_promise_p), list.c (scm_append_x, scm_reverse_x),
10591 symbols.c (scm_symbol_to_string), vports.c (scm_make_soft_port):
10592 Change R4RS references to R5RS.
10593
10594 * guile-snarf.awk.in: Fixes so that (i) blank lines in the
10595 docstring source are correctly reproduced in the output (ii)
10596 we don't anymore get occasional trailing quotes. Also reorganized
10597 and commented the code a little.
10598
10599 * scmsigs.c (scm_raise), throw.c (scm_throw): Docstring format
10600 fixes.
10601
10602 2001-05-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10603
10604 * strop.c (scm_string_split): New procedure.
10605
10606 * strop.h (scm_string_split): Added prototype.
10607
10608 2001-05-04 Gary Houston <ghouston@arglist.com>
10609
10610 * socket.c: define uint32_t if netdb.h doesn't. thanks to
10611 Dale P. Smith.
10612
10613 2001-05-02 Marius Vollmer <mvo@zagadka.ping.de>
10614
10615 * rw.c: Include "modules.h" and "strports.h".
10616
10617 * net_db.h (scm_gethost): Added prototype.
10618
10619 * deprecation.h, deprecation.c: New.
10620 * Makefile.am (libguile_la_SOURCES): Added "deprecation.c".
10621 (DOT_X_FILES): Added "deprecation.x".
10622 (modinclude_HEADERS): Added "deprecation.h".
10623
10624 * init.c: Include "deprecation.h".
10625 (scm_init_guile_1): Call scm_init_deprecation.
10626
10627 2001-05-01 Marius Vollmer <mvo@zagadka.ping.de>
10628
10629 * gh.h (gh_init_guile, gh_make_string, gh_string_length,
10630 gh_string_ref, gh_string_set_x, gh_substring, gh_string_append):
10631 New.
10632
10633 2001-04-29 Gary Houston <ghouston@arglist.com>
10634
10635 * rw.c: new file, implementing C part of module (ice-9 rw).
10636 (scm_read_string_x_partial): moved from ioext.c
10637 (scm_init_rw): new proc.
10638 * rw.h: new file.
10639 init.c: include rw.h and call scm_init_rw.
10640 Makefile.am: include rw.c and rw.h.
10641
10642 2001-04-28 Rob Browning <rlb@cs.utexas.edu>
10643
10644 * numbers.c: enabled local definition of SCM_FLOBUFLEN until we
10645 know what's supposed to happen to it.
10646
10647 * list.h (scm_list_star): deprecation expired - removed.
10648
10649 * numbers.h (scm_dblproc): deprecation expired - removed.
10650 (SCM_UNEGFIXABLE): deprecation expired - removed.
10651 (SCM_FLOBUFLEN): deprecation expired - removed.
10652 (SCM_INEXP): deprecation expired - removed.
10653 (SCM_CPLXP): deprecation expired - removed.
10654 (SCM_REAL): deprecation expired - removed.
10655 (SCM_IMAG): deprecation expired - removed.
10656 (SCM_REALPART): deprecation expired - removed.
10657 (scm_makdbl): deprecation expired - removed.
10658 (SCM_SINGP): deprecation expired - removed.
10659 (SCM_NUM2DBL): deprecation expired - removed.
10660 (SCM_NO_BIGDIG): deprecation expired - removed.
10661
10662 * tags.h (SCM_DOUBLE_CELLP): deprecation expired - removed.
10663 (scm_tc_dblr): deprecation expired - removed.
10664 (scm_tc_dblc): deprecation expired - removed.
10665 (scm_tc16_flo): deprecation expired - removed.
10666 (scm_tc_flo): deprecation expired - removed.
10667
10668 * tag.h (scm_tag): deprecation expired - removed.
10669
10670 * tag.c: (scm_tag): deprecation expired - removed.
10671
10672 * ioext.c: (scm_fseek): deprecation expired - removed.
10673
10674 * ioext.h (scm_fseek): deprecation expired - removed.
10675
10676 * gh_data.c (gh_int2scmb): deprecation expired - removed.
10677
10678 * gh.h (gh_int2scmb): deprecation expired - removed.
10679
10680 2001-04-28 Neil Jerram <neil@ossau.uklinux.net>
10681
10682 * stacks.c (scm_make_stack): Fix typo in docstring.
10683
10684 2001-04-27 Rob Browning <rlb@cs.utexas.edu>
10685
10686 * error.c (scm_sysmissing): deprecation expired - removed.
10687
10688 * error.h (scm_sysmissing): deprecation expired - removed.
10689
10690 * gc.c
10691 (scm_init_gc): gc-thunk deprecation expired - removed.
10692 (scm_gc_vcell): deprecation expired - removed.
10693 (gc_async_thunk): scm_gc_vcell related code removed.
10694
10695 * vectors.h (SCM_NVECTORP): deprecation expired - removed.
10696
10697 * strings.h
10698 (SCM_NSTRINGP): deprecation expired - removed.
10699 (SCM_NRWSTRINGP): deprecation expired - removed.
10700
10701 * continuations.h (SCM_SETJMPBUF): deprecation expired - removed.
10702
10703 * chars.h
10704 (SCM_ICHRP): deprecation expired - removed.
10705 (SCM_ICHR): deprecation expired - removed.
10706 (SCM_MAKICHR): deprecation expired - removed.
10707
10708 * ports.h
10709 (SCM_INPORTP): deprecation expired - removed.
10710 (SCM_OUTPORTP): deprecation expired - removed.
10711
10712 2001-04-25 Marius Vollmer <mvo@zagadka.ping.de>
10713
10714 * modules.c (scm_module_type): New.
10715 (scm_post_boot_init_modules): Initialize from Scheme value.
10716 (the_module, scm_current_module, scm_init_modules): the_module is
10717 now a C only fluid.
10718 (scm_current_module): Export to Scheme.
10719 (scm_set_current_module): Do not call out to Scheme, do all the
10720 work in C. Export procedure to Scheme. Only accept modules, `#f'
10721 is no longer valid as the current module. Only set
10722 scm_top_level_lookup_closure_var and scm_system_transformer when
10723 they are not deprecated.
10724 (scm_module_transformer, scm_current_module_transformer): New.
10725
10726 * modules.h (scm_module_index_transformer, SCM_MODULE_TRANSFORMER,
10727 scm_current_module_transformer, scm_module_transformer): New.
10728
10729 * gh_data.c: Removed FIXME comment about gh_lookup returning
10730 SCM_UNDEFINED. That's the right thing to do.
10731
10732 * eval.h, eval.c (scm_system_transformer): Deprecated by moving it
10733 into the conditionally compiled sections.
10734 * eval.c (scm_primitive_eval_x, scm_primitive_eval): Use
10735 scm_current_module_transformer instead of scm_system_transformer.
10736 * init.c (start_stack): Move initialization of
10737 scm_system_transformer to the deprecated section.
10738
10739 2001-04-22 Neil Jerram <neil@ossau.uklinux.net>
10740
10741 * throw.c (scm_throw): Correct docstring.
10742
10743 2001-04-22 Gary Houston <ghouston@arglist.com>
10744
10745 * socket.c: attempted to improve the docstrings slightly.
10746
10747 * net_db.c: remove bogus "close" declaration.
10748 (inet_aton declaration, scm_inet_aton, scm_inet_ntoa,
10749 scm_inet_netof, scm_lnaof, scm_inet_makeaddr, INADDR_ANY etc.):
10750 moved to socket.c.
10751 * net_db.h: declarations moved too.
10752
10753 * socket.c (scm_htonl, scm_ntohl): use uint32_t instead of unsigned
10754 long.
10755 (ipv6_net_to_num, ipv6_num_to_net): new static procedures.
10756 (VALIDATE_INET6): new macro.
10757 (scm_inet_pton, scm_inet_ntop): new procedures, implementing
10758 inet-pton and inet-ntop.
10759 (scm_fill_sockaddr): use VALIDATE_INET6 and ipv6_num_to_net.
10760 (scm_addr_vector): use ipv6_net_to_num.
10761
10762 2001-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
10763
10764 * eq.c (scm_equal_p), ramap.c (scm_init_ramap): Don't compute the
10765 smob number explicitly. Use SCM_TC2SMOBNUM instead.
10766
10767 * gc.c (MARK, scm_gc_sweep): Only check for illegal heap objects
10768 when compiled in debug mode.
10769
10770 (scm_gc_sweep): Only call smob's free function if it is defined.
10771
10772 * print.c (scm_iprin1): No need to check for validity of smob
10773 type or existence of print function.
10774
10775 * smob.[ch] (scm_smobs): Made into a fixed size global array.
10776 Resizing will not work well with preemptive threading.
10777
10778 * smob.c (scm_smob_print): Don't use SCM_CDR to access smob data.
10779
10780 (scm_make_smob_type): Extracted initialization of smob
10781 descriptors to scm_smob_prehistory. Don't use scm_numsmob outside
10782 of the critical section.
10783
10784 (scm_smob_prehistory): Initialize all smob descriptors. By
10785 default, don't assign a smob free function: Most smob types don't
10786 need one.
10787
10788 * smob.h (SMOBH, SCM_SMOB_H): Renamed SMOBH to SCM_SMOB_H.
10789
10790 2001-04-21 Gary Houston <ghouston@arglist.com>
10791
10792 * socket.c (FLIP_NET_HOST_128): new macro.
10793 (scm_fill_sockaddr): use new macro.
10794 (scm_addr_vector): completed IPv6 address support. added const
10795 to the address parameter.
10796
10797 2001-04-20 Gary Houston <ghouston@arglist.com>
10798
10799 * socket.c (scm_fill_sockaddr): call htons for sin6_port.
10800 Don't assign sin6_scope_id in structure unless HAVE_SIN6_SCOPE_ID
10801 is defined.
10802 (scm_addr_vector): use a switch instead of multiple if statements.
10803 Add support for IPv6 (incomplete) .
10804 MAX_ADDR_SIZE: increase to size of struct sockaddr_in6 if needed.
10805
10806 2001-04-20 Dirk Herrmann <D.Herrmann@tu-bs.de>
10807
10808 * struct.c (scm_free_structs): Only pairs may be accessed with
10809 SCM_C[AD]R.
10810
10811 2001-04-19 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
10812
10813 * unif.h (SCM_ARRAY_CONTIGUOUS): Reintroduced as deprecated.
10814
10815 * __scm.h (SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1,
10816 SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_n): Inserted required
10817 parentheses in order to get the correct associativity.
10818
10819 2001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
10820
10821 * unif.c (scm_array_to_list): Added missing handling of arrays of
10822 bytes. Thanks to Masao Uebayashi for the bug report.
10823
10824 2001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
10825
10826 * debug.c (scm_procedure_source): Use SCM_CLOSURE_FORMALS more
10827 consistently.
10828
10829 2001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
10830
10831 * procs.h (SCM_CLOSURE_FORMALS): New macro.
10832
10833 * debug.c (scm_procedure_source), eval.c (scm_badformalsp,
10834 SCM_CEVAL, SCM_APPLY), goops.c (get_slot_value, set_slot_value),
10835 procprop.c (scm_i_procedure_arity), sort.c (closureless): Use
10836 SCM_CLOSURE_FORMALS.
10837
10838 * eval.c (scm_badformalsp, SCM_CEVAL), procprop.c
10839 (scm_i_procedure_arity): Prefer stronger predicates like
10840 SCM_NULLP or SCM_FALSEP over SCM_IMP.
10841
10842 * macros.c (macro_print): Extracted macro printing code from
10843 print.c and simplified it.
10844
10845 (scm_macro_type): Use SCM_MACRO_TYPE;
10846
10847 (scm_init_macros): Use macro_print for printing macros.
10848
10849 * print.c (scm_print_opts): Improved option documentation.
10850
10851 (scm_iprin1): Extracted printing of macros to macros.c.
10852 Simplified printing of ordinary closures.
10853
10854 * procs.c (scm_thunk_p): Fixed handling of closures. Thanks to
10855 Martin Grabmueller for the bug report.
10856
10857 2001-04-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
10858
10859 This patch eliminates some further applications of SCM_C[AD]R to
10860 non pair cells.
10861
10862 * gc.h (SCM_SETAND_CAR, SCM_SETOR_CAR): Deprecated. These have
10863 never been applied to real pairs.
10864
10865 * srcprop.h (SCM_SOURCE_PROPERTY_FLAG_BREAK): Added.
10866
10867 (SRCPROPBRK): Use SCM_SOURCE_PROPERTY_FLAG_BREAK.
10868
10869 * unif.h (SCM_ARRAY_CONTIGUOUS, SCM_ARRAY_FLAG_CONTIGUOUS,
10870 SCM_ARRAY_CONTP): Renamed SCM_ARRAY_CONTIGUOUS to
10871 SCM_ARRAY_FLAG_CONTIGUOUS and use it.
10872
10873 (SCM_SET_ARRAY_CONTIGUOUS_FLAG, SCM_CLR_ARRAY_CONTIGUOUS_FLAG):
10874 Added.
10875
10876 * srcprop.h (SRCPROPH), unif.h (UNIFH): Renamed to
10877 SCM_SOURCE_PROPERTIES_H and SCM_UNIFORM_VECTORS_H, respectively.
10878
10879 * srcprop.h (SETSRCPROPBRK, CLEARSRCPROPBRK), unif.c
10880 (scm_dimensions_to_uniform_array, scm_ra_set_contp): Don't use
10881 SCM_SET{AND,OR}_CAR.
10882
10883 2001-04-17 Gary Houston <ghouston@arglist.com>
10884
10885 * some initial support for IPv6:
10886
10887 * socket.c (scm_fill_sockaddr): improve the argument validation.
10888 don't allocate memory until all args are checked. instead of
10889 unconditional memset of soka, try setting sin_len to 0 if
10890 SIN_LEN is defined. add support for AF_INET6. define FUNC_NAME.
10891 (scm_socket, scm_connect): extend docstrings for IPv6.
10892 (scm_init_socket): intern AF_INET6 and PF_INET6.
10893
10894 2001-04-17 Niibe Yutaka <gniibe@m17n.org>
10895
10896 * srcprop.c (scm_make_srcprops): Added SCM_ALLOW_INTS which
10897 matches SCM_DEFER_INTS at the beginning of the function.
10898
10899 * mallocs.c (scm_malloc_obj): Remove un-matched SCM_ALLOW_INTS.
10900
10901 * gc.c (scm_igc): Unconditionally call
10902 SCM_CRITICAL_SECTION_START/END.
10903
10904 * fluids.c (next_fluid_num): Unconditionally call
10905 SCM_CRITICAL_SECTION_START/END.
10906 (s_scm_make_fluid): Remove un-matched SCM_DEFER_INTS.
10907
10908 * coop-defs.h (SCM_THREAD_DEFER, SCM_THREAD_ALLOW,
10909 SCM_THREAD_REDEFER, SCM_THREAD_REALLOW_1, SCM_THREAD_REALLOW_2):
10910 Removed.
10911
10912 * __scm.h (SCM_CRITICAL_SECTION_START, SCM_CRITICAL_SECTION_END):
10913 Defined as nothing for the case of !defined(USE_THREADS).
10914 (SCM_THREAD_DEFER, SCM_THREAD_ALLOW, SCM_THREAD_REDEFER):
10915 Removed.
10916 (<stdio.h>): Include when (SCM_DEBUG_INTERRUPTS == 1).
10917 (SCM_CHECK_NOT_DISABLED, SCM_CHECK_NOT_ENABLED): Print FILE and
10918 LINE.
10919 (SCM_DEFER_INTS, SCM_ALLOW_INTS_ONLY, SCM_ALLOW_INTS,
10920 SCM_REDEFER_INTS, SCM_REALLOW_INTS): Don't use
10921 SCM_THREAD_DEFER/SCM_THREAD_ALLOW. Instead, use
10922 SCM_CRITICAL_SECTION_START/END.
10923 (SCM_REALLOW_INTS: Bug fix. Don't call
10924 SCM_THREAD_SWITCHING_CODE.
10925 (SCM_TICK): Don't use SCM_DEFER_INTS/SCM_ALLOW_INTS. Instead, use
10926 SCM_THREAD_SWITCHING_CODE directly.
10927 (SCM_ENTER_A_SECTION): Unconditionally use
10928 SCM_CRITICAL_SECTION_START/END. (was:
10929 SCM_DEFER_INTS/SCM_ALLOW_INTS when SCM_POSIX_THREADS defined).
10930
10931 2001-04-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
10932
10933 * __scm.h (SCM_CAREFUL_INTS, SCM_DEBUG_INTERRUPTS): Replaced the
10934 macro SCM_CAREFUL_INTS by the macro SCM_DEBUG_INTERRUPTS and
10935 allowed to explicitly set this macro via the CFLAGS variable
10936 during make.
10937
10938 * fluids.c (next_fluid_num), gc.c (scm_igc), coop-defs.h
10939 (SCM_THREAD_CRITICAL_SECTION_START,
10940 SCM_THREAD_CRITICAL_SECTION_END): Renamed
10941 SCM_THREAD_CRITICAL_SECTION_START/END to
10942 SCM_CRITICAL_SECTION_START/END.
10943
10944 2001-04-11 Keisuke Nishida <kxn30@po.cwru.edu>
10945
10946 * debug-malloc.c (grow, scm_debug_malloc_prehistory): Use memset
10947 instead of bzero.
10948
10949 * coop.c, iselect.c (FD_ZERO_N): Unconditionally use memset.
10950 (MISSING_BZERO_DECL): Remove the declaration.
10951
10952 Thanks to NIIBE Yutaka.
10953
10954 2001-04-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
10955
10956 * init.c, goops.c, goops.h: Reverted change of 2001-03-29. (The
10957 goops module should be registered in order to work for an
10958 application which uses libguile statically linked.)
10959
10960 2001-04-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
10961
10962 * numbers.[ch] (scm_num2long, scm_num2long_long,
10963 scm_num2ulong_long, scm_num2ulong): Argument position is an
10964 unsigned integer.
10965
10966 * environments.c (eval_environment_folder,
10967 import_environment_folder), gh_data.c (gh_scm2longs,
10968 gh_scm2floats, gh_scm2doubles): Distinguish between 0 and NULL
10969 for integers and pointers, respectively.
10970
10971 * gh_data.c (gh_scm2ulong, gh_scm2long, gh_scm2int), socket.c
10972 (scm_fill_sockaddr), unif.c (scm_array_set_x), validate.h
10973 (SCM_NUM2ULONG, SCM_NUM2LONG, SCM_NUM2LONG_DEF,
10974 SCM_NUM2LONG_LONG): Don't pass argument positions as pointers.
10975
10976 * filesys.c (scm_open_fdes, scm_open), net_db (scm_inet_ntoa,
10977 scm_inet_netof, scm_lnaof, scm_gethost, scm_getproto), posix.c
10978 (scm_utime), ramap.c (scm_array_fill_int), scmsigs.c
10979 (scm_sigaction), socket.c (scm_htonl, scm_ntohl, scm_sendto),
10980 stime.c (scm_localtime, scm_gmtime), struct.c (scm_struct_set_x),
10981 validate.h (SCM_VALIDATE_LONG_COPY): Whitespace fixes.
10982
10983 2001-04-09 Neil Jerram <neil@ossau.uklinux.net>
10984
10985 * strings.c (scm_read_only_string_p): Update docstring to reflect
10986 current (non-)usage of "read only" strings.
10987 (scm_make_shared_substring): Clarify docstring by changing
10988 "semantics" to "arguments".
10989
10990 2001-04-06 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10991
10992 * hooks.c (scm_make_hook, scm_make_hook_with_name),
10993 (scm_hook_p, scm_hook_empty_p, scm_run_hook): Docstring
10994 improvements.
10995
10996 2001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
10997
10998 The following changes make the documentation more consistent.
10999
11000 * rdelim.c (scm_write_line), posix.c (scm_utime), ports.c
11001 (scm_seek), net_db.c (scm_inet_aton, scm_inet_ntoa),
11002 (scm_inet_netof, scm_lnaof, scm_inet_makeaddr), ioext.c
11003 (scm_ftell): Changed @smalllisp ... @end smalllisp to @lisp
11004 ... @end lisp.
11005
11006 * vports.c (scm_make_soft_port), version.c (scm_version), unif.c
11007 (scm_array_dimensions, scm_make_shared_array),
11008 (scm_transpose_array, scm_enclose_array, scm_bit_count_star),
11009 throw.c (scm_catch), struct.c (scm_make_vtable_vtable), strop.c
11010 (scm_string_rindex, scm_string_index, scm_substring_fill_x),
11011 (scm_string_null_p), strings.c (scm_read_only_string_p), root.c
11012 (scm_call_with_dynamic_root), ramap.c (scm_array_index_map_x),
11013 posix.c (scm_mknod), numbers.c (scm_logtest, scm_logbit_p),
11014 macros.c (scm_makmmacro), list.c (scm_append), environments.c
11015 (scm_environment_fold), dynwind.c (s_scm_dynamic_wind): Changed
11016 @example ... @end example to @lisp ... @end lisp.
11017
11018 * weaks.c (scm_weak_vector): Corrected docstring.
11019
11020 * hashtab.c (scm_hashq_ref, scm_hashq_set_x, scm_hashq_remove_x),
11021 (scm_hashv_ref, scm_hashv_set_x, scm_hashv_remove_x),
11022 (scm_hash_ref, scm_hash_set_x, scm_hash_remove_x, scm_hashx_ref),
11023 (scm_hashx_set_x, scm_hashx_get_handle),
11024 (scm_hashx_create_handle_x), regex-posix.c (scm_make_regexp),
11025 (scm_regexp_exec, scm_regexp_p), numbers.c (scm_logtest),
11026 vectors.c (scm_vector_fill_x), strings.c
11027 (scm_make_shared_substring), symbols.c (scm_string_to_symbol),
11028 objprop.c (scm_set_object_properties_x):
11029 (scm_set_object_property_x), throw.c (scm_catch, scm_lazy_catch),
11030 strports.c (scm_call_with_input_string), ports.c
11031 (scm_truncate_file), ioext.c (scm_ftell), ports.c (scm_seek),
11032 list.c (scm_append_x), dynwind.c (scm_dynamic_wind), error.c
11033 (scm_error_scm), vports.c (scm_make_soft_port), weaks.c
11034 (scm_make_weak_vector,scm_weak_vector_p),
11035 (scm_make_weak_key_hash_table, scm_make_weak_value_hash_table),
11036 (scm_make_doubly_weak_hash_table, scm_weak_key_hash_table_p),
11037 (scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
11038 macros.c (scm_macro_type), dynl.c (scm_dynamic_link),
11039 (scm_dynamic_unlink, scm_dynamic_call, scm_dynamic_args_call):
11040 Made parameter names match documentation by renaming parameters
11041 and/or fixing docstrings.
11042
11043 * numbers.c (scm_ash): Corrected Texinfo markup.
11044
11045 * strop.c (scm_string_index, scm_string_rindex),
11046 (scm_substring_fill_x, scm_string_null_p): Removed `qdocs'.
11047
11048 * vports.c (scm_make_soft_port), unif.c
11049 (scm_uniform_vector_length, scm_array_p, scm_array_rank),
11050 (scm_dimensions_to_uniform_array, scm_transpose_array),
11051 (scm_array_in_bounds_p, scm_uniform_vector_ref),
11052 (scm_bit_count, scm_bit_position, scm_bit_count_star),
11053 (scm_array_to_list, scm_list_to_uniform_array),
11054 (scm_array_prototype, symbols.c (scm_string_to_symbol), strports.c
11055 (scm_open_input_string, scm_open_output_string),
11056 (scm_get_output_string), strop.c (scm_string_copy),
11057 (scm_string_fill_x), strings.c (scm_string_p, scm_string), stime.c
11058 (scm_get_internal_real_time, scm_times),
11059 (scm_get_internal_run_time, scm_current_time, scm_gettimeofday),
11060 (scm_localtime, scm_gmtime), socket.c (scm_htons, scm_ntohs),
11061 (scm_htonl, scm_ntohl, scm_socket, scm_socketpair),
11062 (scm_getsockopt, scm_getsockname, scm_getpeername, scm_recvfrom),
11063 simpos.c (scm_system), random.c (scm_random_uniform),
11064 (scm_random_normal, scm_random_exp), ramap.c
11065 (scm_array_equal_p), posix.c (scm_pipe, scm_getgroups),
11066 (scm_status_exit_val, scm_status_term_sig, scm_status_stop_sig),
11067 (scm_getppid, scm_getuid, scm_getgid, scm_geteuid, scm_getegid),
11068 (scm_getpgrp, scm_ttyname, scm_ctermid, scm_tcgetpgrp, scm_uname),
11069 (scm_environ, scm_tmpnam, scm_mkstemp, scm_access, scm_getpid),
11070 (scm_setlocale), ports.c (scm_char_ready_p, scm_drain_input),
11071 (scm_pt_size, scm_pt_member, scm_port_revealed, scm_port_mode),
11072 (scm_close_port, scm_input_port_p, scm_output_port_p, scm_port_p),
11073 (scm_port_closed_p, scm_eof_object_p, scm_read_char),
11074 (scm_peek_char), pairs.c (scm_pair_p, scm_cons), numbers.c
11075 (scm_logand, scm_logior, scm_logxor, scm_lognot),
11076 (scm_integer_expt, scm_bit_extract, scm_logcount),
11077 (scm_integer_length, scm_string_to_number, scm_inexact_to_exact),
11078 net_db.c (scm_inet_netof, scm_lnaof), modules.c
11079 (scm_interaction_environment), macros.c (scm_makacro),
11080 (scm_makmacro, scm_makmmacro), keywords.c (scm_keyword_p), ioext.c
11081 (scm_ftell, scm_dup_to_fdes, scm_fileno, scm_isatty_p),
11082 (scm_fdopen, scm_fdes_to_ports), gc.c (scm_gc_stats), fluids.c
11083 (scm_fluid_ref), filesys.c (scm_open_fdes),
11084 (scm_stat, scm_directory_stream_p, scm_getcwd, scm_readlink):
11085 Docstring correction: `Returns' -> `Return'
11086
11087 * gc.c (scm_set_debug_cell_accesses_x):
11088 (s_scm_gc_set_debug_check_freelist_x):
11089 * fluids.c (scm_fluid_p): Added texinfo markup.
11090
11091 * error.c (scm_strerror): Made docstring more precise.
11092
11093 * vectors.c (scm_vector_p, scm_vector, scm_make_vector),
11094 (scm_vector_to_list, _scm_vector_fill_x), symbols.c
11095 (scm_symbol_p, scm_symbol_to_string), strorder.c
11096 (scm_string_equal_p, scm_string_ci_equal_p, scm_string_less_p),
11097 (scm_string_leq_p, scm_string_gr_p, scm_string_geq_p),
11098 (scm_string_ci_less_p, scm_string_ci_leq_p, scm_string_ci_gr_p):
11099 (scm_string_ci_geq_p), strop.c (scm_string_copy),
11100 (scm_string_fill_x): Removed `(r5rs)' from docstrings.
11101
11102 2001-04-01 Dirk Herrmann <D.Herrmann@tu-bs.de>
11103
11104 * gc.c (MARK): Re-introduce a cheap sanity test for non debug
11105 mode, as suggested by Michael Livshin.
11106
11107 2001-03-31 Michael Livshin <mlivshin@bigfoot.com>
11108
11109 * backtrace.c (display_backtrace_body): since the `print_state'
11110 variable is not used (instead its data field is used directly as
11111 `pstate'), protect it from the hungry compiler optimizations.
11112 thanks to Bill Schottstaedt for the report.
11113
11114 2001-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
11115
11116 * gc.[ch] (scm_tc16_allocated): New type tag for allocated cells.
11117 It is only defined and used if guile is compiled with
11118 SCM_DEBUG_CELL_ACCESSES set to true. It's purpose is, to never
11119 let cells with a free_cell type tag be visible outside of the
11120 garbage collector when in debug mode.
11121
11122 * gc.c (scm_debug_cell_accesses_p): Set to true as default.
11123
11124 (scm_assert_cell_valid): Use a local static variable to avoid
11125 recursion.
11126
11127 (MARK): Only check for rogue cell pointers in debug mode. Use
11128 scm_cellp for this purpose and place all checks for rogue pointers
11129 into that function. Further, since due to conservative scanning
11130 we may encounter free cells during marking, don't use the standard
11131 cell type accessor macro to determine the cell type.
11132
11133 (scm_cellp): Check if the cell pointer actually points into a
11134 card header.
11135
11136 (scm_init_gc): Initalize scm_tc16_allocated.
11137
11138 * gc.h (GCH): Renamed to SCM_GC_H.
11139
11140 (SCM_VALIDATE_CELL): Enclose the expression in brackets. This
11141 might be unnecessary, but I feel better this way :-)
11142
11143 (SCM_GC_CELL_TYPE): New macro.
11144
11145 (SCM_SETAND_CDR, SCM_SETOR_CDR): Deprecated. These are not used
11146 in guile, and it is unlikely that they will be applied to real
11147 pairs anyway.
11148
11149 (SCM_SET_FREE_CELL_TYPE): Removed. It was not used.
11150
11151 (SCM_GC_SET_ALLOCATED): New macro. Only non-empty if guile is
11152 compiled with SCM_DEBUG_CELL_ACCESSES set to true.
11153
11154 (SCM_NEWCELL, SCM_NEWCELL2): Use of SCM_GC_SET_ALLOCATED will
11155 make sure that in debug mode no free cell will ever be visible
11156 outside of the garbage collector.
11157
11158 2001-03-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
11159
11160 * async.c (scm_asyncs_pending): Don't use != to compare SCM
11161 values.
11162
11163 * async.c (scm_system_async), variable.c (scm_make_variable,
11164 scm_make_undefined_variable): Use scm_cons to create a pair.
11165
11166 * debug.c (scm_reverse_lookup): Perform proper type checking.
11167 Remove suspicious use of SCM_SLOPPY_CONSP.
11168
11169 * eq.c (scm_equal_p), tags.h (SCM_ECONSP): Use SCM_CONSP instead
11170 of SCM_SLOPPY_CONSP. A sane compiler should be able to perform
11171 the corresponding optimization.
11172
11173 * eval.c (iqq): Use proper type check.
11174
11175 (scm_m_expand_body): Remove redundant type checks.
11176
11177 (promise_print): Don't access promise cells as pairs.
11178
11179 * eval.c (EVALCAR, iqq, scm_m_expand_body, scm_eval_args,
11180 scm_deval_args SCM_CEVAL), guardians.c (scm_guard), hashtab.c
11181 (scm_internal_hash_fold), print.c (scm_iprlist): Use !SCM_CELLP
11182 for SCM_NCELLP, !SCM_CONSP for SCM_NCONSP, !SCM_IMP for SCM_NIMP,
11183 !SCM_FALSEP for SCM_NFALSEP, !SCM_NULLP for SCM_NNULLP
11184
11185 * eval.c (scm_m_define, scm_macroexp, SCM_CEVAL), print.c
11186 (scm_iprin1): Use new macro predicate and accessors.
11187
11188 * eval.h (scm_tc16_macro): Removed declaration. It is declared
11189 in macros.h.
11190
11191 * eval.h (EVALH), macros.h (MACROSH), ports.h (PORTSH), procs.h
11192 (PROCSH), tags.h (TAGSH), variable.h (VARIABLEH): Renamed to
11193 SCM_EVAL_H, SCM_MACROS_H, SCM_PORTS_H, SCM_PROCS_H, SCM_TAGS_H and
11194 SCM_VARIABLE_H. Even the macros that are used to inhibit
11195 including a header file twice should be in the SCM_ namespace.
11196
11197 * fluids.c (scm_swap_fluids, scm_swap_fluids_reverse),
11198 properties.c (scm_primitive_property_ref,
11199 scm_primitive_property_del_x): Prefer stronger predicates like
11200 SCM_NULLP or SCM_FALSEP over SCM_IMP.
11201
11202 * gc.c (MARK): Use proper macros to access procedure-with-setter
11203 cell elements and closure cell elements.
11204
11205 (gc_sweep_freelist_finish, scm_gc_sweep, init_heap_seg): Don't
11206 access free cells as pairs.
11207
11208 (scm_unprotect_object): scm_hashq_get_handle returns #f if
11209 no hashtab entry is found.
11210
11211 * gc.c (scm_gc_sweep), ports.c (scm_close_port): Use new macro
11212 SCM_CLR_PORT_OPEN_FLAG.
11213
11214 * guardians.c (TCONC_IN), print.c (scm_free_print_state): Don't
11215 use SCM_SET_C[AD]R for uninitialized cells.
11216
11217 * hashtab.c (scm_hash_fn_get_handle): Use SCM_VALIDATE_VECTOR.
11218 If the hashtable has no slots, return #f instead of '(). This
11219 unifies the return value with most assoc-functions.
11220
11221 (scm_hash_fn_ref): Use proper type check.
11222
11223 (scm_hashq_get_handle, scm_hashv_get_handle, scm_hash_get_handle):
11224 Removed references to non-existing functions from documentation.
11225
11226 * keywords.c (scm_keyword_dash_symbol): Use proper macros to
11227 access keyword cell elements.
11228
11229 * macros.h (SCM_MACROP, SCM_MACRO_TYPE, SCM_MACRO_CODE): New
11230 macros.
11231
11232 * ports.h (SCM_CLR_PORT_OPEN_FLAG): New macro.
11233
11234 * print.c (scm_iprlist): Added comment. Improved loop
11235 conditions.
11236
11237 * procs.h (SCM_ENV, SCM_SETENV): Don't access closure cells as
11238 pairs.
11239
11240 * smob.c (scm_markcdr): Don't access smob cells as pairs.
11241
11242 * tags.h (SCM_SLOPPY_CONSP, SCM_SLOPPY_NCONSP): Deprecated.
11243
11244 * throw.c (ACTIVATEJB, DEACTIVATEJB): Don't access jump buffer
11245 cells as pairs.
11246
11247 * variable.c (variable_print, variable_equalp, scm_variable_ref,
11248 scm_variable_set_x): Use proper macros to access variable cell
11249 elements.
11250
11251 (scm_variable_bound_p): Don't use SCM_NEGATE_BOOL.
11252
11253 * variable.h (SCM_VARVCELL): Don't access variable cells as
11254 pairs.
11255
11256 * vectors.c (scm_vector), weaks.c (scm_weak_vector): Simplified,
11257 added FIXME comment, removed register specifier.
11258
11259 2001-03-29 Keisuke Nishida <kxn30@po.cwru.edu>
11260
11261 * goops.c, goops.h (scm_init_oop_goops_goopscore_module): Deprecated.
11262 * init.c (scm_init_guile_1): Don't init goopscore module.
11263
11264 2001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
11265
11266 * eval.c (SCM_APPLY): Check that arg1 is bound for scm_tc7_cxr.
11267
11268 2001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11269
11270 * strop.c (scm_string_to_list): Fixed docstring markup.
11271 (scm_string_upcase_x, scm_string_upcase, scm_string_downcase_x),
11272 (scm_string_downcase, scm_string_capitalize_x),
11273 (scm_string_capitalize): Rewrote and corrected docstrings.
11274 (scm_string_ci_to_symbol): Made docstring more explicit.
11275
11276 2001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
11277
11278 * values.h (scm_values_vtable, SCM_VALUESP): Moved here so that
11279 eval.c can use it.
11280 (scm_call_with_values): Removed.
11281 * values.c (values_vtable, scm_values_vtable): Added "scm_" prefix
11282 so that it can be exported.
11283 (scm_call_with_values): Removed.
11284
11285 * tags.h (SCM_IM_CALL_WITH_VALUES): New isym.
11286 * eval.c: Include "libguile/values.h"
11287 (scm_m_at_call_with_values, scm_sym_at_call_with_values):
11288 New.
11289 (unmemocopy, scm_ceval, scm_deval): Handle new isym.
11290 * eval.h (scm_sym_at_call_with_values, scm_m_at_call_with_values):
11291 New delcarations to support above change.
11292
11293 * eval.c (scm_primitive_eval_x, scm_primitive_eval): Fix syntax
11294 errors with last change.
11295
11296 2001-03-25 Marius Vollmer <mvo@zagadka.ping.de>
11297
11298 * eval.c (scm_primitive_eval_x, scm_primitive_eval, scm_i_eval_x,
11299 scm_i_eval): Moved the application of the system transformer from
11300 scm_i_eval to scm_primitive_eval.
11301
11302 2001-03-23 Neil Jerram <neil@ossau.uklinux.net>
11303
11304 * guile-snarf.awk.in: Substitute "\\" with "\" in .doc output.
11305
11306 * strop.c (scm_string_index): Fix docstring line break
11307 regression.
11308
11309 * list.c (scm_cons_star): Fix docstring typo.
11310
11311 2001-03-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
11312
11313 * gc.c (scm_init_storage), gdbint.c (scm_init_gdbint), numbers.c
11314 (big2str), ports.c (scm_drain_input), read.c (scm_read,
11315 scm_grow_tok_buf), strings.c (scm_string, scm_makfromstr,
11316 scm_make_string, scm_string_append), strports.c (st_resize_port,
11317 scm_object_to_string), unif.c (scm_make_uve): Replace calls to
11318 scm_makstr with calls to scm_allocate_string.
11319
11320 * strings.[ch] (scm_allocate_string): New function.
11321
11322 * strings.[ch] (scm_makstr): Deprecated.
11323
11324 2001-03-18 Gary Houston <ghouston@arglist.com>
11325
11326 * posix.c (scm_tmpnam): check that return value from tmpnam is not
11327 NULL. rewrote the docstring.
11328 (scm_mkstemp): new procedure implementing "mkstemp!".
11329 * posix.h: declare scm_mkstemp.
11330
11331 * net_db.c: declare h_errno if configure didn't define HAVE_H_ERRNO.
11332 normally it would be found in netdb.h.
11333
11334 2001-03-17 Gary Houston <ghouston@arglist.com>
11335
11336 * sort.c (scm_sort): move sortvec variable to avoid a compiler
11337 warning when HAVE_ARRAYS is not defined. move len too.
11338
11339 * Makefile.am (DOT_X_FILES): remove net_db.x, posix.x, socket.x.
11340 (EXTRA_DOT_X_FILES): let configure set the value.
11341 (DOT_DOC_FILES): remove net_db.doc, posix.doc, socket.doc.
11342
11343 * gc.c (scm_must_malloc): changed the comment explaining when
11344 scm_must variants of malloc/free etc., should be used, based on
11345 explanation from Dirk Herrmann.
11346 * fports.c (scm_fport_buffer_add): use FUNC_NAME instead of a local
11347 string with procedure name. use scm_must_malloc instead of malloc.
11348 (scm_setvbuf, scm_fdes_to_port, fport_close): use scm_must variants
11349 of malloc/free.
11350 * ports.c (scm_add_to_port_table, scm_remove_from_port_table,
11351 scm_ungetc): use scm_must variants of malloc/realloc/free.
11352 (scm_add_to_port_table, scm_ungetc): define FUNC_NAME.
11353
11354 2001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
11355
11356 * __scm.h (SCM_ASSERT, SCM_WTA_DISPATCH_0, SCM_WTA_DISPATCH_1,
11357 SCM_WTA_DISPATCH_2, SCM_WTA_DISPATCH_n): Don't call scm_wta, call
11358 scm_wrong_type_arg instead.
11359
11360 (SCM_WNA): Deprecated.
11361
11362 * error.[ch] (scm_wta): Deprecated.
11363
11364 * numbers.c (s_i_log): Minor comment fix.
11365
11366 * read.c (scm_lreadr), unif.c (scm_aind, scm_shap2ra,
11367 scm_make_shared_array, scm_transpose_array, scm_enclose_array,
11368 scm_array_in_bounds_p): Don't use SCM_ASSERT to check for
11369 wrong-num-args or misc errors.
11370
11371 * unif.c (scm_make_shared_array, scm_transpose_array,
11372 scm_enclose_array, scm_array_in_bounds_p, scm_array_set_x):
11373 Validate the rest argument (note: this is only done when guile is
11374 built with SCM_DEBUG_REST_ARGUMENT=1)
11375
11376 (scm_array_in_bounds_p, scm_uniform_vector_ref, scm_array_set_x):
11377 Replace calls to scm_wrong_num_args by SCM_WRONG_NUM_ARGS.
11378
11379 * validate.h (SCM_FUNC_NAME, SCM_VALIDATE_NUMBER_COPY,
11380 SCM_VALIDATE_NUMBER_DEF_COPY): Deprecated.
11381
11382 2001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
11383
11384 * validate.h (SCM_WRONG_NUM_ARGS): Call scm_error_num_args_subr
11385 instead of scm_wrong_num_args.
11386
11387 * coop-threads.c: Don't include libguile/strings.h. (Was only
11388 needed for former implementation of SCM_WRONG_NUM_ARGS.)
11389
11390 * debug.c (scm_m_start_stack): Don't use SCM_ASSERT to check for
11391 wrong-num-args errors.
11392
11393 2001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
11394
11395 * error.[ch] (scm_error_num_args_subr): New function.
11396
11397 2001-03-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11398
11399 * list.c (scm_list, scm_cons_star, scm_null_p, scm_list_p),
11400 (scm_length, scm_append, scm_reverse, scm_list_ref),
11401 (scm_memq, scm_memv, scm_member, scm_delv_x, scm_delete_x),
11402 (scm_delq, scm_delv, scm_delete, scm_delq1_x, scm_delv1_x),
11403 (scm_delete1_x), gc.c (scm_map_free_list),
11404 (scm_free_list_length), hash.c (scm_hashq, scm_hashv),
11405 (scm_hash), hashtab.c (scm_hashq_ref, scm_hashq_set_x),
11406 (scm_hashq_remove_x, scm_hashv_ref, scm_hashv_set_x),
11407 (scm_hashv_remove_x, scm_hash_ref, scm_hash_set_x),
11408 (scm_hash_remove_x), ports.c (scm_pt_size, scm_pt_member), print.c
11409 (scm_current_pstate), scmsigs.c (scm_usleep), goops.c
11410 (scm_get_keyword, scm_sys_compute_slots): Added texinfo markup.
11411
11412 * weaks.c (scm_weak_vector_p, scm_weak_key_hash_table_p),
11413 (scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
11414 rdelim.c (scm_read_delimited_x), strop.c (scm_string_index),
11415 symbols.c (scm_symbol_interned_p), numbers.c
11416 (scm_string_to_number), ports.c (scm_port_p): Corrected texinfo
11417 markup.
11418
11419 2001-03-16 Keisuke Nishida <kxn30@po.cwru.edu>
11420
11421 * snarf.h (SCM_CONST_LONG): Deprecated.
11422 * tag.c (CONST_INUM): New macro. Use it to define scm_utag_*.
11423
11424 2001-03-15 Marius Vollmer <marius.vollmer@uni-dortmund.de>
11425
11426 * numbers.c (scm_num2ulong): Check that a bignum is positive
11427 before looking at the magnitude. Correctly check for overflow
11428 during conversion.
11429 (scm_num2long_long): Likewise.
11430 (scm_num2ulong_long): New.
11431 (ULONG_LONG_MAX): Define if not already defined.
11432 * numbers.h: (scm_num2ulong_long): New prototype.
11433
11434 2001-03-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11435
11436 * validate.h (SCM_VALIDATE_OPOUTSTRPORT): New macro.
11437
11438 * strports.h (SCM_STRPORTP, SCM_OPSTRPORTP, SCM_OPINSTRPORTP),
11439 (SCM_OPOUTSTRPORTP): New predicate macros.
11440 (scm_open_input_string, scm_open_output_string),
11441 (scm_get_output_string): New prototypes.
11442
11443 * strports.c (scm_open_input_string, scm_open_output_string),
11444 (scm_get_output_string): New procedures (SRFI-6 compliant).
11445 Made scm_tc16_strport non-static.
11446
11447 2001-03-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
11448
11449 * macros.h (SCM_ASSYNT): Removed unused object argument from
11450 signature.
11451
11452 * eval.c (scm_m_body, scm_m_quote, scm_m_begin, scm_m_if,
11453 scm_m_set_x, scm_m_and, scm_m_or, scm_m_case, scm_m_cond,
11454 scm_m_letstar, scm_m_do, scm_m_quasiquote, scm_m_delay,
11455 scm_m_define, scm_m_letrec1, scm_m_letrec, scm_m_let, scm_m_apply,
11456 scm_m_cont, scm_m_nil_cond, scm_m_nil_ify, scm_m_t_ify,
11457 scm_m_0_cond, scm_m_0_ify, scm_m_1_ify, scm_m_atfop, scm_m_atbind,
11458 scm_m_expand_body), evalext.c (scm_m_generalized_set_x,
11459 scm_m_undefine), goops.c (scm_m_atslot_ref, scm_m_atslot_set_x,
11460 scm_m_atdispatch): Removed unused object argument from call to
11461 SCM_ASSYNT.
11462
11463 2001-03-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
11464
11465 * gh.h/gh_data.c (gh_ints2scm): Changed the signature to use a
11466 const int* to reflect that the input array of integers remains
11467 unchanged. Thanks to Brett Viren for the hint.
11468
11469 2001-03-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11470
11471 * gh_data.c (gh_scm2chars, gh_scm2shorts, gh_scm2longs),
11472 (gh_scm2floats, gh_scm2doubles): Check for malloc() returning NULL
11473 in various places.
11474 (gh_scm2newstr, gh_symbol2newstr): Change call to
11475 scm_must_malloc() to malloc(), because user-free()able memory is
11476 allocated.
11477
11478 * gc.c: Added declaration of `scm_debug_check_freelist'.
11479
11480 2001-03-13 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11481
11482 * ports.c (scm_port_mode): Changed `mode' array size to 4.
11483
11484 2001-03-12 Keisuke Nishida <kxn30@po.cwru.edu>
11485
11486 * strports.c (scm_object_to_string): New procedure.
11487 (scm_strprint_obj): Deprecated.
11488 * strports.h: Reflect the changes.
11489
11490 2001-03-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
11491
11492 * goops.h (SCM_VALIDATE_PUREGENERIC): New macro.
11493
11494 * goops.c (scm_m_atslot_ref, scm_m_atslot_set_x,
11495 scm_m_atdispatch): Provide definitions for FUNC_NAME. Don't use
11496 SCM_ASSYNT to check for correct argument types. Either use some
11497 SCM_VALIDATE_* macro or an explicit test.
11498
11499 (scm_make_foreign_object): Don't use SCM_ASSERT to check for
11500 misc-errors.
11501
11502 * macros.h (SCM_ASSYNT): On assertion failure, issue a misc-error
11503 instead of calling scm_wta.
11504
11505 2001-03-12 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11506
11507 * load.c (scm_primitive_load, scm_primitive_load_path),
11508 (scm_sys_search_load_path): Corrected docstrings (file ->
11509 filename).
11510
11511 * eval.c (scm_force): Added texinfo markup to docstring.
11512 (scm_promise_p): Renamed parameter to `obj' to match docstring.
11513
11514 * debug-malloc.c: Reinserted #include <stdio.h>.
11515
11516 2001-03-11 Keisuke Nishida <kxn30@po.cwru.edu>
11517
11518 * list.c (s_scm_reverse_x): Use SCM_VALIDATE_LIST.
11519
11520 * environments.c, error.c, eval.c, filesys.c, hashtab.c, load.c,
11521 net_db.c, procprop.c, read.c, scmsigs.c, socket.c, struct.c:
11522 Use SCM_LISTn instead of scm_listify.
11523
11524 2001-03-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11525
11526 * _scm.h: Removed #include <errno.h>.
11527
11528 * error.c, net_db.c, putenv.c, stime.c: Removed declaration of
11529 errno variable (can be a macro on some systems, for example when
11530 using linux libc with threads).
11531
11532 * error.c, filesys.c, gc.c, ioext.c, iselect.c, net_db.c, ports.c,
11533 posix.c, print.c, putenv.c, scmsigs.c, script.c, simpos.c, smob.c,
11534 socket.c, srcprop.c, stime.c, strop.c, unif.c, vports.c: Added
11535 #include <errno.h> in these 20 out of 100 files.
11536
11537 2001-03-10 Gary Houston <ghouston@arglist.com>
11538
11539 * socket.c: add a definition of SUN_LEN (from glibc) for when it's
11540 not already defined.
11541
11542 2001-03-09 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11543
11544 * coop.c: Inserted #include <stdio.h>.
11545
11546 * iselect.c: Reinserted #include <stdio.h>.
11547
11548 2001-03-10 Marius Vollmer <mvo@zagadka.ping.de>
11549
11550 * posix.c: Replaced `#define' of __USE_XOPEN right before
11551 including unistd.h with a define of _GNU_SOURCE at the very top of
11552 the file.
11553
11554 2001-03-09 Keisuke Nishida <kxn30@po.cwru.edu>
11555
11556 * alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
11557 continuations.c, debug-malloc.c, debug.c, dynwind.c, eq.c, eval.c,
11558 feature.c, filesys.h, gc_os_dep.c, gh_data.c, gh_eval.c,
11559 gh_funcs.c, gh_io.c, gh_list.c, gh_predicates.c, hash.c,
11560 hashtab.c, iselect.c, keywords.c, list.c, load.c, mallocs.c,
11561 net_db.c, numbers.c, objprop.c, objprop.h, options.c, pairs.c,
11562 print.c, procprop.c, procs.c, properties.c, ramap.c,
11563 regex-posix.c, root.c, scmsigs.c, simpos.c, socket.c, srcprop.c,
11564 stackchk.c, stacks.c, strings.c, strop.c, strorder.c, struct.c,
11565 symbols.c, tag.c, threads.c, variable.c, vectors.c, weaks.c:
11566 Remove #include <stdio.h>
11567 * gc.c, gdbint.c, root.c, sort.c, unif.c: Add #include <string.h>.
11568
11569 * procs.c (scm_make_subr_opt): Init symcell to avoid warning.
11570
11571 2001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11572
11573 * posix.c (scm_gethostname): Set initial name length to 256 for
11574 Solaris.
11575
11576 2001-03-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11577
11578 * posix.h (scm_crypt, scm_chroot, scm_getlogin, scm_cuserid),
11579 (scm_getpriority, scm_setpriority, scm_getpass, scm_flock),
11580 (scm_sethostname, scm_gethostname): New prototypes.
11581
11582 * posix.c: Added inclusion of <crypt.h>, <sys/resource.h> and
11583 <sys/file.h>, if present.
11584 (scm_init_posix): [PRIO_PROCESS, PRIO_PGRP, PRIO_USER, LOCK_SH,
11585 LOCK_EX, LOCK_UN, LOCK_NB]: New variables.
11586 (scm_crypt, scm_chroot, scm_getlogin, scm_cuserid),
11587 (scm_getpriority, scm_setpriority, scm_getpass, scm_flock),
11588 (scm_sethostname, scm_gethostname): New procedures.
11589
11590 2001-03-08 Neil Jerram <neil@ossau.uklinux.net>
11591
11592 * ports.c (scm_port_column): Docstring fixes: (i) port-line arg is
11593 not optional (ii) "recommend" spelling correction.
11594
11595 2001-03-08 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11596
11597 * ramap.c (racp): Removed optimization which caused array copying
11598 to fail if the two arrays shared storage. Re-inserted the IVDEP
11599 macros removed in the change of 2000-03-09. (Don't really have a
11600 complete grasp of what they are for, but they seem to be necessary
11601 on Crays. This needs testing!) Thanks to Miroslav Silovic.
11602
11603 * hash.c (scm_string_hash): Don't downcase characters.
11604
11605 2001-03-07 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11606
11607 * symbols.c (scm_symbols_prehistory): Changed symbol hash table
11608 size from 277 --> 1009.
11609
11610 * symbols.c, symbols.h (scm_sys_symbols): New function GUILE_DEBUG
11611 function.
11612
11613 * coop-threads.c: Fixed change of 2001-03-06.
11614
11615 * validate.h: Code formatting.
11616
11617 2001-03-07 Keisuke Nishida <kxn30@po.cwru.edu>
11618
11619 * Makefile.am (*.x): Add dependency on snarf.h and guile-doc-snarf.in.
11620 (*.doc): Add dependency on guile-snarf.awk.in.
11621
11622 * guile-snarf.awk.in: Neglect spaces at the end of
11623 SCM_SNARF_DOCSTRING_END. Skip lines "# NN ..." in the
11624 middle of docstrings. (To avoid the problem with gcc-2.96.)
11625
11626 2001-03-06 Dirk Herrmann <D.Herrmann@tu-bs.de>
11627
11628 * coop-threads.c (scm_call_with_new_thread), load.c
11629 (scm_primitive_load, scm_sys_search_load_path), random.c
11630 (scm_c_default_rstate), struct.c (scm_make_struct_layout,
11631 scm_struct_ref, scm_struct_set_x): Don't use SCM_ASSERT to
11632 (potentially) issue a scm-misc-error or wrong-num-args error
11633 message.
11634
11635 * load.c (scm_search_path): Use SCM_ASSERT_TYPE to give details
11636 about the expected type with the wrong-type-arg error message.
11637
11638 * smob.c (scm_make_smob): Abort on misuse of smob - it indicates
11639 a C level bug that can't be fixed from scheme anyway.
11640
11641 2001-03-05 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11642
11643 * eval.c (scm_m_letstar): Removed check for duplicate bindings.
11644 Duplicate bindings are OK in a let* since a let* is semantically
11645 equivalent to a nested set of let:s.
11646
11647 2001-03-05 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11648
11649 * print.c (scm_print_options): Fixed texinfo in docstring.
11650
11651 * net_db.c (scm_getserv, scm_getproto, scm_getnet): Return #f if
11652 the underlying functions getservent, getprotoent or getnetent
11653 return NULL instead of signalling an error.
11654
11655 2001-03-04 Gary Houston <ghouston@arglist.com>
11656
11657 * socket.c (scm_fill_sockaddr): don't allow buffer overflows when
11658 taking an unexpectedly large filename for an AF_UNIX socket from
11659 bind/connect/sendto (thanks to Martin Grabmueller).
11660
11661 * socket.c (scm_sock_fd_to_port, SCM_SOCK_FD_TO_PORT): removed the
11662 former and adjusted the latter.
11663 (scm_socket, scm_socketpair): cosmetic changes.
11664 (scm_getsockopt, scm_setsockopt): declare optlen as int, not
11665 size_t as socklen_t substitute. don't restrict args/return values
11666 to INUM: allow full range of int or size_t.
11667 (scm_fill_sockaddr): check arguments before allocating memory, to
11668 avoid leakage. use malloc, not scm_must_malloc.
11669 (scm_connect, scm_bind, scm_sendto): use int, not size_t as socklen_t
11670 substitute. free the sockaddr structure before throwing an error.
11671 (scm_init_add_buffer): procedure removed, together with its static
11672 buffer scm_addr_buffer, which wouldn't be thread safe. instead,
11673 define a macro MAX_ADDR_SIZE and declare the buffer where needed.
11674 (scm_accept, scm_getpeername, scm_getsockname, scm_recvfrom,
11675 scm_sendto): use a local buffer instead of scm_addr_buffer.
11676 adjust for new SCM_SOCK_FD_TO_PORT. use int for address size,
11677 not size_t.
11678 (scm_recvfrom): set addr->sa_family to AF_UNSPEC before the recvfrom
11679 call to detect whether recvfrom could be bothered to set the address.
11680 (scm_init_socket): don't call scm_init_addr_buffer.
11681
11682 2001-03-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
11683
11684 * debug.c (scm_procedure_source, scm_procedure_environment),
11685 print.c (scm_get_print_state), ramap.c (scm_array_fill_int,
11686 scm_array_index_map_x), sort.c (scm_sort_x, scm_sort,
11687 scm_stable_sort_x, scm_stable_sort), stacks.c (scm_make_stack,
11688 scm_last_stack_frame), symbols.c (scm_sym2vcell, scm_sym2ovcell),
11689 unif.c (scm_list_to_uniform_array, scm_uniform_vector_length,
11690 scm_transpose_array, scm_enclose_array, scm_array_in_bounds_p,
11691 scm_uniform_vector_ref, scm_array_set_x, scm_uniform_array_read_x,
11692 scm_uniform_array_write, scm_bit_set_star_x, scm_bit_count_star,
11693 scm_array_to_list, scm_array_prototype), validate.h
11694 (SCM_VALIDATE_NUMBER_COPY): Don't call function scm_wta, call
11695 scm_misc_error or scm_wrong_type_arg instead.
11696
11697 * validate.h (SCM_WTA, RETURN_SCM_WTA): Deprecated.
11698
11699 2001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11700
11701 * goops.c, goops.h (scm_sys_pre_expand_closure_x): Removed.
11702 (scm_sys_tag_body): Added.
11703
11704 2001-03-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
11705
11706 * continuations.c (continuation_apply), eval.c (scm_m_lambda,
11707 scm_m_letstar, scm_m_letrec1, scm_m_let, SCM_APPLY), eval.h
11708 (SCM_EVALIM2), evalext.c (scm_m_generalized_set_x), gc.c
11709 (get_bvec, MARK), goops.c (scm_primitive_generic_generic),
11710 options.c (scm_options), ports.c (scm_remove_from_port_table),
11711 ramap.c (scm_ramapc), read.c (skip_scsh_block_comment, scm_lreadr,
11712 scm_lreadparen, scm_lreadrecparen), script.c (script_get_octal,
11713 script_get_backslash, script_read_arg), unif.c (scm_cvref): Don't
11714 call function scm_wta, call scm_misc_error or scm_wrong_type_arg
11715 instead.
11716
11717 2001-03-04 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11718
11719 * goops.c (scm_sys_pre_expand_closure_x): New procedure.
11720
11721 2001-03-04 Marius Vollmer <mvo@zagadka.ping.de>
11722
11723 * eval.c (scm_s_duplicate_bindings): New error message.
11724 (scm_m_letrec1, scm_m_letstar): Check for duplicate bindings.
11725
11726 2001-03-03 Marius Vollmer <mvo@zagadka.ping.de>
11727
11728 * eval.h (SCM_EVALIM2): New macro. Use it when a
11729 immediate, literal constant should be evaluated.
11730 * eval.c (scm_s_duplicate_formals): New error message string.
11731 (scm_c_improper_memq): New function.
11732 (scm_m_lambda): Check for duplicate arguments.
11733 (scm_ceval, scm_deval): When executing a body: only cons a new
11734 toplevel environment frame when it is different from the
11735 existing one; use EVALCAR instead of SIDEVAL so that we can properly
11736 check for empty combinations; use SCM_EVALIM2 for the same reason
11737 in the non-toplevel loop.
11738 (nontoplevel_cdrxnoap, nontoplevel_cdrxbegin, nontoplevel_begin):
11739 New labels with the meaning of their non-"nontoplevel" partners,
11740 but they are used when it is known that the body is not evaluated at
11741 top-level.
11742 (scm_apply, scm_dapply): use SCM_EVALIM2 to get proper error
11743 reporting for empty combinations.
11744
11745 2001-03-02 Keisuke Nishida <kxn30@po.cwru.edu>
11746
11747 * Remove dump facilities.
11748 * dump.c, dump.h: Removed.
11749 * Makefile.am: Remove dump.c, dump.h, dump.x, dump.doc.
11750 * init.c: Remove #include "libguile/dump.h".
11751 (scm_init_guile_1): Remove scm_init_dump.
11752 * smob.h (scm_smob_descriptor): Remove slots: dump, undump.
11753 (scm_set_smob_dump, scm_set_smob_undump): Remove declaration.
11754 * smob.c (scm_make_smob_type): Remove initialization: dump, undump.
11755 (scm_set_smob_dump, scm_set_smob_undump): Removed.
11756
11757 * keywords.c: Remove #include "libguile/dump.h".
11758 (keyword_dump, keyword_undump): Removed.
11759 (scm_init_keywords): Remove scm_set_smob_dump and scm_set_smob_undump.
11760
11761 2001-03-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11762
11763 * vectors.c (s_scm_vector_p, list->vector, scm_vector)
11764 (scm_vector_ref, scm_vector_set_x, scm_vector_to_list)
11765 (scm_vector_fill_x), strorder.c (scm_string_equal_p)
11766 (scm_string_ci_equal_p, scm_string_less_p, scm_string_leq_p)
11767 (scm_string_gr_p, scm_string_geq_p, scm_string_ci_less_p)
11768 (scm_string_ci_geq_p), symbols.c (scm_symbol_p)
11769 (scm_symbol_to_string, scm_string_to_symbol): Changed use of @t{}
11770 to @code{} as the texinfo manual recommends, converted the
11771 examples to use a @lisp{}-environment.
11772
11773 * strports.c (scm_eval_string): Cleaned up the docstring.
11774
11775 * struct.c (scm_struct_p, scm_struct_vtable_p): Added texinfo
11776 markup.
11777
11778 * numbers.c (scm_exact_p, scm_odd_p, scm_even_p)
11779 (scm_number_to_string, scm_string_to_number, scm_number_p)
11780 (scm_real_p, scm_integer_p, scm_inexact_p, scm_make_rectangular)
11781 (scm_make_polar, scm_inexact_to_exact): Added texinfo markup.
11782 (scm_ash): Added texinfo markup and removed obsolete @refill.
11783 (scm_gr_p): Corrected comment.
11784 (scm_gr_p, scm_leq_p, scm_geq_p): Added texinfo markup to (future
11785 docstring) comments.
11786 (scm_positive_p, scm_less_p, scm_num_eq_p, scm_real_p)
11787 (scm_number_p, scm_negative_p, scm_max, scm_min, scm_sum)
11788 (scm_difference, scm_product, scm_divide, scm_asinh, scm_acosh)
11789 (scm_atanh, scm_truncate, scm_round, scm_exact_to_inexact)
11790 (floor, ceiling, $sqrt, $abs, $exp, $log, $sin, $cos, $tan, $asin)
11791 ($acos, $atan, $sinh, $cosh, $tanh, scm_real_part, scm_imag_part)
11792 (scm_magnitude, scm_angle, scm_abs, scm_quotient, scm_remainder)
11793 (scm_modulo, scm_gcd, scm_lcm): Added (future docstring) comments.
11794
11795 2001-02-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
11796
11797 * __scm.h (SCM_ASSERT_TYPE): Add missing macro parameter.
11798 (Obviously nobody compiles with SCM_RECKLESS defined...)
11799
11800 * validate.h (SCM_ASSERT_RANGE): Use the argument number.
11801
11802 2001-02-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
11803
11804 * ports.c, ports.h (scm_c_read, scm_c_write): New functions.
11805
11806 * ports.h (SCM_READ_BUFFER_EMPTY_P): New macro.
11807
11808 2001-02-24 Neil Jerram <neil@ossau.uklinux.net>
11809
11810 * numbers.c (scm_two_doubles, scm_sys_expt, scm_sys_atan2,
11811 scm_make_polar): Rename arguments `z1' and `z2' to `x' and `y',
11812 since use of `z' suggests that the arguments may be complex.
11813
11814 * goops.c (scm_make), numbers.c (scm_sys_expt): Fix docstring
11815 typos.
11816
11817 2001-02-23 Neil Jerram <neil@ossau.uklinux.net>
11818
11819 * dump.c (scm_binary_write, scm_binary_read), eval.c
11820 (scm_primitive_eval), guardians.c (scm_guardian_destroyed_p,
11821 scm_guardian_greedy_p, scm_make_guardian), fports.c
11822 (scm_file_port_p): Minor docstring fixes.
11823
11824 2001-02-22 Marius Vollmer <mvo@zagadka.ping.de>
11825
11826 * load.c (load): Use scm_primitive_eval_x instead of scm_i_eval_x.
11827
11828 * goops.c (scm_add_method, DEFVAR): Use scm_eval instead of
11829 scm_i_eval.
11830 (make_class_from_template): Do not bother to set the current
11831 module around the call to DEFVAR, scm_eval takes care of that.
11832 (scm_init_goops): Make scm_module_goops and
11833 scm_goops_lookup_closure permanent objects.
11834
11835 * eval.c (scm_ceval, scm_deval): When evaluating expressions on
11836 top level, create a fresh top-level environment for each
11837 expression instead of mutating the exisint frame. This is
11838 important when that frame is closed over.
11839
11840 * numbers.c (s_scm_logior) [SCM_DIGSTOOBIG]: Also use
11841 SCM_DIGSPERLONG instead of DIGSPERLONG.
11842
11843 2001-02-21 Marius Vollmer <mvo@zagadka.ping.de>
11844
11845 * eval.c (scm_ceval, scm_deval): Check for wrong number of args
11846 before applying arrow procedure in `cond' and before applying
11847 receiver procedure in call-with-current-continuation.
11848 (scm_i_eval): Do not invoke scm_copy_tree in argument in SCM_XEVAL
11849 macro. The argument is expanded more than one time.
11850
11851 * numbers.c (scm_logior) [SCM_DIGSTOOBIG]: Correctly use
11852 SCM_BIGDIG instead of BIGDIG. Thanks to Steven G. Johnson!
11853
11854 2001-02-20 Marius Vollmer <mvo@zagadka.ping.de>
11855
11856 * guile-doc-snarf.in, guile-func-name-check.in: Added copyright
11857 notice and license.
11858
11859 2001-02-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11860
11861 * variable.c (scm_make_variable, scm_make_undefined_variable)
11862 (scm_variable_ref, scm_variable_set_x, scm_builtin_variable)
11863 (scm_variable_bound_p), values.c (scm_values)
11864 (scm_call_with_values), unif.c (scm_bit_count)
11865 (scm_bit_set_star_x), symbols.c (scm_gentemp)
11866 (scm_gensym), strings.c (scm_string_p, scm_make_string)
11867 (scm_read_only_string_p, scm_string_length, scm_string_ref)
11868 (scm_string_set_x, scm_substring, scm_string_append), stime.c
11869 (scm_strptime, scm_mktime), random.c (scm_seed_to_random_state)
11870 (scm_copy_random_state, scm_random), print.c (scm_newline)
11871 (scm_write_char, scm_simple_format), debug-malloc.c
11872 (scm_malloc_stats), environments.c (scm_environment_p)
11873 (scm_environment_bound_p, scm_environment_ref)
11874 (scm_environment_fold, scm_environment_define)
11875 (scm_environment_undefine, scm_environment_set_x)
11876 (scm_environment_cell, scm_environment_observe)
11877 (scm_environment_observe_weak, scm_environment_unobserve)
11878 (scm_make_eval_environment, scm_eval_environment_p)
11879 (scm_eval_environment_set_local_x, scm_eval_environment_local)
11880 (scm_eval_environment_imported)
11881 (scm_eval_environment_set_imported_x, scm_make_import_environment)
11882 (scm_import_environment_p, scm_import_environment_imports)
11883 (scm_import_environment_set_imports_x, scm_make_export_environment)
11884 (scm_export_environment_p, scm_export_environment_private)
11885 (scm_export_environment_set_private_x)
11886 (scm_export_environment_signature)
11887 (scm_export_environment_set_signature_x, scm_leaf_environment_p):
11888 Added texinfo markup.
11889
11890 * ports.c (scm_drain_input): Lowercased argument to @var.
11891 (scm_current_input_port, scm_current_output_port): Filled in
11892 missing explanation.
11893 (scm_current_load_port, scm_set_current_output_port)
11894 (scm_set_current_error_port, scm_port_line, scm_set_port_line_x):
11895 Added texinfo markup.
11896
11897 * arbiters.c (scm_make_arbiter, scm_try_arbiter)
11898 (scm_release_arbiter): Added texinfo markup to docstrings.
11899 Changed `Returns' to `Return'.
11900 (arbiter_print): Changed SCM_CDR to SCM_SMOB_DATA.
11901
11902 2001-02-16 Neil Jerram <neil@ossau.uklinux.net>
11903
11904 * guile-snarf.awk.in: Quote any `@'s that occur in Scheme names,
11905 by doubling them to `@@'.
11906
11907 2001-02-16 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
11908
11909 * numbers.c (scm_lognot), random.c (scm_random,
11910 scm_random_normal, scm_random_solid_sphere_x,
11911 scm_random_hollow_sphere_x, scm_random_normal_vector_x,
11912 scm_random_exp), dynwind.c
11913 (scm_dynamic_wind): Removed unnecessary "" from docstrings.
11914
11915 * goops.c (scm_sys_initialize_object, scm_instance_p,
11916 scm_class_name, scm_class_precedence_list, scm_class_slots,
11917 scm_class_environment, scm_generic_function_name,
11918 scm_generic_function_methods, scm_method_generic_function,
11919 scm_method_specializers, scm_method_procedure, scm_make_unbound,
11920 scm_unbound_p, scm_assert_bound, scm_at_assert_bound_ref,
11921 scm_sys_fast_slot_ref, scm_sys_fast_slot_set_x, scm_slot_ref,
11922 scm_slot_set_x, _scm_slot_bound_p, scm_slots_exists_p,
11923 scm_sys_allocate_instance, scm_make, scm_pure_generic_p,
11924 scm_class_direct_supers, scm_class_direct_slots,
11925 scm_class_direct_subclasses, scm_class_direct_methods,
11926 scm_accessor_method_slot_definition, scm_sys_goops_loaded),
11927 debug.c (scm_with_traps, scm_memoized_p, scm_make_gloc,
11928 scm_gloc_p, scm_make_iloc, scm_iloc_p, scm_memcons,
11929 scm_mem_to_proc, scm_proc_to_mem, scm_unmemoize,
11930 scm_memoized_environment, scm_procedure_name,
11931 scm_procedure_source, scm_procedure_environment, scm_debug_hang),
11932 objects.c
11933 (scm_class_of, scm_entity_p, scm_operator_p,
11934 scm_set_object_procedure_x, scm_object_procedure,
11935 scm_make_class_object), hooks.c (scm_make_hook_with_name,
11936 scm_make_hook, scm_hook_p, scm_hook_empty_p, scm_add_hook_x,
11937 scm_remove_hook_x, scm_reset_hook_x, scm_run_hook,
11938 scm_hook_to_list), lang.c
11939 (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null, scm_nil_eq),
11940 numbers.c (scm_sys_expt, scm_sys_atan2), print.c
11941 (scm_print_options, scm_port_with_print_state,
11942 scm_get_print_state), procs.c (scm_make_cclo, scm_procedure_p,
11943 scm_closure_p, scm_thunk_p, scm_procedure_with_setter_p,
11944 scm_make_procedure_with_setter, scm_procedure), throw.c
11945 (scm_lazy_catch), modules.c (scm_standard_eval_closure), load.c
11946 (scm_parse_path, scm_search_path), stacks.c (scm_make_stack,
11947 scm_stack_ref, scm_stack_length, scm_frame_p,
11948 scm_last_stack_frame, scm_frame_number, scm_frame_source,
11949 scm_frame_procedure, scm_frame_arguments, scm_frame_previous,
11950 scm_frame_next, scm_frame_real_p, scm_frame_procedure_p,
11951 scm_frame_evaluating_args_p, scm_frame_overflow_p), filesys.c
11952 (scm_dirname, scm_basename), dynwind.c
11953 (scm_wind_chain), read.c (scm_read_options, scm_read,
11954 scm_read_hash_extend), gc.c
11955 (scm_unhash_name), eval.c (scm_eval_options_interface,
11956 scm_evaluator_traps, s_scm_nconc2last), backtrace.c
11957 (scm_display_error, scm_set_print_params_x,
11958 scm_display_application, scm_display_backtrace, scm_backtrace),
11959 async.c (scm_async, scm_system_async, scm_async_mark,
11960 scm_system_async_mark, scm_run_asyncs, scm_noop,
11961 scm_set_tick_rate, scm_set_switch_rate, scm_unmask_signals,
11962 scm_mask_signals): Added docstrings.
11963
11964 2001-02-15 Keisuke Nishida <kxn30@po.cwru.edu>
11965
11966 * dump.c (scm_undump): Use SCM_CARLOC/SCM_CDRLOC to obtain the
11967 address of car/cdr. (Thanks to Dirk Herrmann)
11968 Use scm_sizet to obtain the length of strings.
11969 (Thanks to Matthias Koeppe)
11970
11971 2001-02-15 Marius Vollmer <mvo@zagadka.ping.de>
11972
11973 * symbols.c (scm_mem2symbol): Put a empty statement after the
11974 next_symbol label. This is mandated by ANSI, appearantly.
11975
11976 2001-02-13 Marius Vollmer <marius.vollmer@uni-dortmund.de>
11977
11978 * gc_os_dep.c: Do not include <linux/version.h>. It makes no
11979 sense to compile for a specific kernel version. Do not include
11980 <asm/signal.h> while defining __KERNEL__. This hack should no
11981 longer be needed and caused problems.
11982
11983 2001-02-13 Marius Vollmer <mvo@zagadka.ping.de>
11984
11985 * eval.c (scm_ceval, scm_deval): use `SIDEVAL' instead of
11986 SCM_CEVAL when evaluating subforms of `begin' forms. SCM_CEVAL
11987 can not deal with immediates.
11988
11989 2001-02-12 Keisuke Nishida <kxn30@po.cwru.edu>
11990
11991 * list.c (scm_list_copy): Validate the first argument.
11992
11993 2001-02-11 Marius Vollmer <mvo@zagadka.ping.de>
11994
11995 Fix evaluator so that top-level expressions are correctly
11996 evaluated with respect to the module system.
11997
11998 * modules.h. modules.c (scm_current_module_lookup_closure): New
11999 function.
12000
12001 * eval.h (scm_primitive_eval, scm_primitive_eval_x): New
12002 prototypes.
12003 (scm_i_eval, scm_i_eval_x, scm_eval, scm_eval_x): Changed argument
12004 names to better reflect their meaning.
12005
12006 * eval.c (scm_ceval, scm_deval): Recognize when `begin' is being
12007 evaluated at top-level and synronize lookup closure before
12008 executing every subform.
12009 (scm_primitve_eval_x, scm_primitive_eval): New functions.
12010 (scm_eval_x, scm_eval): Reimplement in terms of
12011 scm_primitive_eval_x and scm_primitive_eval, respectively.
12012
12013 2001-02-09 Marius Vollmer <mvo@zagadka.ping.de>
12014
12015 * macros.c (scm_macro_name, scm_macro_transformer): Use
12016 SCM_SMOB_DATA instead of SCM_CDR. Provided by Martin Grabmueller.
12017 Thanks!
12018
12019 2001-02-10 Keisuke Nishida <kxn30@po.cwru.edu>
12020
12021 * dump.c (scm_store_bytes): Store data size before data.
12022 (scm_restore_bytes): Restore data size. Takes a pointer to size.
12023 * dump.h (scm_restore_bytes): Updated.
12024
12025 2001-02-09 Keisuke Nishida <kxn30@po.cwru.edu>
12026
12027 * dump.c: Use double cells for update schedule.
12028
12029 2001-02-08 Keisuke Nishida <kxn30@po.cwru.edu>
12030
12031 * ports.c (scm_unread_char): Take an optional argument.
12032
12033 2001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
12034
12035 * modules.h (scm_selected_module, scm_current_module): Renamed
12036 scm_selected_module to scm_current_module to synchronize Scheme
12037 and C names.
12038 (scm_select_module, scm_set_current_module): Likewise. Changed
12039 all uses.
12040
12041 * ports.c (scm_port_for_each): Make a snapshot of the port table
12042 before iterating over it. The table might change while the user
12043 code is running. With the snapshot, the user can depend on the
12044 fact that each port that existed at the start of the iteration is
12045 encountered exactly once. (ice-9 popen) depends on this.
12046
12047 2001-02-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
12048
12049 * strings.h (SCM_STRING_MAX_LENGTH): New macro.
12050
12051 * strings.c (scm_makstr, scm_take_str, scm_make_string): Added
12052 range checking for the size parameter. Thanks to Martin
12053 Grabmueller for the hint.
12054
12055 (scm_makstr): Reordered string initialization to make interrupt
12056 deferring unnecessary.
12057
12058 * vectors.c (scm_make_vector): Fixed range checking.
12059
12060 2001-02-08 Dirk Herrmann <D.Herrmann@tu-bs.de>
12061
12062 * vectors.h (SCM_VECTOR_MAX_LENGTH): New macro.
12063
12064 * vectors.c (scm_make_vector, scm_c_make_vector): Improved the
12065 checking of the size parameter for type correctness and valid
12066 range. Thanks to Rob Browning for reporting the problem. Instead
12067 of deferring interrupts, scm_remember_upto_here_1 is used.
12068
12069 2001-02-05 Keisuke Nishida <kxn30@po.cwru.edu>
12070
12071 * dump.c (scm_store_cell_object, scm_restore_cell_object): Removed.
12072 (scm_dump_cell_update): Removed.
12073 (scm_dump_update): Renamed from scm_dump_object_update.
12074 (scm_restore_string, scm_restore_bytes, scm_restore_word): Takes
12075 a pointer instead of returning a value.
12076 * keywords.c (keyword_undump): Updated.
12077
12078 2001-02-05 Keisuke Nishida <kxn30@po.cwru.edu>
12079
12080 * dump.c, dump.h: Modified a lot.
12081 (SCM_DUMP_COOKIE): Version 0.1
12082 (scm_dump_mark): Removed.
12083 (scm_restore_cell_object, scm_store_cell_object): New functions.
12084
12085 * smob.h (scm_smob_descriptor): Removed slots: dump_mark,
12086 dump_dealloc, dump_store, undump_alloc, undump_restore, undump_init.
12087 New slots: dump, undump.
12088 * smob.c (scm_make_smob_type, scm_set_smob_dump, scm_set_smob_undump):
12089 Updated.
12090
12091 * keywords.c (keyword_dump): Renamed from keyword_dealloc.
12092 (keyword_undump): Renamed from keyword_alloc.
12093 (scm_init_keywords): Set keyword_dump and keyword_undump.
12094
12095 2001-02-03 Michael Livshin <mlivshin@bigfoot.com>
12096
12097 * gc.c (DOUBLECELL_ALIGNED_P): new macro, a better-named analog of
12098 the deprecated SCM_DOUBLE_CELLP.
12099
12100 * tags.h (SCM_DOUBLE_CELLP): deprecated.
12101
12102 2001-02-02 Keisuke Nishida <kxn30@po.cwru.edu>
12103
12104 * dump.c, dump.h: New files.
12105 * Makefile.am: Added dump.c, dump.h, dump.x, dump.doc.
12106 * init.c: #include "libguile/dump.h".
12107 (scm_init_guile_1): Call scm_init_dump.
12108 * smob.h (scm_smob_descriptor): New slots: dump_mark,
12109 dump_dealloc, dump_store, undump_alloc, undump_restore,
12110 undump_init.
12111 * smob.c (scm_make_smob_type): Init the new slots.
12112 (scm_set_smob_dump, scm_set_smob_undump): New functions.
12113 * smob.h (scm_set_smob_dump, scm_set_smob_undump): Declared.
12114
12115 * keywords.c: #include "libguile/dump.h".
12116 (keyword_dealloc, keyword_alloc): New functions.
12117 (scm_init_keywords): Set smob_dump and smob_undump.
12118
12119 2001-02-01 Keisuke Nishida <kxn30@po.cwru.edu>
12120
12121 * vectors.c (scm_c_make_vector): New function.
12122 * vectors.h (scm_c_make_vector): Declared.
12123 * eval.c (scm_copy_tree), filesys.c (scm_stat2scm), fluids.c
12124 (scm_make_initial_fluids, grow_fluids), gc.c (scm_init_storage),
12125 gh_data.c (gh_ints2scm, gh_doubles2scm): goops.c
12126 (scm_make_method_cache, scm_i_vector2list,
12127 scm_compute_applicable_methods, scm_sys_method_more_specific_p),
12128 init.c (start_stack), net_db.c (scm_gethost, scm_getnet,
12129 scm_getproto, scm_return_entry), posix.c (scm_getgroups,
12130 scm_getpwuid, scm_getgrgid, scm_uname), print.c (make_print_state,
12131 grow_ref_stack), regex-posix.c (scm_regexp_exec), scmsigs.c
12132 (scm_init_scmsigs), socket.c (scm_addr_vector, scm_addr_vector),
12133 stime.c (scm_times, filltime), unif.c (scm_make_uve), vectors.c
12134 (scm_vector, scm_make_vector): Use scm_c_make_vector.
12135
12136 * hashtab.c (scm_c_make_hash_table): New function.
12137 * hashtab.h (scm_c_make_hash_table): Declared.
12138 * environments.c (scm_make_leaf_environment,
12139 scm_make_eval_environment), gc.c (scm_init_storage),
12140 keywords.c (scm_init_keywords), symbols.c (scm_builtin_bindings):
12141 Use scm_c_make_hash_table.
12142
12143 2001-01-31 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
12144
12145 * unif.c (rapr1): Don't apply scm_uniform_vector_length on arrays.
12146
12147 2001-01-29 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
12148
12149 * struct.c (scm_make_vtable_vtable): Removed unnecessary "" from
12150 end of docstring.
12151
12152 * struct.c (scm_struct_set_x, scm_struct_vtable_tag,
12153 scm_struct_vtable_name, scm_set_struct_vtable_name_x), weaks.c
12154 (scm_make_weak_value_hash_table, scm_make_doubly_weak_hash_table,
12155 scm_weak_value_hash_table_p, scm_doubly_weak_hash_table_p),
12156 srcprop.c (scm_source_properties, scm_set_source_properties_x,
12157 scm_source_property, scm_set_source_property_x), sort.c
12158 (scm_sort_list_x, scm_restricted_vector_sort_x, scm_sorted_p,
12159 scm_merge, scm_merge_x, scm_sort_x, scm_sort, scm_stable_sort_x,
12160 scm_stable_sort, scm_sort_list_x, scm_sort_list): Added
12161 docstrings.
12162
12163 2001-01-29 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
12164
12165 * eval.c (SCM_APPLY): Check that primitives which take 1 arg
12166 really get that arg.
12167
12168 2001-01-26 Keisuke Nishida <kxn30@po.cwru.edu>
12169
12170 * goops.c (s_scm_get_keyword): Bug fix.
12171
12172 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
12173
12174 The following patch was sent by Martin Grabmueller. It makes sure
12175 that in case of parameter errors the correct function name is
12176 shown, and that parameter types are only checked once.
12177
12178 * strop.c (string_copy, string_upcase_x, string_downcase_x,
12179 string_capitalize_x): New functions. Each one performs the core
12180 functionality of the corresponding scm_* function.
12181
12182 (scm_string_copy, scm_string_upcase_x, scm_string_upcase,
12183 scm_string_downcase_x, scm_string_downcase,
12184 scm_string_capitalize_x, scm_string_capitalize): Reduced to
12185 parameter checking wrappers of the above functions.
12186
12187 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
12188
12189 * continuations.c, dynl.c, keywords.c, load.c: Include
12190 strings.h. Thanks to Bill Schottstaedt for the bug report.
12191
12192 2001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
12193
12194 * backtrace.c (display_header): Make sure that line and column
12195 information is shown independent of whether the port the code was
12196 read from had an associated filename. Thanks to Martin
12197 Grabmueller for providing this patch.
12198
12199 2001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
12200
12201 * fports.[ch] (scm_file_port_p): New primitive.
12202
12203 2001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
12204
12205 * tags.h (scm_tc16_fport, scm_tc16_strport, scm_tc16_sfport):
12206 These are now defined in fports.c, strports.c and vports.c.
12207
12208 * fports.[ch] (scm_tc16_fport), strports.c (scm_tc16_strport),
12209 vports.c (scm_tc16_sfport): Made variables (were macros defined in
12210 tags.h).
12211
12212 fports.c (scm_make_fptob), strports.c (scm_make_stptob), vports.c
12213 (scm_make_sfptob): Made static. These return a type code now.
12214
12215 fports.c (scm_init_fports), strports.c (scm_init_strports),
12216 vports.c (scm_init_vports): Create the corresponding port types.
12217
12218 * fports.h (SCM_FPORTP, SCM_OPFPORTP, SCM_OPINFPORTP,
12219 SCM_OPOUTFPORTP): Redefined in terms of scm_tc16_fport.
12220
12221 * init.c (scm_init_guile_1): Make sure strports are initialized
12222 before gdbint.
12223
12224 * ports.[ch] (scm_make_port_type): Changed the return type to
12225 scm_bits_t.
12226
12227 * ports.c (scm_ports_prehistory): Don't create any port types
12228 here.
12229
12230 * posix.c (scm_ttyname): Use SCM_FPORTP instead of comparing
12231 against scm_tc16_fport directly.
12232
12233 2001-01-25 Dirk Herrmann <D.Herrmann@tu-bs.de>
12234
12235 * srcprop.c (scm_set_source_property_x): Fix to handle
12236 (set-source-property! <obj> 'copy <datum>) correctly.
12237
12238 2001-01-24 Gary Houston <ghouston@arglist.com>
12239
12240 * filesys.c (scm_link): docstring fix.
12241 * fports.h (scm_setfileno): obsolete declaration removed.
12242 * posix.c: bogus popen declaration removed.
12243
12244 * rdelim.c: new file, split from ioext.c.
12245 * rdelim.h: new file, split from ioext.h
12246 * Makefile.am: add rdelim.c and related files.
12247 * init.c: call scm_init_rdelim. include rdelim.h.
12248
12249 2001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
12250
12251 This patch was sent by Martin Grabmueller and makes sure that
12252 parameter errors are reported correctly by the lexicographic
12253 ordering predicates.
12254
12255 * strorder.c (string_less_p, string_ci_less_p): New functions.
12256
12257 (scm_string_less_p, scm_string_ci_less_p): Extracted the core
12258 functionality into string_less_p, string_ci_less_p respectively.
12259 The remaining code is just a wrapper to do the parameter
12260 checking.
12261
12262 (scm_string_leq_p, scm_string_gr_p, scm_string_geq_p): Check the
12263 parameters and call string_less_p instead of scm_string_less_p.
12264
12265 (scm_string_ci_leq_p, scm_string_ci_gr_p, scm_string_ci_geq_p):
12266 Check the parameters and call string_less_ci_p instead of
12267 scm_string_ci_less_p.
12268
12269 2001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
12270
12271 This patch modifies scm_display_error to perform parameter
12272 checking. Thanks to Neil Jerram for the bug report.
12273
12274 * backtrace.[ch] (scm_i_display_error): New function.
12275
12276 * backtrace.c (scm_display_error): Added parameter check and
12277 extracted the core functionality into function
12278 scm_i_display_error.
12279
12280 * throw.c (handler_message): Call scm_i_display_error to display
12281 the error message.
12282
12283 2001-01-23 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
12284
12285 * eval.c (SCM_APPLY): Added # args check for application of
12286 procedures with arity 3. (Thanks to Anders Holst.)
12287
12288 2001-01-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
12289
12290 * filesys.h (SCM_DIR_FLAG_OPEN, SCM_DIR_OPEN_P): Added.
12291
12292 (SCM_OPDIRP): Deprecated.
12293
12294 * filesys.c (scm_opendir): Use SCM_DIR_FLAG_OPEN instead of
12295 SCM_OPN.
12296
12297 (scm_readdir, scm_rewinddir): Don't use SCM_VALIDATE_OPDIR.
12298 Instead, give an explicit error message in case the directory is
12299 closed.
12300
12301 (scm_closedir, scm_dir_print): Rewritten to use SCM_DIR_OPEN_P
12302 instead of SCM_OPENP and SCM_CLOSEDP.
12303
12304 * validate.h (SCM_VALIDATE_OPDIR): Deprecated.
12305
12306 2001-01-22 Dirk Herrmann <D.Herrmann@tu-bs.de>
12307
12308 * eval.c (inner_eval, scm_eval): Move all real functionality into
12309 inner_eval. Avoid to copy the expression twice by inlining some
12310 code from scm_i_eval.
12311
12312 2001-01-19 Dirk Herrmann <D.Herrmann@tu-bs.de>
12313
12314 * eval.c (scm_m_case): The 'else' clause of a 'case' statement
12315 now has to be the last clause, as required by R5RS. Thanks to
12316 Martin Grabmueller for the patch.
12317
12318 2001-01-18 Gary Houston <ghouston@arglist.com>
12319
12320 * ioext.c: further simplify scm_read_string_x_partial by defining
12321 a macro SCM_EBLOCK.
12322
12323 2001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
12324
12325 * gh_data.c (gh_ints2scm): Simplified using SCM_FIXABLE.
12326
12327 2001-01-18 Dirk Herrmann <D.Herrmann@tu-bs.de>
12328
12329 * __scm.h: Added comment about architecture and compiler
12330 properties that are required by guile.
12331
12332 (SCM_FIXNUM_BIT, SCM_MOST_POSITIVE_FIXNUM,
12333 SCM_MOST_NEGATIVE_FIXNUM): Moved to numbers.h.
12334
12335 (SCM_CHAR_BIT, SCM_LONG_BIT): Moved here from numbers.h.
12336
12337 * numbers.h (SCM_CHAR_BIT, SCM_LONG_BIT): Moved to __scm.h.
12338
12339 (SCM_FIXNUM_BIT, SCM_MOST_POSITIVE_FIXNUM,
12340 SCM_MOST_NEGATIVE_FIXNUM): Moved here from __scm.h.
12341
12342 2001-01-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
12343
12344 * __scm.h (SCM_FIXNUM_BIT): Added. The name is chosen in analogy
12345 to the names in limits.h.
12346
12347 * numbers.c (abs_most_negative_fixnum): Added.
12348
12349 (scm_quotient, scm_remainder): Fixed the fixnum-min / (abs
12350 fixnum-min) special case.
12351
12352 (scm_big_and): Fix for negative first parameter.
12353
12354 (scm_bit_extract): Fix for fixnum paramters.
12355 Thanks to Rob Browning for the bug report.
12356
12357 (scm_init_numbers): Initialize abs_most_negative_fixnum.
12358
12359 2001-01-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
12360
12361 * symbols.c (scm_symbol_bound_p): Fixed comment.
12362 Thanks to Chris Cramer.
12363
12364 2001-01-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
12365
12366 * smob.[ch] (scm_make_smob_type): Return type is scm_bits_t now.
12367 Thanks to Bill Schottstaedt.
12368
12369 2001-01-11 Michael Livshin <mlivshin@bigfoot.com>
12370
12371 from Matthias Köppe:
12372
12373 * objects.h (SCM_SET_ENTITY_SETTER): new macro. SCM_ENTITY_SETTER
12374 casts its result, so doesn't yield an lvalue per ANSI C.
12375
12376 * goops.c (s_scm_sys_set_object_setter_x): use
12377 SCM_SET_ENTITY_SETTER.
12378 (clear_method_cache): use SCM_SET_ENTITY_PROCEDURE.
12379
12380 * gc.h (SCM_GC_SET_CARD_BVEC): new macro. SCM_GC_CARD_BVEC casts
12381 its result, so doesn't yield an lvalue per ANSI C.
12382 (SCM_GC_SET_CARD_FLAGS): ditto for SCM_GC_GET_CARD_FLAGS.
12383 (SCM_GC_CLR_CARD_FLAGS): redefined in terms of
12384 SCM_GC_SET_CARD_FLAGS.
12385 (SCM_GC_SET_CARD_FLAG, SCM_GC_CLR_CARD_FLAGS): ditto.
12386
12387 * gc.c (INIT_CARD): use the explicit setter macro to set the bvec.
12388
12389 2001-01-08 Gary Houston <ghouston@arglist.com>
12390
12391 * validate.h (SCM_VALIDATE_SUBSTRING_SPEC_COPY): new macro.
12392 * ioext.c (scm_read_string_x_partial, scm_read_delimited_x),
12393 socket.c (scm_recvfrom): use the new macro, plus minor docstring
12394 changes.
12395 * ioext.c (scm_read_string_x_partial): don't crash if -1 is supplied
12396 for fdes. if current input port is used, check that it's a file
12397 port.
12398
12399 2001-01-06 Gary Houston <ghouston@arglist.com>
12400
12401 * ioext.c (scm_read_string_x_partial): new procedure, implements
12402 read-string!/partial.
12403 * ports.c (scm_take_from_input_buffers): new procedure used by
12404 scm_read_string_x_partial.
12405 (scm_drain_input): use scm_take_from_input_buffers.
12406
12407 2001-01-06 Marius Vollmer <mvo@zagadka.ping.de>
12408
12409 * validate.h (SCM_VALIDATE_NUMBER): New.
12410
12411 2001-01-03 Michael Livshin <mlivshin@bigfoot.com>
12412
12413 * guardians.c (F_GREEDY, F_LISTED, F_DESTROYED, GREEDY_P,
12414 SET_GREEDY, LISTED_P, SET_LISTED, CLR_LISTED, DESTROYED_P,
12415 SET_DESTROYED): new defines/macros.
12416 (GUARDIAN_LIVE, GUARDIAN_ZOMBIES, GUARDIAN_NEXT): deleted.
12417 (add_to_live_list): takes a `guardian_t *' now, not SCM.
12418 (guardian_print): print more info.
12419 (guardian_apply): check if the guardian is destroyed, and throw an
12420 error if so. take one more optional argument `throw_p'.
12421 (scm_guard): depending on the value of `throw_p', return a boolean
12422 result.
12423 (scm_get_one_zombie): remove redundant property test.
12424 (guardian_t): represent the various (currently 3, I hope nothing
12425 more gets added) boolean fields as bit flags.
12426 (scm_guardian_destroyed_p, scm_guardian_greedy_p): new predicates.
12427 (scm_destroy_guardian_x): new procedure.
12428
12429 * guardians.h: added prototypes for `scm_guardian_greedy_p' and
12430 `scm_guardian_destroyed_p'. changed prototype for `scm_guard'.
12431
12432 2001-01-01 Gary Houston <ghouston@arglist.com>
12433
12434 * fports.c (fport_write): bugfix: handle short writes for
12435 unbuffered ports too. optimize the buffered case by minimizing
12436 the number of write/flush calls.
12437 (write_all): new helper procedure.
12438
12439 The ChangeLog continues in the file: "ChangeLog-2000"