summaryrefslogtreecommitdiff
path: root/libguile/variable.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2000-11-17 16:25:05 +0000
committerMarius Vollmer <mvo@zagadka.de>2000-11-17 16:25:05 +0000
commit8dc9439fc660ef7914d63fd8c1fc58092b5f6fa5 (patch)
tree86014ec2f5662002de0fe3fc6f1549dd64ad4f12 /libguile/variable.c
parent6b72ac1d10d8b1ab78f3afa6e92b835c1e77c80e (diff)
downloadguile-8dc9439fc660ef7914d63fd8c1fc58092b5f6fa5.tar.gz
* 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/variable.c')
-rw-r--r--libguile/variable.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/variable.c b/libguile/variable.c
index 4dcfc0e67..304ea009b 100644
--- a/libguile/variable.c
+++ b/libguile/variable.c
@@ -235,7 +235,9 @@ scm_init_variable ()
scm_tc16_variable = scm_make_smob_type_mfpe ("variable", 0,
scm_markvar, NULL, prin_var, var_equal);
anonymous_variable_sym = SCM_CAR (scm_sysintern ("anonymous-variable", SCM_UNDEFINED));
+#ifndef SCM_MAGIC_SNARFER
#include "libguile/variable.x"
+#endif
}