diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-04-12 13:41:48 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-12 13:41:48 -0700 |
commit | 97ff97dc055f779fd65fff57c91ceaba98e0d412 (patch) | |
tree | 3a8cbbbcf1f84056667dd668a934c01abfa01b01 /Documentation | |
parent | 15af30e72f6b86740d6e155d58bc823df72dd84f (diff) | |
parent | cbfd124c22b3d42cfc40d7de2205e3d7b7b96fe7 (diff) | |
download | git-97ff97dc055f779fd65fff57c91ceaba98e0d412.tar.gz |
Merge branch 'mg/texinfo-5' into maint
* mg/texinfo-5:
Documentation: Strip texinfo anchors to avoid duplicates
Diffstat (limited to 'Documentation')
-rwxr-xr-x | Documentation/cat-texi.perl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Documentation/cat-texi.perl b/Documentation/cat-texi.perl index 828ec62554..87437f8a95 100755 --- a/Documentation/cat-texi.perl +++ b/Documentation/cat-texi.perl @@ -12,6 +12,7 @@ while (<STDIN>) { push @menu, $1; } s/\(\@pxref{\[(URLS|REMOTES)\]}\)//; + s/\@anchor\{[^{}]*\}//g; print TMP; } close TMP; |