summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/main.c b/main.c
index e3848843..8084663f 100644
--- a/main.c
+++ b/main.c
@@ -609,8 +609,7 @@ main(int argc, char *argv[])
(void)fchdir(startdir);
close(startdir);
}
- if (outst.outtype <= OUTT_UTF8)
- term_tag_finish();
+ term_tag_finish();
if (outst.outdata != NULL) {
switch (outst.outtype) {
case OUTT_HTML:
@@ -832,16 +831,14 @@ process_onefile(struct mparse *mp, struct manpage *resp, int startdir,
} else
fd = STDIN_FILENO;
- if (outst->outtype <= OUTT_UTF8) {
- if (outst->use_pager) {
- outst->use_pager = 0;
- outst->tag_files = term_tag_init(conf->output.tag);
- }
- if (outst->had_output) {
- if (outst->outdata == NULL)
- outdata_alloc(outst, &conf->output);
- terminal_sepline(outst->outdata);
- }
+ if (outst->use_pager) {
+ outst->use_pager = 0;
+ outst->tag_files = term_tag_init(conf->output.tag);
+ }
+ if (outst->had_output && outst->outtype <= OUTT_UTF8) {
+ if (outst->outdata == NULL)
+ outdata_alloc(outst, &conf->output);
+ terminal_sepline(outst->outdata);
}
if (resp->form == FORM_SRC)