Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove a now-unused option.
  • Loading branch information
jnthn committed Feb 16, 2013
1 parent b1258d7 commit 0514fec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 1 addition & 6 deletions src/NQP/Actions.pm
Expand Up @@ -225,14 +225,9 @@ class NQP::Actions is HLL::Actions {
# this in the setting as Regex depends on the setting).
unless %*COMPILING<%?OPTIONS><setting> eq 'NULL' {
import_HOW_exports($SETTING);
if %*COMPILING<%?OPTIONS><old-regex-lib> {
$*W.load_module('NQPRegex', $*GLOBALish);
}
unless %*COMPILING<%?OPTIONS><no-regex-lib> {
$*W.load_module('QRegex', $*GLOBALish);
unless %*COMPILING<%?OPTIONS><old-regex-lib> {
$*W.load_module('NQPP6QRegex', $*GLOBALish);
}
$*W.load_module('NQPP6QRegex', $*GLOBALish);
}
}
}
Expand Down
1 change: 0 additions & 1 deletion src/NQP/Compiler.pm
Expand Up @@ -16,7 +16,6 @@ my @clo := $nqpcomp.commandline_options();
@clo.push('module-path=s');
@clo.push('vmlibs=s');
@clo.push('no-regex-lib');
@clo.push('old-regex-lib');
@clo.push('dynext=s');
@clo.push('stable-sc');

Expand Down

0 comments on commit 0514fec

Please sign in to comment.