* modules.c (scm_export): Inserted a return statement.
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Tue, 10 Dec 2002 16:07:30 +0000 (16:07 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Tue, 10 Dec 2002 16:07:30 +0000 (16:07 +0000)
libguile/modules.c

index 52d054c..d54ac5f 100644 (file)
@@ -187,8 +187,8 @@ static SCM module_export_x_var;
 static SCM
 scm_export (SCM module, SCM namelist)
 {
-  scm_call_2 (SCM_VARIABLE_REF (module_export_x_var),
-             module, namelist);
+  return scm_call_2 (SCM_VARIABLE_REF (module_export_x_var),
+                    module, namelist);
 }