1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-26 16:18:31 +00:00
freebsd/usr.bin/indent/tests/pcs.0
Piotr Pawel Stefaniak 1d01804309 indent(1): restore working -pcs
My previous indent(1) commit accidentally broke the -pcs option (which adds
space between function name and opening parenthesis in function calls) by
copying all but one of a few conditions in an if clause. Reinstate the
condition.

Add a regression test to lower the chances of breaking it again.

Correct a comment with description of what the option does.
2018-06-01 19:56:41 +00:00

8 lines
84 B
Plaintext

/* $FreeBSD$ */
#include <stdio.h>
int main(void) {
puts("Hello");
return 0;
}