From 066fa9162d3851b249d68b0723ad7c1a3170e288 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Sun, 6 May 2001 06:17:02 +0000 Subject: [PATCH] * automake.in (scan_texinfo_file): Treat @defindex and @synindex in the same way as @defcodeindex and @syncodeindex respectively. --- ChangeLog | 5 +++++ automake.in | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 48f4f618..9cfbbe05 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 f30157aa..d3e42399 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"; } } -- 2.43.5