summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-07 22:05:38 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-07 22:05:38 -0700
commitaf996f5191f3385769e2eb58153cc9039d0fcc28 (patch)
tree3889266b1999e63066fd9fc4193c3ca78f60bdd8 /lib.c
parente7c7d32277dd4ab3b381f9d5daa03e4b2ded75d1 (diff)
downloadtxr-af996f5191f3385769e2eb58153cc9039d0fcc28.tar.gz
txr-af996f5191f3385769e2eb58153cc9039d0fcc28.tar.bz2
txr-af996f5191f3385769e2eb58153cc9039d0fcc28.zip
C++ upkeep: resolve multiple definitions of fun_k.
* eval.c (fun_k): Global definition removed. (eval_init): Do not initialize fun_k here. * filter.c (fun_k): Definition removed. (filter_init): Do not initialize fun_k. * filter.h (fun_k): Declaration removed. * lib.c (fun_k): Defined in this file now. (obj_init): Initialize fun_k here. * lib.h (fun_k): Declare here.
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib.c b/lib.c
index 71a9c991..7b3b2233 100644
--- a/lib.c
+++ b/lib.c
@@ -97,7 +97,7 @@ val query_error_s, file_error_s, process_error_s, syntax_error_s;
val system_error_s;
val gensym_counter_s;
-val nothrow_k, args_k, colon_k, auto_k;
+val nothrow_k, args_k, colon_k, auto_k, fun_k;
val null_string;
val nil_string;
@@ -6902,6 +6902,7 @@ static void obj_init(void)
nothrow_k = intern(lit("nothrow"), keyword_package);
colon_k = intern(lit(""), keyword_package);
auto_k = intern(lit("auto"), keyword_package);
+ fun_k = intern(lit("fun"), keyword_package);
equal_f = func_n2(equal);
eq_f = func_n2(eq);