31 lines
869 B
Plaintext
31 lines
869 B
Plaintext
--- src/man.c
|
|
+++ src/man.c 2012-10-01 14:34:29.003506558 +0000
|
|
@@ -2312,21 +2312,23 @@ static void format_display (pipeline *de
|
|
if (!status)
|
|
break;
|
|
}
|
|
- if (!candidate)
|
|
- error (CHILD_FAIL, 0,
|
|
- "couldn't execute any browser from %s",
|
|
- html_pager);
|
|
free (browser_list);
|
|
if (chdir (old_cwd) == -1) {
|
|
error (0, errno, _("can't change to directory %s"),
|
|
old_cwd);
|
|
chdir ("/");
|
|
}
|
|
+ if (!status)
|
|
+ sleep(5); /* firefox runs into background to fast */
|
|
if (remove_directory (htmldir, 0) == -1)
|
|
error (0, errno, _("can't remove directory %s"),
|
|
htmldir);
|
|
free (htmlfile);
|
|
free (htmldir);
|
|
+ if (!candidate)
|
|
+ error (CHILD_FAIL, 0,
|
|
+ "couldn't execute any browser from %s",
|
|
+ html_pager);
|
|
} else
|
|
#endif /* TROFF_IS_GROFF */
|
|
/* TODO: check format_cmd status too? */
|