aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-11-30 14:16:37 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-11-30 14:16:37 +0200
commit880d9f5b287a8d44227aed80f53395f19c2283a2 (patch)
treea7593eb5af5a2c930dc6819aa98001dc00f974a3 /main.c
parentdb20bfeba4c618f380315e18e6433fb6b8e63c26 (diff)
downloadegawk-880d9f5b287a8d44227aed80f53395f19c2283a2.tar.gz
egawk-880d9f5b287a8d44227aed80f53395f19c2283a2.tar.bz2
egawk-880d9f5b287a8d44227aed80f53395f19c2283a2.zip
Further awk.h cleanup.
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main.c b/main.c
index 5e84a3c7..6174dd93 100644
--- a/main.c
+++ b/main.c
@@ -71,8 +71,6 @@ NODE *RLENGTH_node, *RSTART_node, *RS_node, *RT_node, *SUBSEP_node;
NODE *PREC_node, *ROUNDMODE_node;
NODE *TEXTDOMAIN_node;
-NODE *_r; /* used as temporary in stack macros */
-
long NF;
long NR;
long FNR;
@@ -86,7 +84,7 @@ char *TEXTDOMAIN;
/*
* CONVFMT is a convenience pointer for the current number to string format.
* We must supply an initial value to avoid recursion problems of
- * set_CONVFMT -> fmt_index -> r_force_string: gets NULL CONVFMT
+ * set_CONVFMT -> fmt_index -> force_string: gets NULL CONVFMT
* Fun, fun, fun, fun.
*/
char *CONVFMT = "%.6g";