mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Put documentation (doc/events.txt) and reality back into alignment
by changing goto_url_with_hook not to call goto_uri if get_hooked_uri returns NULL, which it does if a hook returns "", which several hooks do.
This commit is contained in:
parent
73a91e6d8f
commit
470da90699
@ -718,8 +718,11 @@ goto_url_with_hook(struct session *ses, unsigned char *url)
|
|||||||
if (!*url) return;
|
if (!*url) return;
|
||||||
|
|
||||||
uri = get_hooked_uri(url, ses, cwd);
|
uri = get_hooked_uri(url, ses, cwd);
|
||||||
|
if (!uri) return;
|
||||||
|
|
||||||
goto_uri(ses, uri);
|
goto_uri(ses, uri);
|
||||||
if (uri) done_uri(uri);
|
|
||||||
|
done_uri(uri);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
Reference in New Issue
Block a user