[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/maintain/generate_code_convert_data.pl: repl
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/maintain/generate_code_convert_data.pl: replace incorrect continue by next. Report from Gavin. |
Date: |
Sat, 19 Oct 2024 04:43:54 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new 98c9af4648 * tp/maintain/generate_code_convert_data.pl: replace
incorrect continue by next. Report from Gavin.
98c9af4648 is described below
commit 98c9af4648ea911240be76734aa9d724c17960cc
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sat Oct 19 10:43:43 2024 +0200
* tp/maintain/generate_code_convert_data.pl: replace incorrect
continue by next. Report from Gavin.
---
ChangeLog | 5 +++++
tp/maintain/generate_code_convert_data.pl | 4 ++--
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index fe9f075b26..391b41c096 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-10-19 Patrice Dumas <pertusus@free.fr>
+
+ * tp/maintain/generate_code_convert_data.pl: replace incorrect
+ continue by next. Report from Gavin.
+
2024-10-19 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/convert/converter.c (converter_setup),
diff --git a/tp/maintain/generate_code_convert_data.pl
b/tp/maintain/generate_code_convert_data.pl
index ed75fd65f0..971e7715a4 100755
--- a/tp/maintain/generate_code_convert_data.pl
+++ b/tp/maintain/generate_code_convert_data.pl
@@ -201,7 +201,7 @@ foreach my $header (@su_header) {
push @su_ordered_translated_hashes, $su_type;
$su_header_indices{$su_type} = {$spec => $su_header_index};
} elsif ($header eq '') {
- continue;
+ next;
} else {
push @su_ordered_untranslated_hashes, $header;
$su_type = undef;
@@ -393,7 +393,7 @@ foreach my $header (@d_header) {
}
$d_header_indices{$type}->{'to_convert'} = $d_header_index;
} elsif ($header eq '') {
- continue;
+ next;
} else {
push @d_ordered_untranslated_hashes, $header;
$type = undef;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/maintain/generate_code_convert_data.pl: replace incorrect continue by next. Report from Gavin.,
Patrice Dumas <=