diff options
Diffstat (limited to 'libguile/modules.c')
-rw-r--r-- | libguile/modules.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libguile/modules.c b/libguile/modules.c index 3b3f4d28b..bcada07e3 100644 --- a/libguile/modules.c +++ b/libguile/modules.c @@ -38,6 +38,10 @@ * If you write modifications of your own for GUILE, it is your choice * whether to permit this exception to apply to your modifications. * If you do not wish that, delete this exception notice. */ + +/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999, + gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */ + #include "_scm.h" @@ -136,8 +140,7 @@ scm_load_scheme_module (SCM name) */ SCM -scm_top_level_env (thunk) - SCM thunk; +scm_top_level_env (SCM thunk) { if (SCM_IMP (thunk)) return SCM_EOL; |