diff options
author | Marius Vollmer <mvo@zagadka.de> | 2000-11-17 16:25:05 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2000-11-17 16:25:05 +0000 |
commit | 8dc9439fc660ef7914d63fd8c1fc58092b5f6fa5 (patch) | |
tree | 86014ec2f5662002de0fe3fc6f1549dd64ad4f12 /libguile/hooks.c | |
parent | 6b72ac1d10d8b1ab78f3afa6e92b835c1e77c80e (diff) |
* alist.c, arbiters.c, async.c, backtrace.c, boolean.c, chars.c,
continuations.c, debug-malloc.c, debug.c, dynl.c, dynwind.c,
environments.c, eq.c, error.c, eval.c, evalext.c, feature.c,
filesys.c, fluids.c, fports.c, gc.c, goops.c, guardians.c, hash.c,
hashtab.c, hooks.c, ioext.c, iselect.c, keywords.c, lang.c,
list.c, load.c, macros.c, modules.c, net_db.c, numbers.c,
objects.c, objprop.c, options.c, pairs.c, ports.c, posix.c,
print.c, procprop.c, procs.c, properties.c, ramap.c, random.c,
read.c, regex-posix.c, root.c, scmsigs.c, script.c, simpos.c,
socket.c, sort.c, srcprop.c, stackchk.c, stacks.c, stime.c,
strings.c, strop.c, strorder.c, strports.c, struct.c, symbols.c,
tag.c, threads.c, throw.c, unif.c, variable.c, vectors.c,
version.c, vports.c, weaks.c: Makes sure the snarfer output
inclusion is disabled when the snarfer is run on the file. Thanks
to Lars J. Aas!
* Makefile.am: Install guile-procedures.txt in version-specific
directory to enable multiple installed guile versions. Suggested
by Karl M. Hegbloom <karlheg@debian.org, patch by Matthias Koeppe.
Diffstat (limited to 'libguile/hooks.c')
-rw-r--r-- | libguile/hooks.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/hooks.c b/libguile/hooks.c index 14609cb5e..a507f3367 100644 --- a/libguile/hooks.c +++ b/libguile/hooks.c @@ -354,7 +354,9 @@ scm_init_hooks () scm_set_smob_mark (scm_tc16_hook, scm_markcdr); scm_set_smob_print (scm_tc16_hook, print_hook); +#ifndef SCM_MAGIC_SNARFER #include "libguile/hooks.x" +#endif } /* |