Fix the wrong-category schema test
[glib.git] / gobject / marshal-genstrings.pl
blob93fceb46c64871163807e1903af99fca9f1c35cd
1 #!/usr/bin/perl
3 open (List, "gmarshal.list");
5 while (<List>) {
6 next unless /^[A-Z]/;
7 s/^/"g_cclosure_marshal_/; s/:/__/; s/,/_/g; s/$/",/;
8 print;