Commit 370f2207 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Don't import parse_comma_list() unless necessary.

winapi_check_options.pm: Fix typo in the parse_comma_list() reference.
parent 4f78e2ed
......@@ -28,7 +28,7 @@ require Exporter;
@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" },
......
......@@ -28,7 +28,7 @@ require Exporter;
@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" },
......
......@@ -29,7 +29,7 @@ require Exporter;
@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 @@ my %options_long = (
"module" => {
default => { active => 1, filter => 0, hash => {} },
parent => "local",
parser => \&parser_comma_list,
parser => \&parse_comma_list,
description => "module filter"
},
......@@ -62,13 +62,13 @@ my %options_long = (
"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" },
......
......@@ -28,7 +28,7 @@ require Exporter;
@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" },
......
......@@ -28,7 +28,7 @@ require Exporter;
@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" },
......
......@@ -28,7 +28,7 @@ require Exporter;
@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" },
......
......@@ -28,7 +28,7 @@ require Exporter;
@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" },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment