Browse Source

wikiheaders.pl: Fix \sa tags that (incorrectly!) have "()" appended.

Ryan C. Gordon 3 years ago
parent
commit
7390bc0e5e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      build-scripts/wikiheaders.pl

+ 2 - 0
build-scripts/wikiheaders.pl

@@ -611,6 +611,7 @@ if ($copy_direction == 1) {  # --copy-to-headers
             my @desclines = split /\n/, $v;
             foreach (@desclines) {
                 s/\A(\:|\* )//;
+                s/\(\)\Z//;  # Convert "SDL_Func()" to "SDL_Func"
                 $str .= "\\sa $_\n";
             }
         }
@@ -764,6 +765,7 @@ if ($copy_direction == 1) {  # --copy-to-headers
                 $sections{'Version'} = wordwrap($desc) . "\n";
             } elsif ($l =~ /\A\\sa\s+(.*)\Z/) {
                 my $sa = $1;
+                $sa =~ s/\(\)\Z//;  # Convert "SDL_Func()" to "SDL_Func"
                 $sections{'Related Functions'} = '' if not defined $sections{'Related Functions'};
                 if ($wikitype eq 'mediawiki') {
                     $sections{'Related Functions'} .= ":[[$sa]]\n";