On Mon, Feb 26, 2001 at 06:12:50PM -0700, Jason Gunthorpe wrote:
>
> IMHO the whole tab argument really only hold water if your indenting is
> very simple, or you ignoe vertical alignment. Ie this in C:
>
> char *List[] = {"Hello",
> "Mooo",
> 0};
[tab] char *List[] =
[tab] {
[tab] [tab] "Hello",
[tab] [tab] "Mooo",
[tab] [tab] 0
[tab] };
this keeps the {}'s lined up very nicely.
-john