From 45d128db00aa7a85077eb8175d6284405079aac3 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 24 Mar 2021 22:36:06 -0400 Subject: [PATCH] wikiheaders: Fixed double-wikify call. --- build-scripts/wikiheaders.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/wikiheaders.pl b/build-scripts/wikiheaders.pl index a6422d409..1a2ced94a 100755 --- a/build-scripts/wikiheaders.pl +++ b/build-scripts/wikiheaders.pl @@ -682,7 +682,7 @@ if ($copy_direction == 1) { # --copy-to-headers last if $subline =~ /\A\\/; # some sort of doxygen command, assume we're past this thing. last if $subline eq ''; # empty line, this param is done. shift @doxygenlines; # dump this line from the array; we're using it. - $desc .= wikify($wikitype, " $subline"); + $desc .= " $subline"; } # We need to know the length of the longest string to make Markdown tables, so we just store these off until everything is parsed.