diff options
author | Andy Wingo <wingo@pobox.com> | 2009-08-25 18:04:02 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2009-08-25 18:04:02 +0200 |
commit | 108e18b18abc066b2709a09283751e9138ccc935 (patch) | |
tree | f55cf91309b7b069bc2f2d725fb788aa08870fa5 /libguile/extensions.c | |
parent | c15d8e6ab9bf991ca55038fa895993bbb4c1efaa (diff) | |
parent | cd43fdc5b7a7c851ee0f2b4e96a1f394fb50d869 (diff) | |
download | guile-108e18b18abc066b2709a09283751e9138ccc935.tar.gz |
Merge wip-array refactor, up to cd43fdc5b7a7c
Conflicts:
NEWS
libguile/print.c
Diffstat (limited to 'libguile/extensions.c')
-rw-r--r-- | libguile/extensions.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libguile/extensions.c b/libguile/extensions.c index 54351dd9c..d01e9c656 100644 --- a/libguile/extensions.c +++ b/libguile/extensions.c @@ -1,6 +1,6 @@ /* extensions.c - registering and loading extensions. * - * Copyright (C) 2001, 2006 Free Software Foundation, Inc. + * Copyright (C) 2001, 2006, 2009 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -41,7 +41,7 @@ typedef struct extension_t void *data; } extension_t; -static extension_t *registered_extensions; +static extension_t *registered_extensions = NULL; /* Register a LIB/INIT pair for use by `scm_load_extension'. LIB is allowed to be NULL and then only INIT is used to identify the @@ -157,7 +157,6 @@ SCM_DEFINE (scm_load_extension, "load-extension", 2, 0, 0, void scm_init_extensions () { - registered_extensions = NULL; #include "libguile/extensions.x" } |