1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-24 20:30:28 +02:00

* eval.c (scm_sym_args): Made global.

This commit is contained in:
Mikael Djurfeldt 1999-08-16 15:20:44 +00:00
parent 8b7840b975
commit 6ded69e17a

View file

@ -507,7 +507,7 @@ scm_m_body (op, xorig, what)
} }
SCM_SYNTAX(s_quote,"quote", scm_makmmacro, scm_m_quote); 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
scm_m_quote (xorig, env) scm_m_quote (xorig, env)
@ -3309,7 +3309,7 @@ scm_nconc2last (lst)
return lst; return lst;
} }
SCM_SYMBOL (scm_sym_args, "args"); SCM_GLOBAL_SYMBOL (scm_sym_args, "args");
#endif /* !DEVAL */ #endif /* !DEVAL */