diff options
| author | Warner Losh <imp@FreeBSD.org> | 2019-06-02 04:23:56 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2019-06-02 04:23:56 +0000 |
| commit | 03ee4d05f1d963d60451e04ce505e4da116300db (patch) | |
| tree | 9dcabc6cffafcb6b8195148feb519d575b0bf6ac /bugs-fixed/numeric-fs.awk | |
| parent | 3a4488f93f2dc8fe9de757a418b74aa0aa4f9ed1 (diff) | |
Import latest one-true-awk from upstreamvendor/one-true-awk/4189ef5d
Import git hash 4189ef5d from https://github.com/onetrueawk/awk.git as
there's not been a release in a while.
Upstream one-true-awk woke-up! Time to catch up. This may also revert
FreeBSD changes that we'd placed in the vendor branch in anticipation
of their inclusion in upstream. That's not yet the case, and these
will be resolved in the merge.
See FIXES for a complete list of bugs fixed (starting with the Jun 7,
2018 entry).
Notes
svn path=/vendor/one-true-awk/dist/; revision=348505
svn path=/vendor/one-true-awk/4189ef5d/; revision=348506; tag=vendor/one-true-awk/4189ef5d
Diffstat (limited to 'bugs-fixed/numeric-fs.awk')
| -rw-r--r-- | bugs-fixed/numeric-fs.awk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bugs-fixed/numeric-fs.awk b/bugs-fixed/numeric-fs.awk new file mode 100644 index 000000000000..01e438d4aa28 --- /dev/null +++ b/bugs-fixed/numeric-fs.awk @@ -0,0 +1,5 @@ +BEGIN { + FS = 0; split("20202", a); print a[1]; + FS = 1; $0="31313"; print $1; + FS = 2; "echo 42424" | getline; print $1; +} |
