blob: 659253876b980ab36b9d040aa5f7d561f08e9eb1 [file] [log] [blame]
Bernd Kuhls4a6602f2016-03-29 17:14:15 +02001From 9720f6f7fdae210aa6d87d97324abd32e103dd16 Mon Sep 17 00:00:00 2001
2From: Willem Toorop <willem@nlnetlabs.nl>
3Date: Thu, 27 Nov 2014 16:50:33 +0100
4Subject: [PATCH] Comment out debugging remnants
5
6[Backport from upstream commit
7a0a943d504debb05ce4d62ea81c2d218a6cc8727, needed for a following patch
8fixing the build with Perl 5.10.]
9Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
10---
11 doc/doxyparse.pl | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
13
14diff --git a/doc/doxyparse.pl b/doc/doxyparse.pl
15index a09b2e8..3f7897f 100755
16--- a/doc/doxyparse.pl
17+++ b/doc/doxyparse.pl
18@@ -79,8 +79,8 @@ if (defined $options{'m'}) {
19 my @parts = split /[\t ]*\|[\t ]*/, $_;
20 $functions = shift @parts;
21 $see_also = join ', ', @parts;
22- print "{$functions}\n";
23- print "{$see_also}\n";
24+ #print "{$functions}\n";
25+ #print "{$see_also}\n";
26 my @funcs = split /[\t ]*,[\t ]*/, $functions;
27 my @also = split /[\t ]*,[\t ]*/, $see_also;
28 $manpages{$funcs[0]} = \@funcs;
29--
302.6.4
31