1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* eval.h (scm_eval_options_interface): Add external prototype for this.

* eval.c (scm_eval_options_interface): Use prototype-style def'n.
* eval.c (scm_lookupcar1): Make this static.
This commit is contained in:
Jim Blandy 1998-07-30 14:44:01 +00:00
parent d5cf0efe1f
commit 8ecf1f1359

View file

@ -254,10 +254,8 @@ scm_ilookup (iloc, env)
#endif /* USE_THREADS */
SCM *
scm_lookupcar1 (vloc, genv)
SCM vloc;
SCM genv;
static SCM *
scm_lookupcar1 (SCM vloc, SCM genv)
{
SCM env = genv;
register SCM *al, fl, var = SCM_CAR (vloc);
@ -1480,8 +1478,7 @@ scm_option scm_evaluator_trap_table[] = {
SCM_PROC (s_eval_options_interface, "eval-options-interface", 0, 1, 0, scm_eval_options_interface);
SCM
scm_eval_options_interface (setting)
SCM setting;
scm_eval_options_interface (SCM setting)
{
SCM ans;
SCM_DEFER_INTS;