ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/genacc
(Generate patch)

Comparing deliantra/server/server/genacc (file contents):
Revision 1.1 by root, Fri Sep 8 16:51:44 2006 UTC vs.
Revision 1.2 by root, Fri Sep 8 17:15:57 2006 UTC

7for my $file (@ARGV) { 7for my $file (@ARGV) {
8 open my $fh, "<:utf8", $file 8 open my $fh, "<:utf8", $file
9 or die "$file: $!"; 9 or die "$file: $!";
10 10
11 while (<$fh>) { 11 while (<$fh>) {
12 while (/ACC_R([WO])\s*\((\S+)\)/g) { 12 while (/ACC\s*\(R([WO])\s*,\s*(\S+)\)/g) {
13 next unless $curclass eq $class; 13 next unless $curclass eq $class;
14 14
15 push @member, [$1, $2]; 15 push @member, [$1, $2];
16 } 16 }
17 while (/ACC_CLASS\s*\((\S+)\)/g) { 17 while (/ACC_CLASS\s*\((\S+)\)/g) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines