diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2017-01-22 02:41:50 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-23 10:56:21 -0800 |
commit | f7bf8feaf504767d1c147cc8cd03d7df2539ba47 (patch) | |
tree | 1fb227d4a2f75912d1eb460d435f67259060ac5e | |
parent | Almost ready for 2.11.1 (diff) | |
download | tgif-f7bf8feaf504767d1c147cc8cd03d7df2539ba47.tar.xz |
Documentation: fix warning in cat-texi.perl
Newer versions of Perl produce the warning "Unescaped left brace in
regex is deprecated, passed through in regex" when an unescaped left
brace occurs in a regex. Escape the brace to avoid this warning.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | Documentation/cat-texi.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/cat-texi.perl b/Documentation/cat-texi.perl index 87437f8a95..b1fe52e8b9 100755 --- a/Documentation/cat-texi.perl +++ b/Documentation/cat-texi.perl @@ -11,7 +11,7 @@ while (<STDIN>) { if (s/^\@top (.*)/\@node $1,,,Top/) { push @menu, $1; } - s/\(\@pxref{\[(URLS|REMOTES)\]}\)//; + s/\(\@pxref\{\[(URLS|REMOTES)\]}\)//; s/\@anchor\{[^{}]*\}//g; print TMP; } |