Copyright (C) 2000-2012 |
GNU Info (indent.info)-bad-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 |