summaryrefslogtreecommitdiff
path: root/modules/Options.pm
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2009-09-03 12:57:26 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2009-09-03 12:57:26 +0000
commit6bdcd2088ea89eab3a473ab62b81adefa6aa6f76 (patch)
treeef0f372eef27ffe5d40278b3e4173b4bde1c692b /modules/Options.pm
parente5b9c31e531eedc0523cd5cc22f6d008d9ff0da4 (diff)
downloadMPC-6bdcd2088ea89eab3a473ab62b81adefa6aa6f76.tar.gz
ChangeLogTag: Thu Sep 3 12:57:41 UTC 2009 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'modules/Options.pm')
-rw-r--r--modules/Options.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/Options.pm b/modules/Options.pm
index 006ccd91..bfc62436 100644
--- a/modules/Options.pm
+++ b/modules/Options.pm
@@ -48,7 +48,7 @@ sub printUsage {
my $olen = length($spaces) + 12;
my $len = $olen;
my $mlen = 77;
- my @keys = sort Creator::validLanguages();
+ my @keys = sort(Creator::validLanguages());
for(my $i = 0; $i <= $#keys; $i++) {
my $klen = length($keys[$i]);
$len += $klen;
@@ -189,7 +189,7 @@ sub completion_command {
"'n/-ti/(dll lib dll_exe lib_exe)/:' ";
$str .= "'n/-language/(";
- my @keys = sort Creator::validLanguages();
+ my @keys = sort(Creator::validLanguages());
for(my $i = 0; $i <= $#keys; $i++) {
$str .= $keys[$i];
$str .= " " if ($i != $#keys);