diff options
| author | Jacob Nevins <jacobn@chiark.greenend.org.uk> | 2008-03-19 22:28:15 +0000 |
|---|---|---|
| committer | Jacob Nevins <jacobn@chiark.greenend.org.uk> | 2008-03-19 22:28:15 +0000 |
| commit | 8013c941bcf3f9095f2db590761fd3e7b0b474e0 (patch) | |
| tree | 93f2d1e24c13e7dacd1ce672ba2329bfae7ddf71 | |
| parent | 0d791fb645abb77b339d90c95882ef315d1f912c (diff) | |
| download | halibut-8013c941bcf3f9095f2db590761fd3e7b0b474e0.zip halibut-8013c941bcf3f9095f2db590761fd3e7b0b474e0.tar.gz halibut-8013c941bcf3f9095f2db590761fd3e7b0b474e0.tar.bz2 halibut-8013c941bcf3f9095f2db590761fd3e7b0b474e0.tar.xz | |
Fix cut'n'paste error which had the effect of making the default for
\cfg{html-section-shownumber}{n} undefined.
[originally from svn r7929]
| -rw-r--r-- | bk_html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -253,7 +253,7 @@ static htmlconfig html_configure(paragraph *source) { ret.nasect = 1; ret.asect = snewn(ret.nasect, sectlevel); ret.asect[0].just_numbers = TRUE; - ret.achapter.number_at_all = TRUE; + ret.asect[0].number_at_all = TRUE; ret.asect[0].number_suffix = L" "; ret.ncdepths = 0; ret.contents_depths = 0; |