Changeset 14178
- Timestamp:
- Jul 12, 2007, 2:27:08 PM (19 years ago)
- Location:
- trunk/Ohana/src/opihi/cmd.basic
- Files:
-
- 2 edited
-
run_for.c (modified) (1 diff)
-
run_while.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/cmd.basic/run_for.c
r11084 r14178 91 91 if (loop_break) break; 92 92 } 93 /* 'last' and 'next' should only affect one loop */ 93 94 loop_last = loop_next = FALSE; 94 /* 'last' and 'next' should only affect one loop */ 95 96 /* break should propagate up if auto_break is set */ 97 loop_break = FALSE; 95 98 if (auto_break && !status) loop_break = TRUE; 96 99 -
trunk/Ohana/src/opihi/cmd.basic/run_while.c
r10846 r14178 92 92 free (val); 93 93 } while (logic && !interrupt); 94 /* 'last' and 'next' should only affect one loop */ 94 95 loop_last = loop_next = FALSE; 95 /* 'last' and 'next' should only affect one loop */ 96 97 /* break should propagate up if auto_break is set */ 98 loop_break = FALSE; 96 99 if (auto_break && !status) loop_break = TRUE; 97 100
Note:
See TracChangeset
for help on using the changeset viewer.
