bug-gawk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [bug-gawk] Typo's in gawk 4.0.0 manual


From: Aharon Robbins
Subject: Re: [bug-gawk] Typo's in gawk 4.0.0 manual
Date: Sat, 24 Sep 2011 21:56:04 +0300
User-agent: Heirloom mailx 12.4 7/29/08

Hi.  Apologies for the delay in replying. Thanks for the report. Someone
else also reported this and I have just now fixed it. I will be checking
in the change shortly.

Arnold

> Date: Fri, 26 Aug 2011 22:03:46 +0200
> From: "Radoulov, Dimitre" <address@hidden>
> To: address@hidden
> Subject: [bug-gawk] Typo's in gawk 4.0.0 manual
>
> Hi,
> If I'm not missing something, this is a typo (page 215 of the pdf version):
>
> str_ind_asc
>
> should be
>
> ind_str_asc
>
> 11.2.1.2 Controlling Array Scanning Order
>
> [...]
>
> For example:
> $ gawk ?BEGIN {
>  > a[4] = 4
>  > a[3] = 3
>  > for (i in a)
>  > print i, a[i]
>  > }?
> a 4 4
> a 3 3
> $ gawk ?BEGIN {
>  > PROCINFO["sorted_in"] = "@str_ind_asc"
>  > a[4] = 4
>  > a[3] = 3
>  > for (i in a)
>  > print i, a[i]
>  > }?
> a 3 3
> a 4 4
>
> Regards
> Dimitre



reply via email to

[Prev in Thread] Current Thread [Next in Thread]