From 6ded69e17a47096c37362869c86b3a5070fb8c74 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Mon, 16 Aug 1999 15:20:44 +0000 Subject: [PATCH] * eval.c (scm_sym_args): Made global. --- libguile/eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/eval.c b/libguile/eval.c index 9ca6af043..035e6c660 100644 --- a/libguile/eval.c +++ b/libguile/eval.c @@ -507,7 +507,7 @@ scm_m_body (op, xorig, what) } SCM_SYNTAX(s_quote,"quote", scm_makmmacro, scm_m_quote); -SCM_GLOBAL_SYMBOL(scm_i_quote,s_quote); +SCM_GLOBAL_SYMBOL(scm_i_quote, s_quote); SCM scm_m_quote (xorig, env) @@ -3309,7 +3309,7 @@ scm_nconc2last (lst) return lst; } -SCM_SYMBOL (scm_sym_args, "args"); +SCM_GLOBAL_SYMBOL (scm_sym_args, "args"); #endif /* !DEVAL */