From 1eca7853fdaf8b05b17dfb2aeba00bf92212ea5a Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 13 Apr 2002 18:08:45 +0000 Subject: [PATCH] *** empty log message *** --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40346 --- src/main/beos/exports/genexp.pl | 2 +- src/main/macos/exports/gendef.pl | 2 +- src/main/macosx/exports/gendef.pl | 2 +- src/main/win32/exports/gendef.pl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/beos/exports/genexp.pl b/src/main/beos/exports/genexp.pl index cc09c433a..feeda2b24 100755 --- a/src/main/beos/exports/genexp.pl +++ b/src/main/beos/exports/genexp.pl @@ -9,7 +9,7 @@ while ( ($file = shift(@ARGV)) ) { } $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "_$1\n"; } } diff --git a/src/main/macos/exports/gendef.pl b/src/main/macos/exports/gendef.pl index 3479d69a2..6501b7534 100644 --- a/src/main/macos/exports/gendef.pl +++ b/src/main/macos/exports/gendef.pl @@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) { $printed_header = 0; $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t$1\n"; } } diff --git a/src/main/macosx/exports/gendef.pl b/src/main/macosx/exports/gendef.pl index e031a72ea..27e679821 100644 --- a/src/main/macosx/exports/gendef.pl +++ b/src/main/macosx/exports/gendef.pl @@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) { $printed_header = 0; $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t_$1\n"; } } diff --git a/src/main/win32/exports/gendef.pl b/src/main/win32/exports/gendef.pl index 73896b983..8a25b4def 100755 --- a/src/main/win32/exports/gendef.pl +++ b/src/main/win32/exports/gendef.pl @@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) { $printed_header = 0; $file =~ s,.*/,,; while () { - if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { + if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t$1\n"; } }