From 451685f31fb430077caf7edc0f4c6fbdb1277cb0 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 4 Jul 2001 18:58:33 +0000 Subject: [PATCH] 2001-07-04 OKUJI Yoshinori * automake.in (scan_texinfo_file): Add the second argument to `@syncodeindex' into @CLEAN_SUFFIXES, because the combined index itself may not be used directly. --- ChangeLog | 6 ++++++ automake.in | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 137a47ba..46dfb889 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-07-04 OKUJI Yoshinori + + * automake.in (scan_texinfo_file): Add the second argument to + `@syncodeindex' into @CLEAN_SUFFIXES, because the combined index + itself may not be used directly. + 2001-07-04 Tom Tromey * missing: Updated. diff --git a/automake.in b/automake.in index 74df0f33..89267917 100755 --- a/automake.in +++ b/automake.in @@ -2896,9 +2896,10 @@ sub scan_texinfo_file } # Merging an index into an another. - elsif (/^\@syn(code)?index (\w+) \w+/) + elsif (/^\@syn(code)?index (\w+) (\w+)/) { push @syncodeindexes, "$2s"; + push @clean_suffixes, "$3s"; } } -- 2.43.5