1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-01 06:24:58 +03:00

Fix for Mantis bug 2004

This commit is contained in:
Graham Nelson 2022-04-10 09:22:27 +01:00
parent 3172f5a4bc
commit efe630b58e
2 changed files with 4 additions and 4 deletions

View file

@ -138,7 +138,7 @@ simple routine, but some are run by calling the three subroutines independently.
MStack_DestroyAVVars(A);
return rv;
}
return RunTimeProblem(RTP_CANTABANDON);
return RunTimeProblem(RTP_CANTEND);
];
@h Abandon.
@ -153,5 +153,5 @@ activity must be being run by calling the three stages individually, and
MStack_DestroyAVVars(A);
return;
}
return RunTimeProblem(RTP_CANTEND);
return RunTimeProblem(RTP_CANTABANDON);
];

View file

@ -152,7 +152,7 @@ yet the current action.
MStack_DestroyAVVars(A);
return rv;
}
return RunTimeProblem(RTP_CANTABANDON);
return RunTimeProblem(RTP_CANTEND);
];
@h Abandon.
@ -167,5 +167,5 @@ activity must be being run by calling the three stages individually, and
MStack_DestroyAVVars(A);
return;
}
return RunTimeProblem(RTP_CANTEND);
return RunTimeProblem(RTP_CANTABANDON);
];