+2001-05-05 Pavel Roskin <proski@gnu.org>
+
+ * automake.in (scan_texinfo_file): Treat @defindex and @synindex
+ in the same way as @defcodeindex and @syncodeindex respectively.
+
2001-05-05 Tom Tromey <tromey@redhat.com>
* mans.am (install-man%SECTION%): Minor cleanup.
# Try to find what are the indexes which are used.
# Creating a new category of index.
- elsif (/^\@defcodeindex (\w+)/)
+ elsif (/^\@def(code)?index (\w+)/)
{
- push @clean_suffixes, $1;
+ push @clean_suffixes, $2;
}
# Storing in a predefined index.
}
# Merging an index into an another.
- elsif (/^\@syncodeindex (\w+) \w+/)
+ elsif (/^\@syn(code)?index (\w+) \w+/)
{
- push @syncodeindexes, "$1s";
+ push @syncodeindexes, "$2s";
}
}