diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-03-29 10:07:22 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-03-29 10:07:22 +0300 |
commit | 559ea397d1737042898ff2f3c7c988704baaae8a (patch) | |
tree | 71f033b656e573a562e21ee40b9a9ecc4cb0d72b /extension | |
parent | 17b9ce3cc3cfaff4f331e4829efb1f559e7d850c (diff) | |
parent | 728ac1e89ceeea5e646e4e6168a2dc4be0177ff2 (diff) | |
download | egawk-559ea397d1737042898ff2f3c7c988704baaae8a.tar.gz egawk-559ea397d1737042898ff2f3c7c988704baaae8a.tar.bz2 egawk-559ea397d1737042898ff2f3c7c988704baaae8a.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'extension')
-rw-r--r-- | extension/ChangeLog | 4 | ||||
-rw-r--r-- | extension/testext.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/extension/ChangeLog b/extension/ChangeLog index 1a018897..fef32337 100644 --- a/extension/ChangeLog +++ b/extension/ChangeLog @@ -1,3 +1,7 @@ +2021-03-29 Arnold D. Robbins <arnold@skeeve.com> + + * testext.c (var_test): Fix a comment. Update copyright year. + 2020-07-26 Arnold D. Robbins <arnold@skeeve.com> * intdiv.c (do_intdiv): Change quotient and remainder to diff --git a/extension/testext.c b/extension/testext.c index b911ec93..a5bef7ae 100644 --- a/extension/testext.c +++ b/extension/testext.c @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 2012, 2013, 2014, 2015, 2017, 2018 + * Copyright (C) 2012, 2013, 2014, 2015, 2017, 2018, 2021 * the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the @@ -314,7 +314,7 @@ var_test(int nargs, awk_value_t *result, struct awk_ext_func *unused) goto out; } - /* look up PROCINFO - should succeed fail */ + /* look up PROCINFO - should succeed */ if (sym_lookup("PROCINFO", AWK_ARRAY, & value)) printf("var_test: sym_lookup of PROCINFO passed - got a value!\n"); else |