diff options
| author | Simon Tatham <anakin@pobox.com> | 2001-12-04 19:23:46 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2001-12-04 19:23:46 +0000 |
| commit | 087e9915b987f1cd6eb679521f87fa3e5b2b9d96 (patch) | |
| tree | 8041d299c46f5c0b9061caa01a3c9ef9f8013103 | |
| parent | 69d90cdcfde25f6fb52871f0fea9c7b3010c9134 (diff) | |
| download | halibut-087e9915b987f1cd6eb679521f87fa3e5b2b9d96.zip halibut-087e9915b987f1cd6eb679521f87fa3e5b2b9d96.tar.gz halibut-087e9915b987f1cd6eb679521f87fa3e5b2b9d96.tar.bz2 halibut-087e9915b987f1cd6eb679521f87fa3e5b2b9d96.tar.xz | |
Well, nearly working, that is. Remember to clear all paragraph
attributes to default values right at the start of the file. We
don't want the title on the very first page being 1000 pixels high!
[originally from svn r1448]
| -rw-r--r-- | winhelp.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -453,6 +453,12 @@ void whlp_prepare(WHLP h) otherctx = add234(h->contexts, ctx); } while (otherctx != ctx); } + + /* + * Ensure paragraph attributes are clear for the start of text + * output. + */ + whlp_para_reset(h); } char *whlp_topic_id(WHLP_TOPIC topic) |