1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

Drop extra definition of start_document_refresh

It must have come with the merge.  Doh.
This commit is contained in:
Miciah Dashiel Butler Masters 2007-10-09 14:43:38 +00:00
parent bd8a7c4178
commit eacd0b4308

View File

@ -152,17 +152,3 @@ start_document_refreshes(struct session *ses)
start_document_refresh(ses->doc_view->document->refresh, ses->doc_view);
}
void
start_document_refreshes(struct session *ses)
{
assert(ses);
if (!ses->doc_view
|| !ses->doc_view->document
|| !ses->doc_view->document->refresh
|| !get_opt_bool("document.browse.refresh"))
return;
start_document_refresh(ses->doc_view->document->refresh, ses);
}