Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-04-13 00:41:48 +0400
committerJunio C Hamano <gitster@pobox.com>2013-04-13 00:41:48 +0400
commit97ff97dc055f779fd65fff57c91ceaba98e0d412 (patch)
tree3a8cbbbcf1f84056667dd668a934c01abfa01b01
parent15af30e72f6b86740d6e155d58bc823df72dd84f (diff)
parentcbfd124c22b3d42cfc40d7de2205e3d7b7b96fe7 (diff)
Merge branch 'mg/texinfo-5' into maint
* mg/texinfo-5: Documentation: Strip texinfo anchors to avoid duplicates
-rwxr-xr-xDocumentation/cat-texi.perl1
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;