mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 04:08:42 +00:00
Doc: Fix deprecated unescaped braces in perl script
This commit should fix warning `make docs' ./sgml2html bird.sgml Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\\nameurl{ <-- HERE (.*)}{(.*)}/ at fmt_latex2e.pl line 287.
This commit is contained in:
parent
c2564d34af
commit
3d28f01453
4
doc/sbase/dist/fmt_latex2e.pl
vendored
4
doc/sbase/dist/fmt_latex2e.pl
vendored
@ -284,11 +284,11 @@ $latex2e->{postASP} = sub
|
|||||||
# for nameurl
|
# for nameurl
|
||||||
if ( /\\nameurl/ )
|
if ( /\\nameurl/ )
|
||||||
{
|
{
|
||||||
($urlid, $urlnam) = ($_ =~ /\\nameurl{(.*)}{(.*)}/);
|
($urlid, $urlnam) = ($_ =~ /\\nameurl\{(.*)\}\{(.*)\}/);
|
||||||
print $urlnum . ": " . $urlid . "\n" if ( $global->{debug} );
|
print $urlnum . ": " . $urlid . "\n" if ( $global->{debug} );
|
||||||
|
|
||||||
$urldef = latex2e_defnam($urlnum) . "url";
|
$urldef = latex2e_defnam($urlnum) . "url";
|
||||||
s/\\nameurl{.*}{.*}/{\\em $urlnam} {\\tt \\$urldef}/;
|
s/\\nameurl\{.*\}\{.*\}/{\\em $urlnam} {\\tt \\$urldef}/;
|
||||||
push @urlnames, $_;
|
push @urlnames, $_;
|
||||||
push @urldefines, "\\urldef{\\$urldef} \\url{$urlid}\n";
|
push @urldefines, "\\urldef{\\$urldef} \\url{$urlid}\n";
|
||||||
$urlnum++;
|
$urlnum++;
|
||||||
|
Loading…
Reference in New Issue
Block a user