1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00
guile/libguile
Michael Livshin 1be6b49ccb * validate.h
(SCM_NUM2{SIZE,PTRDIFF,SHORT,USHORT,BITS,UBITS,INT,UINT}[_DEF]):
new macros.

* unif.h: type renaming:
scm_array -> scm_array_t
scm_array_dim -> scm_array_dim_t
the old names are deprecated, all in-Guile uses changed.

* tags.h (scm_ubits_t): new typedef, representing unsigned
scm_bits_t.

* stacks.h: type renaming:
scm_info_frame -> scm_info_frame_t
scm_stack -> scm_stack_t
the old names are deprecated, all in-Guile uses changed.

* srcprop.h: type renaming:
scm_srcprops -> scm_srcprops_t
scm_srcprops_chunk -> scm_srcprops_chunk_t
the old names are deprecated, all in-Guile uses changed.

* gsubr.c, procs.c, print.c, ports.c, read.c, rdelim.c, ramap.c,
rw.c, smob.c, sort.c, srcprop.c, stacks.c, strings.c, strop.c,
strorder.c, strports.c, struct.c, symbols.c, unif.c, values.c,
vectors.c, vports.c, weaks.c:
various int/size_t -> size_t/scm_bits_t changes.

* random.h: type renaming:
scm_rstate -> scm_rstate_t
scm_rng -> scm_rng_t
scm_i_rstate -> scm_i_rstate_t
the old names are deprecated, all in-Guile uses changed.

* procs.h: type renaming:
scm_subr_entry -> scm_subr_entry_t
the old name is deprecated, all in-Guile uses changed.

* options.h (scm_option_t.val): unsigned long -> scm_bits_t.
type renaming:
scm_option -> scm_option_t
the old name is deprecated, all in-Guile uses changed.

* objects.c: various long -> scm_bits_t changes.
(scm_i_make_class_object): flags: unsigned long -> scm_ubits_t

* numbers.h (SCM_FIXNUM_BIT): deprecated, renamed to
SCM_I_FIXNUM_BIT.

* num2integral.i.c: new file, multiply included by numbers.c, used
to "templatize" the various integral <-> num conversion routines.

* numbers.c (scm_mkbig, scm_big2num, scm_adjbig, scm_normbig,
scm_copybig, scm_2ulong2big, scm_dbl2big, scm_big2dbl):
deprecated.
(scm_i_mkbig, scm_i_big2inum, scm_i_adjbig, scm_i_normbig,
scm_i_copybig, scm_i_short2big, scm_i_ushort2big, scm_i_int2big,
scm_i_uint2big, scm_i_long2big, scm_i_ulong2big, scm_i_bits2big,
scm_i_ubits2big, scm_i_size2big, scm_i_ptrdiff2big,
scm_i_long_long2big, scm_i_ulong_long2big, scm_i_dbl2big,
scm_i_big2dbl, scm_short2num, scm_ushort2num, scm_int2num,
scm_uint2num, scm_bits2num, scm_ubits2num, scm_size2num,
scm_ptrdiff2num, scm_num2short, scm_num2ushort, scm_num2int,
scm_num2uint, scm_num2bits, scm_num2ubits, scm_num2ptrdiff,
scm_num2size): new functions.

* modules.c (scm_module_reverse_lookup): i, n: int -> scm_bits_t.x

* load.c: change int -> size_t in various places (where the
variable is used to store a string length).
(search-path): call scm_done_free, not scm_done_malloc.

* list.c (scm_ilength): return a scm_bits_t, not long.
some other {int,long} -> scm_bits_t changes.

* hashtab.c: various [u]int -> scm_bits_t changes.
scm_ihashx_closure -> scm_ihashx_closure_t (and made a typedef).
(scm_ihashx): n: uint -> scm_bits_t
use scm_bits2num instead of scm_ulong2num.

* gsubr.c: various int -> scm_bits_t changes.

* gh_data.c (gh_scm2double): no loss of precision any more.

* gh.h (gh_str2scm): len: int -> size_t
(gh_{get,set}_substr): start: int -> scm_bits_t,
len: int -> size_t
(gh_<num>2scm): n: int -> scm_bits_t
(gh_*vector_length): return scm_[u]size_t, not unsigned long.
(gh_length): return scm_bits_t, not unsigned long.

* fports.h: type renaming:
scm_fport -> scm_fport_t
the old name is deprecated, all in-Guile uses changed.

* fports.c (fport_fill_input): count: int -> scm_bits_t
(fport_flush): init_size, remaining, count: int -> scm_bits_t

* debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr): removed
those prototypes, as the functions they prototype don't exist.

* fports.c (default_buffer_size): int -> size_t
(scm_fport_buffer_add): read_size, write_size: int -> scm_bits_t
default_size: int -> size_t
(scm_setvbuf): csize: int -> scm_bits_t

* fluids.c (n_fluids): int -> scm_bits_t
(grow_fluids): old_length, i: int -> scm_bits_t
(next_fluid_num, scm_fluid_ref, scm_fluid_set_x): n: int ->
scm_bits_t
(scm_c_with_fluids): flen, vlen: int -> scm_bits_t

* filesys.c (s_scm_open_fdes): changed calls to SCM_NUM2LONG to
the new and shiny SCM_NUM2INT.

* extensions.c: extension -> extension_t (and made a typedef).

* eval.h (SCM_IFRAME): cast to scm_bits_t, not int.  just so
there are no nasty surprises if/when the various deeply magic tag
bits move somewhere else.

* eval.c: changed the locals used to store results of SCM_IFRAME,
scm_ilength and such to be of type scm_bits_t (and not int/long).
(iqq): depth, edepth: int -> scm_bits_t
(scm_eval_stack): int -> scm_bits_t
(SCM_CEVAL): various vars are not scm_bits_t instead of int.
(check_map_args, scm_map, scm_for_each): len: long -> scm_bits_t
i: int -> scm_bits_t

* environments.c: changed the many calls to scm_ulong2num to
scm_ubits2num.
(import_environment_fold): proc_as_ul: ulong -> scm_ubits_t

* dynwind.c (scm_dowinds): delta: long -> scm_bits_t

* debug.h: type renaming:
scm_debug_info -> scm_debug_info_t
scm_debug_frame -> scm_debug_frame_t
the old names are deprecated, all in-Guile uses changed.
(scm_debug_eframe_size): int -> scm_bits_t

* debug.c (scm_init_debug): use scm_c_define instead of the
deprecated scm_define.

* continuations.h: type renaming:
scm_contregs -> scm_contregs_t
the old name is deprecated, all in-Guile uses changed.
(scm_contregs_t.num_stack_items): size_t -> scm_bits_t
(scm_contregs_t.num_stack_items): ulong -> scm_ubits_t

* continuations.c (scm_make_continuation): change the type of
stack_size form long to scm_bits_t.

* ports.h: type renaming:
scm_port_rw_active -> scm_port_rw_active_t (and made a typedef)
scm_port -> scm_port_t
scm_ptob_descriptor -> scm_ptob_descriptor_t
the old names are deprecated, all in-Guile uses changed.
(scm_port_t.entry): int -> scm_bits_t.
(scm_port_t.line_number): int -> long.
(scm_port_t.putback_buf_size): int -> size_t.

* __scm.h (long_long, ulong_long): deprecated (they pollute the
global namespace and have little value besides that).
(SCM_BITS_LENGTH): new, is the bit size of scm_bits_t (i.e. of an
SCM handle).
(ifdef spaghetti): include sys/types.h and sys/stdtypes.h, if they
exist (for size_t & ptrdiff_t)
(scm_sizet): deprecated.

* Makefile.am (noinst_HEADERS): add num2integral.i.c
2001-05-24 00:50:51 +00:00
..
.cvsignore Ignore guile.texi. 2000-12-16 19:58:28 +00:00
__scm.h * validate.h 2001-05-24 00:50:51 +00:00
_scm.h Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
alist.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
alist.h Updated copyrights 2000-06-12 12:28:24 +00:00
alloca.c * Fixed include file problem reported by Bruce Korb. 2000-10-12 07:59:02 +00:00
arbiters.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
arbiters.h Updated copyrights 2000-06-12 12:28:24 +00:00
async.c * Replaced a lot of calls to SCM_C[AD]R with more appropriate macros. 2001-03-30 15:03:23 +00:00
async.h * Cleaned up initialization of asyncs. 2000-06-28 10:26:52 +00:00
backtrace.c * validate.h 2001-05-24 00:50:51 +00:00
backtrace.h Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
boolean.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
boolean.h Updated copyrights 2000-06-12 12:28:24 +00:00
ChangeLog * validate.h 2001-05-24 00:50:51 +00:00
ChangeLog-1996-1999
ChangeLog-2000 Split up. 2001-03-11 23:57:16 +00:00
ChangeLog-gh
ChangeLog-scm
ChangeLog-threads
chars.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
chars.h * error.h (scm_sysmissing): deprecation expired - removed. 2001-04-27 21:08:44 +00:00
continuations.c * validate.h 2001-05-24 00:50:51 +00:00
continuations.h * validate.h 2001-05-24 00:50:51 +00:00
coop-defs.h * Incorporated fixes to interrupt deferring/allowing from Niibe. 2001-04-17 09:15:39 +00:00
coop-threads.c * validate.h 2001-05-24 00:50:51 +00:00
coop-threads.h Updated copyrights 2000-06-12 12:28:24 +00:00
coop.c * coop.c: Inserted #include <stdio.h>. 2001-03-10 03:09:07 +00:00
COPYING
cpp_cnvt.awk Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
cpp_err_symbols.in
cpp_errno.c * *.[hc]: add Emacs magic at the end of file, to ensure GNU 2000-03-19 19:01:16 +00:00
cpp_sig_symbols.in
cpp_signal.c * *.[hc]: add Emacs magic at the end of file, to ensure GNU 2000-03-19 19:01:16 +00:00
debug-malloc.c Use memset instead of bzero. 2001-04-12 01:40:21 +00:00
debug-malloc.h * debug-malloc.c, debug-malloc.h: New files. 2000-04-21 00:27:14 +00:00
debug.c * validate.h 2001-05-24 00:50:51 +00:00
debug.h * validate.h 2001-05-24 00:50:51 +00:00
deprecation.c (scm_include_deprecated_features): Make docstring 2001-05-22 22:46:39 +00:00
deprecation.h * Deprecated some definitions. 2001-05-14 16:38:08 +00:00
dynl.c * validate.h 2001-05-24 00:50:51 +00:00
dynl.h Updated copyrights 2000-06-12 12:28:24 +00:00
dynwind.c * validate.h 2001-05-24 00:50:51 +00:00
dynwind.h * validate.h 2001-05-24 00:50:51 +00:00
environments.c * validate.h 2001-05-24 00:50:51 +00:00
environments.h * validate.h 2001-05-24 00:50:51 +00:00
eq.c * Made creation of new smob types thread safe. 2001-04-21 21:50:08 +00:00
eq.h Updated copyrights 2000-06-12 12:28:24 +00:00
error.c * validate.h 2001-05-24 00:50:51 +00:00
error.h * error.h (scm_sysmissing): deprecation expired - removed. 2001-04-27 21:08:44 +00:00
eval.c * validate.h 2001-05-24 00:50:51 +00:00
eval.h * validate.h 2001-05-24 00:50:51 +00:00
evalext.c Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
evalext.h Updated copyrights 2000-06-12 12:28:24 +00:00
extensions.c * validate.h 2001-05-24 00:50:51 +00:00
extensions.h New files. 2001-05-20 19:26:23 +00:00
feature.c Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
feature.h * feature.c, feature.h: Broke out hook code into separate files. 2000-04-21 23:11:05 +00:00
filesys.c * validate.h 2001-05-24 00:50:51 +00:00
filesys.h Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
fluids.c * validate.h 2001-05-24 00:50:51 +00:00
fluids.h (scm_internal_with_fluids): Deprecated. 2001-05-19 00:36:22 +00:00
fports.c * validate.h 2001-05-24 00:50:51 +00:00
fports.h * validate.h 2001-05-24 00:50:51 +00:00
gc.c * validate.h 2001-05-24 00:50:51 +00:00
gc.h * validate.h 2001-05-24 00:50:51 +00:00
gc_os_dep.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
gdb_interface.h Updated copyrights 2000-06-12 12:28:24 +00:00
gdbint.c * validate.h 2001-05-24 00:50:51 +00:00
gdbint.h Updated copyrights 2000-06-12 12:28:24 +00:00
gh.h * validate.h 2001-05-24 00:50:51 +00:00
gh_data.c * validate.h 2001-05-24 00:50:51 +00:00
gh_eval.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
gh_funcs.c (scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic, 2001-05-20 00:35:43 +00:00
gh_init.c Updated copyrights 2000-06-12 12:28:24 +00:00
gh_io.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
gh_list.c * validate.h 2001-05-24 00:50:51 +00:00
gh_predicates.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
goops.c * validate.h 2001-05-24 00:50:51 +00:00
goops.h * validate.h 2001-05-24 00:50:51 +00:00
gsubr.c * validate.h 2001-05-24 00:50:51 +00:00
gsubr.h * validate.h 2001-05-24 00:50:51 +00:00
guardians.c * validate.h 2001-05-24 00:50:51 +00:00
guardians.h * guardians.c (F_GREEDY, F_LISTED, F_DESTROYED, GREEDY_P, 2001-01-04 13:00:31 +00:00
guile-doc-snarf.in Update copyright. 2001-05-10 23:34:33 +00:00
guile-func-name-check.in Added copyright and licence notice. 2001-02-21 20:15:15 +00:00
guile-snarf.awk.in * eval.c (scm_promise_p), list.c (scm_append_x, scm_reverse_x), 2001-05-04 21:54:00 +00:00
guile-snarf.in Added copyright and licence notice. 2001-02-21 20:15:15 +00:00
guile.c Updated copyrights 2000-06-12 12:28:24 +00:00
hash.c * validate.h 2001-05-24 00:50:51 +00:00
hash.h * validate.h 2001-05-24 00:50:51 +00:00
hashtab.c * validate.h 2001-05-24 00:50:51 +00:00
hashtab.h * validate.h 2001-05-24 00:50:51 +00:00
hooks.c * validate.h 2001-05-24 00:50:51 +00:00
hooks.h * Removed deprecated hook names. 2001-05-08 10:23:17 +00:00
inet_aton.c * inet_aton.c (inet_aton): Cast init value for `cp'. 2000-06-12 21:24:29 +00:00
init.c * validate.h 2001-05-24 00:50:51 +00:00
init.h * init.h (scm_init_guile): New prototype. 2000-09-03 20:24:18 +00:00
ioext.c * validate.h 2001-05-24 00:50:51 +00:00
ioext.h * rw.c: new file, implementing C part of module (ice-9 rw). 2001-04-29 13:03:14 +00:00
iselect.c Use memset instead of bzero. 2001-04-12 01:40:21 +00:00
iselect.h * *.[hc]: add Emacs magic at the end of file, to ensure GNU 2000-03-19 19:01:16 +00:00
keywords.c Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
keywords.h Smob-related creanup. 2000-12-08 17:32:56 +00:00
lang.c (scm_nil_cons, scm_nil_car, scm_nil_cdr, scm_null, scm_nil_eq): Added 2001-02-16 15:05:38 +00:00
lang.h Lots of fixes to make guile (at some time) compile with strict typing. 2000-04-03 08:47:51 +00:00
list.c * validate.h 2001-05-24 00:50:51 +00:00
list.h * validate.h 2001-05-24 00:50:51 +00:00
load.c * validate.h 2001-05-24 00:50:51 +00:00
load.h Updated copyrights 2000-06-12 12:28:24 +00:00
macros.c (scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic, 2001-05-20 00:35:43 +00:00
macros.h * Replaced a lot of calls to SCM_C[AD]R with more appropriate macros. 2001-03-30 15:03:23 +00:00
Makefile.am * validate.h 2001-05-24 00:50:51 +00:00
mallocs.c * validate.h 2001-05-24 00:50:51 +00:00
mallocs.h * validate.h 2001-05-24 00:50:51 +00:00
memmove.c * *.[hc]: add Emacs magic at the end of file, to ensure GNU 2000-03-19 19:01:16 +00:00
modules.c * validate.h 2001-05-24 00:50:51 +00:00
modules.h (scm_system_module_env_p): Move out of deprecated 2001-05-20 00:33:49 +00:00
net_db.c * validate.h 2001-05-24 00:50:51 +00:00
net_db.h * net_db.h (scm_gethost): Added prototype. 2001-05-02 00:48:32 +00:00
num2integral.i.c * validate.h 2001-05-24 00:50:51 +00:00
numbers.c * validate.h 2001-05-24 00:50:51 +00:00
numbers.h * validate.h 2001-05-24 00:50:51 +00:00
objects.c * validate.h 2001-05-24 00:50:51 +00:00
objects.h * validate.h 2001-05-24 00:50:51 +00:00
objprop.c Correct, update, improve and clean up a lot of docstrings in order to make 2001-04-03 13:19:05 +00:00
objprop.h Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
options.c * validate.h 2001-05-24 00:50:51 +00:00
options.h * validate.h 2001-05-24 00:50:51 +00:00
pairs.c (scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic, 2001-05-20 00:35:43 +00:00
pairs.h * New macro SCM_TRUE_P. 2000-03-29 01:15:56 +00:00
ports.c * validate.h 2001-05-24 00:50:51 +00:00
ports.h * validate.h 2001-05-24 00:50:51 +00:00
posix.c * validate.h 2001-05-24 00:50:51 +00:00
posix.h * posix.c (scm_tmpnam): check that return value from tmpnam is not 2001-03-18 20:29:58 +00:00
print.c * validate.h 2001-05-24 00:50:51 +00:00
print.h * validate.h 2001-05-24 00:50:51 +00:00
procprop.c * Fixed scm_thunk_p's results when applied to closures. 2001-04-19 14:46:01 +00:00
procprop.h Updated copyrights 2000-06-12 12:28:24 +00:00
procs.c * validate.h 2001-05-24 00:50:51 +00:00
procs.h * validate.h 2001-05-24 00:50:51 +00:00
properties.c * Replaced a lot of calls to SCM_C[AD]R with more appropriate macros. 2001-03-30 15:03:23 +00:00
properties.h * Unified ssymbols and msymbols to a single symbol type 'scm_tc7_symbol'. 2000-09-12 12:30:36 +00:00
putenv.c * _scm.h: Removed #include <errno.h>. 2001-03-10 16:56:09 +00:00
ramap.c * validate.h 2001-05-24 00:50:51 +00:00
ramap.h Updated copyrights 2000-06-12 12:28:24 +00:00
random.c * validate.h 2001-05-24 00:50:51 +00:00
random.h * validate.h 2001-05-24 00:50:51 +00:00
rdelim.c * validate.h 2001-05-24 00:50:51 +00:00
rdelim.h (scm_init_rdelim_builtins): Renamed from 2001-05-19 00:27:22 +00:00
read.c * validate.h 2001-05-24 00:50:51 +00:00
read.h * validate.h 2001-05-24 00:50:51 +00:00
regex-posix.c * validate.h 2001-05-24 00:50:51 +00:00
regex-posix.h Smob-related creanup. 2000-12-08 17:32:56 +00:00
remaining-docs-needed * run-test, remaining-docs-needed: Added these scripts. The 2000-03-07 16:06:13 +00:00
root.c * validate.h 2001-05-24 00:50:51 +00:00
root.h * validate.h 2001-05-24 00:50:51 +00:00
run-test * run-test, remaining-docs-needed: Added these scripts. The 2000-03-07 16:06:13 +00:00
rw.c * validate.h 2001-05-24 00:50:51 +00:00
rw.h (scm_init_rw): Added prototype. 2001-05-20 00:33:26 +00:00
scmsigs.c (scm_c_make_gsubr, scm_c_define_gsubr, scm_c_make_gsubr_with_generic, 2001-05-20 00:35:43 +00:00
scmsigs.h Updated copyrights 2000-06-12 12:28:24 +00:00
script.c * validate.h 2001-05-24 00:50:51 +00:00
script.h Updated copyrights 2000-06-12 12:28:24 +00:00
simpos.c * validate.h 2001-05-24 00:50:51 +00:00
simpos.h Updated copyrights 2000-06-12 12:28:24 +00:00
smob.c * validate.h 2001-05-24 00:50:51 +00:00
smob.h * validate.h 2001-05-24 00:50:51 +00:00
snarf.h (SCM_CONST_LONG): Use SCM_VCELL_INIT instead of 2001-05-22 22:46:14 +00:00
socket.c * validate.h 2001-05-24 00:50:51 +00:00
socket.h * net_db.c: remove bogus "close" declaration. 2001-04-22 16:05:21 +00:00
sort.c * validate.h 2001-05-24 00:50:51 +00:00
sort.h Updated copyrights 2000-06-12 12:28:24 +00:00
srcprop.c * validate.h 2001-05-24 00:50:51 +00:00
srcprop.h * validate.h 2001-05-24 00:50:51 +00:00
stackchk.c * validate.h 2001-05-24 00:50:51 +00:00
stackchk.h Updated copyrights 2000-06-12 12:28:24 +00:00
stacks.c * validate.h 2001-05-24 00:50:51 +00:00
stacks.h * validate.h 2001-05-24 00:50:51 +00:00
stamp-h.in
stime.c Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
stime.h * stime.c (scm_c_get_internal_run_time): new function, same as 2000-08-16 00:23:59 +00:00
strerror.c Updated copyrights 2000-06-12 12:28:24 +00:00
strings.c * validate.h 2001-05-24 00:50:51 +00:00
strings.h * validate.h 2001-05-24 00:50:51 +00:00
strop.c * validate.h 2001-05-24 00:50:51 +00:00
strop.h * strop.c (scm_string_split): New procedure. 2001-05-04 04:59:05 +00:00
strorder.c * validate.h 2001-05-24 00:50:51 +00:00
strorder.h Updated copyrights 2000-06-12 12:28:24 +00:00
strports.c * validate.h 2001-05-24 00:50:51 +00:00
strports.h * validate.h (SCM_VALIDATE_OPOUTSTRPORT): New macro. 2001-03-15 11:24:45 +00:00
struct.c * validate.h 2001-05-24 00:50:51 +00:00
struct.h * validate.h 2001-05-24 00:50:51 +00:00
symbols-deprecated.c * validate.h 2001-05-24 00:50:51 +00:00
symbols.c * validate.h 2001-05-24 00:50:51 +00:00
symbols.h * validate.h 2001-05-24 00:50:51 +00:00
tag.c Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
tag.h * tag.h (scm_tag): deprecation expired - removed. 2001-04-28 17:29:50 +00:00
tags.h * validate.h 2001-05-24 00:50:51 +00:00
threads.c Remove #include <stdio.h>. Add #include <string.h>. 2001-03-09 23:33:41 +00:00
threads.h * threads.h (SCM_MUTEXP): Typo: removed extra parenthesis. 2000-12-10 20:34:01 +00:00
throw.c * validate.h 2001-05-24 00:50:51 +00:00
throw.h Updated copyrights 2000-06-12 12:28:24 +00:00
unif.c * validate.h 2001-05-24 00:50:51 +00:00
unif.h * validate.h 2001-05-24 00:50:51 +00:00
validate.h * validate.h 2001-05-24 00:50:51 +00:00
values.c * validate.h 2001-05-24 00:50:51 +00:00
values.h * values.h (scm_values_vtable, SCM_VALUESP): Moved here so that 2001-03-26 22:43:23 +00:00
variable.c Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
variable.h Merge from mvo-vcell-cleanup-1-branch. 2001-05-15 14:57:22 +00:00
vectors.c * validate.h 2001-05-24 00:50:51 +00:00
vectors.h * validate.h 2001-05-24 00:50:51 +00:00
version.c (s_scm_micro_version): Fix typo in FUNC_NAME, it 2001-05-19 01:24:59 +00:00
version.h * version.h (scm_init_version): new function. 2001-05-17 04:54:37 +00:00
versiondat.h.in * versiondat.h.in: add GUILE_MICRO_VERSION. 2001-05-17 04:54:45 +00:00
vports.c * validate.h 2001-05-24 00:50:51 +00:00
vports.h Updated copyrights 2000-06-12 12:28:24 +00:00
weaks.c * validate.h 2001-05-24 00:50:51 +00:00
weaks.h * weaks.h (scm_weak_vectors, scm_weaks_prehistory): Added 2000-04-21 23:14:19 +00:00