mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[guile] Drop not used variable
This commit is contained in:
parent
6d95271e9f
commit
5f79ce09eb
@ -46,7 +46,6 @@ void
|
|||||||
init_guile(struct module *module)
|
init_guile(struct module *module)
|
||||||
{
|
{
|
||||||
SCM user_module;
|
SCM user_module;
|
||||||
SCM internal_module;
|
|
||||||
char *path;
|
char *path;
|
||||||
|
|
||||||
scm_init_guile();
|
scm_init_guile();
|
||||||
@ -70,7 +69,7 @@ init_guile(struct module *module)
|
|||||||
/* hooks.scm should have created a new module (elinks
|
/* hooks.scm should have created a new module (elinks
|
||||||
* internal). Let's remember it, even though I haven't figured
|
* internal). Let's remember it, even though I haven't figured
|
||||||
* out how to use it directly yet... */
|
* out how to use it directly yet... */
|
||||||
internal_module = scm_current_module();
|
scm_current_module();
|
||||||
|
|
||||||
/* Return to the user module, import bindings from (elinks
|
/* Return to the user module, import bindings from (elinks
|
||||||
* internal), then load ~/.elinks/user-hooks.scm. */
|
* internal), then load ~/.elinks/user-hooks.scm. */
|
||||||
|
Loading…
Reference in New Issue
Block a user