diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-08-29 14:22:16 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1999-08-29 14:22:16 +0000 |
commit | 81123e6d057c7614dc9c5e56a91957fb791accb6 (patch) | |
tree | 7b3be4a44acad20761435d6b061ccee7bbf2f193 /libguile/eval.h | |
parent | defed51763cf7bd55333ef76c2db41ec049a09ff (diff) | |
download | guile-81123e6d057c7614dc9c5e56a91957fb791accb6.tar.gz |
* eval.c, eval.h: Bugfix: scm_sym_apply was not initialized
correctly.
Diffstat (limited to 'libguile/eval.h')
-rw-r--r-- | libguile/eval.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/eval.h b/libguile/eval.h index 84eeaca99..57dc31a50 100644 --- a/libguile/eval.h +++ b/libguile/eval.h @@ -152,6 +152,8 @@ extern SCM scm_sym_apply; extern SCM scm_sym_set_x; extern SCM scm_sym_args; +extern SCM scm_f_apply; + extern long scm_tc16_macro; /* A resolved global variable reference in the CAR position |