diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-13 02:27:22 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-09-13 02:27:22 +0000 |
commit | 5f22c9caf2c84e279ab61599c8f7721629c92e4f (patch) | |
tree | 58c047e2a20e61f81c18e36aea480a67bc3f59ea | |
parent | 8c81b633e69bcd2d23ee9dabaaa4bed6dfe4f03f (diff) | |
download | control-center-5f22c9caf2c84e279ab61599c8f7721629c92e4f.tar control-center-5f22c9caf2c84e279ab61599c8f7721629c92e4f.tar.gz control-center-5f22c9caf2c84e279ab61599c8f7721629c92e4f.tar.bz2 control-center-5f22c9caf2c84e279ab61599c8f7721629c92e4f.tar.xz control-center-5f22c9caf2c84e279ab61599c8f7721629c92e4f.zip |
accept tags with spaces with --start-with option
-rwxr-xr-x | control-center | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-center b/control-center index 3b12c7bd..cbc7addd 100755 --- a/control-center +++ b/control-center @@ -66,7 +66,7 @@ my $theme = $h{THEME}; $theme = $1 if "@ARGV" =~ /--theme (\w+)/; my $program; foreach (@ARGV) { - $program = $1 if /--start-with=(\w+)/; + $program = $1 if /--start-with=(.*)/; } my ($i, $geometry); |