diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-06 22:25:43 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-08-06 22:25:43 +0300 |
commit | 09dca22666681470a207083f339083a1a4a8c973 (patch) | |
tree | daabf56f62befcb127d6791047cec47baa154f49 /awkgram.c | |
parent | 4425e6c5b88ecc03371b68926ebf89ebe03839ba (diff) | |
parent | 6b9d87b595278e606096018ea16615033c5571fe (diff) | |
download | egawk-09dca22666681470a207083f339083a1a4a8c973.tar.gz egawk-09dca22666681470a207083f339083a1a4a8c973.tar.bz2 egawk-09dca22666681470a207083f339083a1a4a8c973.zip |
Merge branch 'master' into comment
Diffstat (limited to 'awkgram.c')
-rw-r--r-- | awkgram.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4296,7 +4296,7 @@ getfname(NODE *(*fptr)(int)) j = sizeof(tokentab) / sizeof(tokentab[0]); /* linear search, no other way to do it */ for (i = 0; i < j; i++) - if (tokentab[i].ptr == fptr) + if (tokentab[i].ptr == fptr || tokentab[i].ptr2 == fptr) return tokentab[i].operator; return NULL; |