diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2021-06-25 12:12:42 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2021-06-25 12:12:42 +0300 |
commit | 79767ea99028031bc8397c0246552c55d79d6389 (patch) | |
tree | ad451bf867625f2cd7fb38b7c427eda478c4356b /awklib | |
parent | 494def1df53684a18640dce92eb7c0dda9742648 (diff) | |
parent | 1d2d8398f36f166517e482ad8ee836132a8fe056 (diff) | |
download | egawk-79767ea99028031bc8397c0246552c55d79d6389.tar.gz egawk-79767ea99028031bc8397c0246552c55d79d6389.tar.bz2 egawk-79767ea99028031bc8397c0246552c55d79d6389.zip |
Merge branch 'gawk-5.1-stable'
Diffstat (limited to 'awklib')
-rw-r--r-- | awklib/eg/lib/isnumeric.awk | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/awklib/eg/lib/isnumeric.awk b/awklib/eg/lib/isnumeric.awk index c2699022..461ba91a 100644 --- a/awklib/eg/lib/isnumeric.awk +++ b/awklib/eg/lib/isnumeric.awk @@ -12,8 +12,3 @@ function isnumeric(x, f) return 0 } } - -Please note that leading or trailing white space is disregarded in deciding -whether a value is numeric or not, so if it matters to you, you may want -to add an additional check for that. - |