<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Fix precedence problems that Perl 5.42 reports.

--- texinfo-7.2/tp/Texinfo/Convert/Converter.pm	2024-12-19 18:31:42.000000000 +0000
+++ texinfo-7.2/tp/Texinfo/Convert/Converter.pm	2025-07-04 17:46:50.083668422 +0100
@@ -386,7 +386,7 @@
 
   my $fh;
   my $encoded_output_file;
-  if (! $output_file eq '') {
+  if ($output_file ne '') {
     my $path_encoding;
     ($encoded_output_file, $path_encoding)
       = $self-&gt;encoded_output_file_name($output_file);
--- texinfo-7.2/tp/Texinfo/Convert/LaTeX.pm	2024-12-19 18:31:42.000000000 +0000
+++ texinfo-7.2/tp/Texinfo/Convert/LaTeX.pm	2025-07-04 17:47:11.780979671 +0100
@@ -1085,7 +1085,7 @@
 
   my $fh;
   my $encoded_output_file;
-  if (! $output_file eq '') {
+  if ($output_file ne '') {
     my $path_encoding;
     ($encoded_output_file, $path_encoding)
       = $self-&gt;encoded_output_file_name($output_file);
</pre></body></html>