# HG changeset patch # User Sam Lantinga # Date 1018721325 0 # Node ID 05b97424225fc2114d820c1ae41dd49efa0d7f38 # Parent 7a69392b8599c5b884fa3e0b6908f4a7936c29cf *** empty log message *** diff -r 7a69392b8599 -r 05b97424225f src/main/beos/exports/genexp.pl --- a/src/main/beos/exports/genexp.pl Sat Apr 13 15:43:15 2002 +0000 +++ b/src/main/beos/exports/genexp.pl Sat Apr 13 18:08:45 2002 +0000 @@ -9,7 +9,7 @@ } $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "_$1\n"; } } diff -r 7a69392b8599 -r 05b97424225f src/main/macos/exports/gendef.pl --- a/src/main/macos/exports/gendef.pl Sat Apr 13 15:43:15 2002 +0000 +++ b/src/main/macos/exports/gendef.pl Sat Apr 13 18:08:45 2002 +0000 @@ -10,7 +10,7 @@ $printed_header = 0; $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t$1\n"; } } diff -r 7a69392b8599 -r 05b97424225f src/main/macosx/exports/gendef.pl --- a/src/main/macosx/exports/gendef.pl Sat Apr 13 15:43:15 2002 +0000 +++ b/src/main/macosx/exports/gendef.pl Sat Apr 13 18:08:45 2002 +0000 @@ -10,7 +10,7 @@ $printed_header = 0; $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t_$1\n"; } } diff -r 7a69392b8599 -r 05b97424225f src/main/win32/exports/gendef.pl --- a/src/main/win32/exports/gendef.pl Sat Apr 13 15:43:15 2002 +0000 +++ b/src/main/win32/exports/gendef.pl Sat Apr 13 18:08:45 2002 +0000 @@ -10,7 +10,7 @@ $printed_header = 0; $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t$1\n"; } }