Changeset 6250 for trunk/Ohana/src/opihi/lib.shell/evaluate_stack.c
- Timestamp:
- Jan 29, 2006, 9:59:45 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/lib.shell/evaluate_stack.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/lib.shell/evaluate_stack.c
r4689 r6250 22 22 if (*Nstack == 1) { 23 23 if (stack[0].type == 'S') { 24 S_unary (&tmp_stack, &stack[0], "=");25 move_stack (&stack[0], &tmp_stack);26 24 return (TRUE); 27 25 } 28 26 if (stack[0].type == 'V') { 27 /* need to make a copy so we set output value? */ 29 28 V_unary (&tmp_stack, &stack[0], "="); 30 29 move_stack (&stack[0], &tmp_stack); … … 32 31 } 33 32 if (stack[0].type == 'M') { 33 /* need to make a copy so we set output value? */ 34 34 M_unary (&tmp_stack, &stack[0], "="); 35 35 move_stack (&stack[0], &tmp_stack);
Note:
See TracChangeset
for help on using the changeset viewer.
