summaryrefslogtreecommitdiffstats
path: root/handler.c
diff options
context:
space:
mode:
authorRocco Rutte <pdmef@gmx.net>2009-03-15 12:33:29 +0100
committerRocco Rutte <pdmef@gmx.net>2009-03-15 12:33:29 +0100
commit09022bca8254bf1c582aea8996800dac97112599 (patch)
tree3d3e844da76753d8090fb8c1c0fc65465e664cc3 /handler.c
parentf74beec2a87e669445c9edbc6d109328c6f58b1b (diff)
text/enriched: flush FILE buffer, too when flushing enriched text
Diffstat (limited to 'handler.c')
-rw-r--r--handler.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/handler.c b/handler.c
index 01e88ecc..508aec47 100644
--- a/handler.c
+++ b/handler.c
@@ -597,8 +597,9 @@ static void enriched_flush (struct enriched_state *stte, int wrap)
stte->word_len = 0;
stte->buff_used = 0;
}
- if (wrap)
+ if (wrap)
enriched_wrap(stte);
+ fflush (stte->s->fpout);
}