Fix parse_comma_list references

Francois Gouget fgouget at free.fr
Wed Oct 6 17:39:20 CDT 2004


Changelog:

  * tools/winapi/make_filter_options.pm
    tools/winapi/msvcmaker_options.pm
    tools/winapi/winapi_check_options.pm
    tools/winapi/winapi_cleanup_options.pm
    tools/winapi/winapi_extract_options.pm
    tools/winapi/winapi_fixup_options.pm
    tools/winapi/winapi_test_options.pm

    Don't import parse_comma_list() unless necessary.
    winapi_check_options.pm: Fix typo in the parse_comma_list() 
reference.


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
                          Stolen from an Internet user:
               "f u cn rd ths, u cn gt a gd jb n cmptr prgrmmng !"
-------------- next part --------------
Index: tools/winapi/make_filter_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/make_filter_options.pm,v
retrieving revision 1.3
diff -u -r1.3 make_filter_options.pm
--- tools/winapi/make_filter_options.pm	10 Mar 2002 00:24:23 -0000	1.3
+++ tools/winapi/make_filter_options.pm	6 Oct 2004 22:31:07 -0000
@@ -28,7 +28,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw($options);
 
-use options qw($options &parse_comma_list &parse_value);
+use options qw($options parse_value);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },
Index: tools/winapi/msvcmaker_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/msvcmaker_options.pm,v
retrieving revision 1.1
diff -u -r1.1 msvcmaker_options.pm
--- tools/winapi/msvcmaker_options.pm	29 Oct 2002 21:25:09 -0000	1.1
+++ tools/winapi/msvcmaker_options.pm	6 Oct 2004 22:10:01 -0000
@@ -28,7 +28,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw($options);
 
-use options qw($options &parse_comma_list);
+use options qw($options);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },
Index: tools/winapi/winapi_check_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/winapi_check_options.pm,v
retrieving revision 1.7
diff -u -r1.7 winapi_check_options.pm
--- tools/winapi/winapi_check_options.pm	28 Oct 2003 21:45:30 -0000	1.7
+++ tools/winapi/winapi_check_options.pm	6 Oct 2004 22:12:22 -0000
@@ -29,7 +29,7 @@
 @EXPORT_OK = qw($options);
 
 use config qw($current_dir $wine_dir);
-use options qw($options &parse_comma_list);
+use options qw($options parse_comma_list);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },
@@ -53,7 +53,7 @@
     "module" => {
 	default => { active => 1, filter => 0, hash => {} },
 	parent => "local",
-	parser => \&parser_comma_list,
+	parser => \&parse_comma_list,
 	description => "module filter"
     },
 
@@ -62,13 +62,13 @@
     "argument-forbidden" => {
 	default => { active => 1, filter => 0, hash => {} },
 	parent => "argument",
-	parser => \&parser_comma_list,
+	parser => \&parse_comma_list,
 	description => "argument forbidden checking"
     },
     "argument-kind" => {
 	default => { active => 1, filter => 1, hash => { double => 1 } },
 	parent => "argument",
-	parser => \&parser_comma_list,
+	parser => \&parse_comma_list,
 	description => "argument kind checking"
     },
     "calling-convention" => { default => 1, parent => "local", description => "calling convention checking" },
Index: tools/winapi/winapi_cleanup_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/winapi_cleanup_options.pm,v
retrieving revision 1.3
diff -u -r1.3 winapi_cleanup_options.pm
--- tools/winapi/winapi_cleanup_options.pm	3 Jan 2003 03:05:41 -0000	1.3
+++ tools/winapi/winapi_cleanup_options.pm	6 Oct 2004 22:12:50 -0000
@@ -28,7 +28,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw($options);
 
-use options qw($options &parse_comma_list);
+use options qw($options);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },
Index: tools/winapi/winapi_extract_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/winapi_extract_options.pm,v
retrieving revision 1.7
diff -u -r1.7 winapi_extract_options.pm
--- tools/winapi/winapi_extract_options.pm	15 Oct 2002 02:15:35 -0000	1.7
+++ tools/winapi/winapi_extract_options.pm	6 Oct 2004 22:14:18 -0000
@@ -28,7 +28,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw($options);
 
-use options qw($options &parse_comma_list);
+use options qw($options);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },
Index: tools/winapi/winapi_fixup_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/winapi_fixup_options.pm,v
retrieving revision 1.5
diff -u -r1.5 winapi_fixup_options.pm
--- tools/winapi/winapi_fixup_options.pm	1 Jun 2002 02:55:53 -0000	1.5
+++ tools/winapi/winapi_fixup_options.pm	6 Oct 2004 22:15:42 -0000
@@ -28,7 +28,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw($options);
 
-use options qw($options &parse_comma_list);
+use options qw($options);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },
Index: tools/winapi/winapi_test_options.pm
===================================================================
RCS file: /var/cvs/wine/tools/winapi/winapi_test_options.pm,v
retrieving revision 1.1
diff -u -r1.1 winapi_test_options.pm
--- tools/winapi/winapi_test_options.pm	1 Oct 2002 18:10:54 -0000	1.1
+++ tools/winapi/winapi_test_options.pm	6 Oct 2004 22:16:40 -0000
@@ -28,7 +28,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw($options);
 
-use options qw($options &parse_comma_list);
+use options qw($options);
 
 my %options_long = (
     "debug" => { default => 0, description => "debug mode" },


More information about the wine-patches mailing list