correct sort, keysort

This commit is contained in:
Mark Thom
2018-03-11 19:51:25 -06:00
parent acdb3f2c45
commit ea1414e738
3 changed files with 43 additions and 4 deletions

View File

@@ -719,3 +719,15 @@ macro_rules! keysort_call {
Line::Control(ControlInstruction::KeySortCall)
)
}
macro_rules! sort_execute {
() => (
Line::Control(ControlInstruction::SortExecute)
)
}
macro_rules! keysort_execute {
() => (
Line::Control(ControlInstruction::KeySortExecute)
)
}