Bump up the version and admonish against aspiring (ab)use.
[p5sagit/p5-mst-13.2.git] / embed.pl
index f996925..f734764 100755 (executable)
--- a/embed.pl
+++ b/embed.pl
@@ -156,7 +156,7 @@ sub write_protos {
     }
     else {
        my ($flags,$retval,$func,@args) = @_;
-       $ret .= '/* ' if $flags =~ /[mX]/;
+       $ret .= '/* ' if $flags =~ /m/;
        if ($flags =~ /s/) {
            $retval = "STATIC $retval";
            $func = "S_$func";
@@ -189,7 +189,7 @@ sub write_protos {
            $ret .= "\n#endif\n";
        }
        $ret .= ";";
-       $ret .= ' */' if $flags =~ /[mX]/;
+       $ret .= ' */' if $flags =~ /m/;
        $ret .= "\n";
     }
     $ret;