(indent.info.gz) -bap
Info Catalog
(indent.info.gz) -bad
(indent.info.gz) Blank lines
-blank-lines-after-procedures
-----------------------------
The `-bap' option forces a blank line after every procedure body.
For example, given the input
int
foo ()
{
puts("Hi");
}
/* The procedure bar is even less interesting. */
char *
bar ()
{
puts("Hello");
}
`indent -bap' produces
int
foo ()
{
puts ("Hi");
}
/* The procedure bar is even less interesting. */
char *
bar ()
{
puts ("Hello");
}
and `indent -nbap' produces
int
foo ()
{
puts ("Hi");
}
/* The procedure bar is even less interesting. */
char *
bar ()
{
puts ("Hello");
}
No blank line will be added after the procedure `foo'.
Info Catalog
(indent.info.gz) -bad
(indent.info.gz) Blank lines
automatically generated byinfo2html