wikiheaders: Fixed double-wikify call.

This commit is contained in:
Ryan C. Gordon 2021-03-24 22:36:06 -04:00
parent 5753fd73c3
commit 45d128db00
No known key found for this signature in database
GPG Key ID: FA148B892AB48044
1 changed files with 1 additions and 1 deletions

View File

@ -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.