summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 93c4d6e01..ea303e295 100755
--- a/configure
+++ b/configure
@@ -402,7 +402,7 @@ while (!$continue) {
print "What is the maximum number of mode changes in one line?\n";
print "[\033[1;32m$config{MAXI_MODES}\033[0m] -> ";
chomp($var = <STDIN>);
- if ($var eq "") { $var = $onfig{MAXI_MODES}; }
+ if ($var eq "") { $var = $config{MAXI_MODES}; }
if ($var =~ /^\d+$/) {
# We don't care what the number is, set it and be on our way.
$config{MAXI_MODES} = $var;