remove VNs variable from loader.pl

This commit is contained in:
Mark Thom
2021-02-17 13:31:58 -07:00
parent f9b98f97b6
commit 7670b81633
2 changed files with 28 additions and 28 deletions

View File

@@ -597,10 +597,10 @@ impl SystemClauseType {
("$add_discontiguous_predicate", 4) => {
Some(SystemClauseType::REPL(REPLCodePtr::AddDiscontiguousPredicate))
}
("$add_goal_expansion_clause", 4) => {
("$add_goal_expansion_clause", 3) => {
Some(SystemClauseType::REPL(REPLCodePtr::AddGoalExpansionClause))
}
("$add_term_expansion_clause", 3) => {
("$add_term_expansion_clause", 2) => {
Some(SystemClauseType::REPL(REPLCodePtr::AddTermExpansionClause))
}
("$atom_chars", 2) => Some(SystemClauseType::AtomChars),