diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-09-14 12:27:06 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-09-14 12:27:06 +0300 |
commit | 5117dd79ab0271ae5e1bb775876e9e1b80fd2f4a (patch) | |
tree | 8f4c16e9055193f2965482f65e46c61259646d4a /awkgram.c | |
parent | 8eb919e188c5a903a7d0194e42a97698b649d9ac (diff) | |
download | egawk-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) { |