aboutsummaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorjohn haque <j.eh@mchsi.com>2012-03-07 07:35:18 -0600
committerjohn haque <j.eh@mchsi.com>2012-03-07 07:35:18 -0600
commitb5431a4825e325c61f4043e4d25e47d7891c228c (patch)
tree506dd7e7636f292b24e6bc81a81678762b9bf3e6 /eval.c
parent473623f186c3699c8886ccdd8a2afb7f4fe7a07e (diff)
downloadegawk-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.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/eval.c b/eval.c
index c812b7b6..5757a154 100644
--- a/eval.c
+++ b/eval.c
@@ -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;