DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

(indent.info.gz) -bad

Info Catalog (indent.info.gz) Blank lines (indent.info.gz) -bap
 
 -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;
 
Info Catalog (indent.info.gz) Blank lines (indent.info.gz) -bap
automatically generated byinfo2html