diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2003-03-11 15:58:02 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2003-03-11 15:58:02 +0000 |
commit | 109c2c9f29c206ee05e68fb3a08093dc7767f275 (patch) | |
tree | 9b84957653fcc615e20038e254d82bb7540f0de2 /libguile/modules.h | |
parent | f8af5c6d355b2c05e0aff4bcb2f1651b6f5c7824 (diff) | |
download | guile-109c2c9f29c206ee05e68fb3a08093dc7767f275.tar.gz |
* modules.c (scm_module_import_interface): New function.
* boot-9.scm (process-duplicates): Use module-import-interface.
(module-symbol-interface): Removed.
Diffstat (limited to 'libguile/modules.h')
-rw-r--r-- | libguile/modules.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/modules.h b/libguile/modules.h index db3d789be..b1d7cef12 100644 --- a/libguile/modules.h +++ b/libguile/modules.h @@ -3,7 +3,7 @@ #ifndef SCM_MODULES_H #define SCM_MODULES_H -/* Copyright (C) 1998, 2000, 2001, 2002 Free Software Foundation, Inc. +/* Copyright (C) 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -114,6 +114,7 @@ SCM_API void scm_c_export (const char *name, ...); SCM_API SCM scm_sym2var (SCM sym, SCM thunk, SCM definep); +SCM_API SCM scm_module_import_interface (SCM module, SCM sym); SCM_API SCM scm_module_lookup_closure (SCM module); SCM_API SCM scm_module_transformer (SCM module); SCM_API SCM scm_current_module_lookup_closure (void); |