1
0
Fork 0

Remove references to internal-hooks.scm

This commit is contained in:
Felix Janda 2018-02-24 15:08:17 -05:00
parent cec24f11a4
commit 254f440de4
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Installation:
You'll need internal-hooks.scm and user-hooks.scm in $HOME/.elinks
You'll need hooks.scm and user-hooks.scm in $HOME/.elinks
I used Guile 1.5.6, in case that matters.

View File

@ -59,10 +59,10 @@ init_guile(struct module *module)
if (!path) return;
if (file_can_read(path)) {
/* Load ~/.elinks/internal-hooks.scm. */
/* Load ~/.elinks/hooks.scm. */
scm_c_primitive_load_path(path);
/* internal-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
* out how to use it directly yet... */
internal_module = scm_current_module();