aboutsummaryrefslogtreecommitdiffstats
path: root/awkgram.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-09-14 12:27:06 +0300
committerArnold D. Robbins <arnold@skeeve.com>2012-09-14 12:27:06 +0300
commit5117dd79ab0271ae5e1bb775876e9e1b80fd2f4a (patch)
tree8f4c16e9055193f2965482f65e46c61259646d4a /awkgram.c
parent8eb919e188c5a903a7d0194e42a97698b649d9ac (diff)
downloadegawk-5117dd79ab0271ae5e1bb775876e9e1b80fd2f4a.tar.gz
egawk-5117dd79ab0271ae5e1bb775876e9e1b80fd2f4a.tar.bz2
egawk-5117dd79ab0271ae5e1bb775876e9e1b80fd2f4a.zip
Add undocumented-for-now PROCINFO["identifiers"].
Diffstat (limited to 'awkgram.c')
-rw-r--r--awkgram.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/awkgram.c b/awkgram.c
index e2b42b4b..2349e9d6 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -6956,9 +6956,9 @@ variable(int location, char *name, NODETYPE type)
for (dv = deferred_variables; true; dv = dv->next) {
if (dv == NULL) {
- /*
- * This is the only case in which we may not free the string.
- */
+ /*
+ * This is the only case in which we may not free the string.
+ */
return install_symbol(name, type);
}
if (strcmp(name, dv->name) == 0) {