From: Pavel Roskin Date: Sun, 6 May 2001 06:17:03 +0000 (+0000) Subject: * automake.in (scan_texinfo_file): Treat @defindex and @synindex X-Git-Tag: handle-languages~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1fdd7e9dd2cec2e4a9693c88226f05315b16451;p=thirdparty%2Fautomake.git * automake.in (scan_texinfo_file): Treat @defindex and @synindex in the same way as @defcodeindex and @syncodeindex respectively. --- diff --git a/ChangeLog b/ChangeLog index 48f4f618f..9cfbbe05f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-05-05 Pavel Roskin + + * automake.in (scan_texinfo_file): Treat @defindex and @synindex + in the same way as @defcodeindex and @syncodeindex respectively. + 2001-05-05 Tom Tromey * mans.am (install-man%SECTION%): Minor cleanup. diff --git a/automake.in b/automake.in index f30157aa2..d3e423999 100755 --- a/automake.in +++ b/automake.in @@ -2601,9 +2601,9 @@ sub scan_texinfo_file # 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. @@ -2618,9 +2618,9 @@ sub scan_texinfo_file } # Merging an index into an another. - elsif (/^\@syncodeindex (\w+) \w+/) + elsif (/^\@syn(code)?index (\w+) \w+/) { - push @syncodeindexes, "$1s"; + push @syncodeindexes, "$2s"; } }