mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-14 15:40:19 +02:00
* __scm.h, alist.c, alist.h, append.c, append.h, appinit.c,
arbiters.c, arbiters.h, async.c, async.h, boolean.c, boolean.h, chars.c, chars.h, continuations.c, continuations.h, debug.c, debug.h, dynwind.c, dynwind.h, eq.c, eq.h, error.c, eval.c, eval.h, extchrs.c, extchrs.h, fdsocket.c, fdsocket.h, filesys.c, filesys.h, fports.c, fports.h, gc.c, gdb_interface.h, gdbint.c, gdbint.h, genio.c, genio.h, gscm.c, gscm.h, gsubr.c, gsubr.h, hash.c, hash.h, hashtab.c, hashtab.h, init.c, ioext.c, ioext.h, kw.c, kw.h, libguile.h, mallocs.c, mallocs.h, markers.c, markers.h, mbstrings.c, mbstrings.h, numbers.c, numbers.h, objprop.c, objprop.h, options.c, options.h, pairs.c, pairs.h, ports.c, ports.h, posix.c, posix.h, print.c, print.h, procprop.c, procprop.h, procs.c, procs.h, ramap.c, ramap.h, read.c, read.h, root.c, scmsigs.c, scmsigs.h, sequences.c, sequences.h, simpos.c, simpos.h, smob.c, socket.c, socket.h, srcprop.c, srcprop.h, stackchk.c, stackchk.h, stime.c, stime.h, strings.c, strings.h, strop.c, strop.h, strorder.c, strorder.h, strports.c, strports.h, struct.c, struct.h, symbols.c, symbols.h, tag.c, tag.h, unif.c, unif.h, variable.c, variable.h, vectors.c, vectors.h, version.c, version.h, vports.c, vports.h, weaks.c, weaks.h: Use SCM_P to declare functions with prototypes. (Patch thanks to Marius Vollmer.)
This commit is contained in:
parent
1717856b4e
commit
1cc91f1b29
115 changed files with 1793 additions and 5912 deletions
|
@ -77,14 +77,12 @@ long scm_tc16_srcprops;
|
|||
static scm_srcprops_chunk *srcprops_chunklist = 0;
|
||||
static scm_srcprops *srcprops_freelist = 0;
|
||||
|
||||
#ifdef __STDC__
|
||||
static SCM
|
||||
marksrcprops (SCM obj)
|
||||
#else
|
||||
|
||||
static SCM marksrcprops SCM_P ((SCM obj));
|
||||
|
||||
static SCM
|
||||
marksrcprops (obj)
|
||||
SCM obj;
|
||||
#endif
|
||||
{
|
||||
SCM_SETGC8MARK (obj);
|
||||
scm_gc_mark (SRCPROPFNAME (obj));
|
||||
|
@ -92,30 +90,26 @@ marksrcprops (obj)
|
|||
return SRCPROPPLIST (obj);
|
||||
}
|
||||
|
||||
#ifdef __STDC__
|
||||
static scm_sizet
|
||||
freesrcprops (SCM obj)
|
||||
#else
|
||||
|
||||
static scm_sizet freesrcprops SCM_P ((SCM obj));
|
||||
|
||||
static scm_sizet
|
||||
freesrcprops (obj)
|
||||
SCM obj;
|
||||
#endif
|
||||
{
|
||||
*((scm_srcprops **) SCM_CDR (obj)) = srcprops_freelist;
|
||||
srcprops_freelist = (scm_srcprops *) SCM_CDR (obj);
|
||||
return 0; /* srcprops_chunks are not freed until leaving guile */
|
||||
}
|
||||
|
||||
#ifdef __STDC__
|
||||
static int
|
||||
prinsrcprops (SCM obj, SCM port, scm_print_state *pstate)
|
||||
#else
|
||||
|
||||
static int prinsrcprops SCM_P ((SCM obj, SCM port, scm_print_state *pstate));
|
||||
|
||||
static int
|
||||
prinsrcprops (obj, port, pstate)
|
||||
SCM obj;
|
||||
SCM port;
|
||||
scm_print_state *pstate;
|
||||
#endif
|
||||
{
|
||||
int writingp = SCM_WRITINGP (pstate);
|
||||
scm_gen_puts (scm_regular_string, "#<srcprops ", port);
|
||||
|
@ -129,10 +123,7 @@ prinsrcprops (obj, port, pstate)
|
|||
static scm_smobfuns srcpropssmob =
|
||||
{marksrcprops, freesrcprops, prinsrcprops, 0};
|
||||
|
||||
#ifdef __STDC__
|
||||
SCM
|
||||
scm_make_srcprops (int line, int col, SCM filename, SCM copy, SCM plist)
|
||||
#else
|
||||
|
||||
SCM
|
||||
scm_make_srcprops (line, col, filename, copy, plist)
|
||||
int line;
|
||||
|
@ -140,7 +131,6 @@ scm_make_srcprops (line, col, filename, copy, plist)
|
|||
SCM filename;
|
||||
SCM copy;
|
||||
SCM plist;
|
||||
#endif
|
||||
{
|
||||
register SCM ans;
|
||||
register scm_srcprops *ptr;
|
||||
|
@ -175,14 +165,10 @@ scm_make_srcprops (line, col, filename, copy, plist)
|
|||
return ans;
|
||||
}
|
||||
|
||||
#ifdef __STDC__
|
||||
SCM
|
||||
scm_srcprops_to_plist (SCM obj)
|
||||
#else
|
||||
|
||||
SCM
|
||||
scm_srcprops_to_plist (obj)
|
||||
SCM obj;
|
||||
#endif
|
||||
{
|
||||
SCM plist = SRCPROPPLIST (obj);
|
||||
if (!SCM_UNBNDP (SRCPROPCOPY (obj)))
|
||||
|
@ -196,14 +182,10 @@ scm_srcprops_to_plist (obj)
|
|||
}
|
||||
|
||||
SCM_PROC (s_source_properties, "source-properties", 1, 0, 0, scm_source_properties);
|
||||
#ifdef __STDC__
|
||||
SCM
|
||||
scm_source_properties (SCM obj)
|
||||
#else
|
||||
|
||||
SCM
|
||||
scm_source_properties (obj)
|
||||
SCM obj;
|
||||
#endif
|
||||
{
|
||||
SCM p;
|
||||
if (SCM_MEMOIZEDP (obj))
|
||||
|
@ -217,15 +199,11 @@ scm_source_properties (obj)
|
|||
/* Perhaps this procedure should look through an alist
|
||||
and try to make a srcprops-object...? */
|
||||
SCM_PROC (s_set_source_properties_x, "set-source-properties!", 2, 0, 0, scm_set_source_properties_x);
|
||||
#ifdef __STDC__
|
||||
SCM
|
||||
scm_set_source_properties_x (SCM obj, SCM plist)
|
||||
#else
|
||||
|
||||
SCM
|
||||
scm_set_source_properties_x (obj, plist)
|
||||
SCM obj;
|
||||
SCM plist;
|
||||
#endif
|
||||
{
|
||||
SCM handle;
|
||||
if (SCM_MEMOIZEDP (obj))
|
||||
|
@ -236,15 +214,11 @@ scm_set_source_properties_x (obj, plist)
|
|||
}
|
||||
|
||||
SCM_PROC (s_source_property, "source-property", 2, 0, 0, scm_source_property);
|
||||
#ifdef __STDC__
|
||||
SCM
|
||||
scm_source_property (SCM obj, SCM key)
|
||||
#else
|
||||
|
||||
SCM
|
||||
scm_source_property (obj, key)
|
||||
SCM obj;
|
||||
SCM key;
|
||||
#endif
|
||||
{
|
||||
SCM p;
|
||||
if (SCM_MEMOIZEDP (obj))
|
||||
|
@ -268,16 +242,12 @@ scm_source_property (obj, key)
|
|||
}
|
||||
|
||||
SCM_PROC (s_set_source_property_x, "set-source-property!", 3, 0, 0, scm_set_source_property_x);
|
||||
#ifdef __STDC__
|
||||
SCM
|
||||
scm_set_source_property_x (SCM obj, SCM key, SCM datum)
|
||||
#else
|
||||
|
||||
SCM
|
||||
scm_set_source_property_x (obj, key, datum)
|
||||
SCM obj;
|
||||
SCM key;
|
||||
SCM datum;
|
||||
#endif
|
||||
{
|
||||
scm_whash_handle h;
|
||||
SCM p;
|
||||
|
@ -339,13 +309,9 @@ scm_set_source_property_x (obj, key, datum)
|
|||
return SCM_UNSPECIFIED;
|
||||
}
|
||||
|
||||
#ifdef __STDC__
|
||||
void
|
||||
scm_init_srcprop (void)
|
||||
#else
|
||||
|
||||
void
|
||||
scm_init_srcprop ()
|
||||
#endif
|
||||
{
|
||||
scm_tc16_srcprops = scm_newsmob (&srcpropssmob);
|
||||
scm_source_whash = scm_make_weak_key_hash_table (SCM_MAKINUM (2047));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue