diff options
| author | Simon Tatham <anakin@pobox.com> | 2001-11-25 17:06:25 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2001-11-25 17:06:25 +0000 |
| commit | cc47e004f798d50429fd605499f8004530d4abb0 (patch) | |
| tree | 751b1ca2e4b90cb47fa7d889b4c9b4170210a24b /bk_text.c | |
| parent | 37727cf9cf399f80d8be6994f154256ac09dcfea (diff) | |
| download | halibut-cc47e004f798d50429fd605499f8004530d4abb0.zip halibut-cc47e004f798d50429fd605499f8004530d4abb0.tar.gz halibut-cc47e004f798d50429fd605499f8004530d4abb0.tar.bz2 halibut-cc47e004f798d50429fd605499f8004530d4abb0.tar.xz | |
Improve handling of versionids - now every HTML file contains all
versionids. I thought it might be nice to include only the
versionid(s) from the .but file(s) that gave rise to a particular
chapter file, but actually this is very badly defined (that
information is thrown away very early on in the front end) and in
any case thanks to cross-references every file _does_ depend on its
fellows. Better to put them all in throughout.
[originally from svn r1417]
Diffstat (limited to 'bk_text.c')
| -rw-r--r-- | bk_text.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -581,6 +581,6 @@ static void text_versionid(FILE *fp, word *text) { text_rdaddwc(&t, text, NULL); rdaddc(&t, ']'); /* FIXME: configurability */ - fprintf(fp, "%s\n\n", t.text); + fprintf(fp, "%s\n", t.text); sfree(t.text); } |