* top.c (execute_control_command, case while_control): Allow
a while command to be interrupted. Fixes net bug.
This commit is contained in:
parent
a50cedad0e
commit
24ecc17a04
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon May 13 17:40:58 1996 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* top.c (execute_control_command, case while_control): Allow
|
||||
a while command to be interrupted.
|
||||
|
||||
Mon May 13 16:17:36 1996 Stu Grossman (grossman@critters.cygnus.com)
|
||||
|
||||
* sol-thread.c: More cleanup, add comments.
|
||||
|
|
|
@ -823,6 +823,8 @@ execute_control_command (cmd)
|
|||
/* Keep iterating so long as the expression is true. */
|
||||
while (loop == 1)
|
||||
{
|
||||
QUIT;
|
||||
|
||||
/* Evaluate the expression. */
|
||||
val = evaluate_expression (expr);
|
||||
|
||||
|
|
Loading…
Reference in a new issue