autoconf-patches
[Top][All Lists]
Advanced

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

Re: AT_KEYWORDS failure: cmdline OR-combinations


From: Stepan Kasal
Subject: Re: AT_KEYWORDS failure: cmdline OR-combinations
Date: Tue, 16 Aug 2005 20:02:31 +0200
User-agent: Mutt/1.4.1i

Hello again,

one minor nit:

On Tue, Aug 16, 2005 at 07:36:07PM +0200, Ralf Wildenhues wrote:
> +  at_groups=`echo "$at_groups$as_nl$at_groups_all" |
> +    awk ['BEGIN { FS = ";" }
> +     !/ / { selected[$ 1]  = 1 }

since the field splitting is effectively switched off, $0 might
be more readable here.  Like this:

    ...
    awk ['BEGIN { FS = ";" # Effectively switch off field splitting.
         }
        !/ / { selected[$ 0]  = 1 }
    ...

Thank you again,
        Stepan




reply via email to

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