From 5f79ce09eb296870f010cc892e67e6cd5e3f8cb7 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 26 Feb 2022 17:53:20 +0100 Subject: [PATCH] [guile] Drop not used variable --- src/scripting/guile/core.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/scripting/guile/core.c b/src/scripting/guile/core.c index 2d1a8734f..689fba849 100644 --- a/src/scripting/guile/core.c +++ b/src/scripting/guile/core.c @@ -46,7 +46,6 @@ void init_guile(struct module *module) { SCM user_module; - SCM internal_module; char *path; scm_init_guile(); @@ -70,7 +69,7 @@ init_guile(struct module *module) /* hooks.scm should have created a new module (elinks * internal). Let's remember it, even though I haven't figured * out how to use it directly yet... */ - internal_module = scm_current_module(); + scm_current_module(); /* Return to the user module, import bindings from (elinks * internal), then load ~/.elinks/user-hooks.scm. */