diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-09-20 21:23:20 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-09-20 21:23:20 +0300 |
commit | 2679ddd1324765b37ef69933b8ad4cf3f80c2795 (patch) | |
tree | f8fbc054b0c7b4c1d9672259f8531cc595504ce1 /doc/gawk.texi | |
parent | 41232b08f9db67a0a6d3e86324d776496c212560 (diff) | |
parent | 9cfede253d3d5f6907a6a1c0263b08442267cd55 (diff) | |
download | egawk-2679ddd1324765b37ef69933b8ad4cf3f80c2795.tar.gz egawk-2679ddd1324765b37ef69933b8ad4cf3f80c2795.tar.bz2 egawk-2679ddd1324765b37ef69933b8ad4cf3f80c2795.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/gawk.texi b/doc/gawk.texi index 90f6dcfc..c8ca42f5 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -19059,8 +19059,8 @@ The week number of the year (with the first Monday as the first day of week one) as a decimal number (01--53). The method for determining the week number is as specified by ISO 8601. (To wit: if the week containing January 1 has four or more days in the -new year, then it is week one; otherwise it is week 53 of the previous year -and the next week is week one.) +new year, then it is week one; otherwise it is the last week +[52 or 53] of the previous year and the next week is week one.) @item %w The weekday as a decimal number (0--6). Sunday is day zero. @@ -23148,7 +23148,7 @@ function _gr_init( oldfs, oldrs, olddol0, grcat, n = split($4, a, "[ \t]*,[ \t]*") for (i = 1; i <= n; i++) if (a[i] in _gr_groupsbyuser) - _gr_groupsbyuser[a[i]] = gr_groupsbyuser[a[i]] " " $1 + _gr_groupsbyuser[a[i]] = _gr_groupsbyuser[a[i]] " " $1 else _gr_groupsbyuser[a[i]] = $1 |