summaryrefslogtreecommitdiff
path: root/doc/doc-docbook/TidyInfo
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doc-docbook/TidyInfo')
-rwxr-xr-xdoc/doc-docbook/TidyInfo3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/doc-docbook/TidyInfo b/doc/doc-docbook/TidyInfo
index 9b9f8f290..cfc27317f 100755
--- a/doc/doc-docbook/TidyInfo
+++ b/doc/doc-docbook/TidyInfo
@@ -1,6 +1,6 @@
#! /usr/bin/perl -w
-# $Cambridge: exim/doc/doc-docbook/TidyInfo,v 1.1 2006/04/04 14:03:49 ph10 Exp $
+# $Cambridge: exim/doc/doc-docbook/TidyInfo,v 1.2 2007/04/17 13:06:09 ph10 Exp $
# This is script to tidy up the Texinfo file that docbook2texi produces. We
# have to change "conceptindex" and "optionindex" to "cindex" and "findex", and
@@ -54,6 +54,7 @@ while (<>)
{
s/conceptindex/cindex/;
s/optionindex/findex/;
+ s/variableindex/findex/;
print;
}
}