summaryrefslogtreecommitdiff
path: root/bk_text.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2001-11-25 17:06:25 +0000
committerSimon Tatham <anakin@pobox.com>2001-11-25 17:06:25 +0000
commitcc47e004f798d50429fd605499f8004530d4abb0 (patch)
tree751b1ca2e4b90cb47fa7d889b4c9b4170210a24b /bk_text.c
parent37727cf9cf399f80d8be6994f154256ac09dcfea (diff)
downloadhalibut-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bk_text.c b/bk_text.c
index 73c4cea..3bec969 100644
--- a/bk_text.c
+++ b/bk_text.c
@@ -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);
}