diff options
author | john haque <j.eh@mchsi.com> | 2012-03-07 07:35:18 -0600 |
---|---|---|
committer | john haque <j.eh@mchsi.com> | 2012-03-07 07:35:18 -0600 |
commit | b5431a4825e325c61f4043e4d25e47d7891c228c (patch) | |
tree | 506dd7e7636f292b24e6bc81a81678762b9bf3e6 /eval.c | |
parent | 473623f186c3699c8886ccdd8a2afb7f4fe7a07e (diff) | |
download | egawk-b5431a4825e325c61f4043e4d25e47d7891c228c.tar.gz egawk-b5431a4825e325c61f4043e4d25e47d7891c228c.tar.bz2 egawk-b5431a4825e325c61f4043e4d25e47d7891c228c.zip |
Bug fixes and tests for MPFR.
Diffstat (limited to 'eval.c')
-rw-r--r-- | eval.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1433,7 +1433,8 @@ free_arrayfor(NODE *r) } -/* unwind_stack --- pop items off the run-time stack; +/* + * unwind_stack --- pop items off the run-time stack; * 'n' is the # of items left in the stack. */ @@ -1623,7 +1624,8 @@ POP_CODE() } -/* Implementation of BEGINFILE and ENDFILE requires saving an execution +/* + * Implementation of BEGINFILE and ENDFILE requires saving an execution * state and the ability to return to that state. The state is * defined by the instruction triggering the BEGINFILE/ENDFILE rule, the * run-time stack, the rule and the source file. The source line is available in @@ -1745,7 +1747,6 @@ void init_interpret() { long newval; - int i = 0; if ((newval = getenv_long("GAWK_STACKSIZE")) > 0) STACK_SIZE = newval; |