Fixed bad } closure; added emacs setting.

This commit is contained in:
Bradley M. Kuhn 2010-06-27 12:13:29 -04:00
parent b294b91450
commit 8d2c951936

View file

@ -71,8 +71,14 @@ if ($LENGTH == 3) {
foreach my $let2 ('a' .. 'z', '0' .. '9') {
CheckDomain("", $let1, $let2);
}
} else {
print STDERR "domain length of $LENGTH is unsupported\n";
exit 1;
}
} else {
print STDERR "domain length of $LENGTH is unsupported\n";
exit 1;
}
###############################################################################
#
# Local variables:
# compile-command: "perl -c find-short-domain.plx"
# End: