GNU Info

Info Node: (indent.info)-bad

(indent.info)-bad


Next: -bap Up: Blank lines
Enter node , (file) or (file)node

-blank-lines-after-declarations
-------------------------------

   The `-bad' option forces a blank line after every block of
declarations.  The `-nbad' option does not add any such blank lines.

   For example, given the input
     char *foo;
     char *bar;
     /* This separates blocks of declarations.  */
     int baz;

`indent -bad' produces

     char *foo;
     char *bar;
     
     /* This separates blocks of declarations.  */
     int baz;

and `indent -nbad' produces

     char *foo;
     char *bar;
     /* This separates blocks of declarations.  */
     int baz;


automatically generated by info2www version 1.2.2.9