[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Sun, 5 May 2024 18:44:06 -0400 (EDT) |
branch: master
commit 9eed782c54eaf43a7e2bf4ccb7d2e3130b2487a5
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Mon May 6 00:41:08 2024 +0200
* doc/generate_html_doc_texi.pl: remove use re => '/a', there is no
string manipulation in the code.
---
doc/generate_html_doc_texi.pl | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/doc/generate_html_doc_texi.pl b/doc/generate_html_doc_texi.pl
index 2d55f39658..357bce8b80 100755
--- a/doc/generate_html_doc_texi.pl
+++ b/doc/generate_html_doc_texi.pl
@@ -21,8 +21,6 @@ use strict;
use warnings;
-use if $] >= 5.014, re => '/a';
-
# for file names portability
use File::Spec;
# for fileparse
@@ -35,7 +33,7 @@ BEGIN
$ENV{'TEXINFO_XS'} = 'omit';
# NOTE we do not use Texinfo::ModulePath, as we only have pure perl
# modules to find, we do not need something as complex, and we would
- # need to find Texinfo::ModulePath anyway, which require similar code.
+ # need to find Texinfo::ModulePath anyway, which requires similar code.
my ($real_command_name, $command_directory, $command_suffix)
= fileparse($0, '.pl');
my $updir = File::Spec->updir();