sp_after_comma
Category: Spacing options Type: multiple (ignore add remove force) Default: ignore
Add or remove space after ',', i.e. 'a,b' vs. 'a, b'.
int a,b; f(a,b);
raw CPP code | sp_after_comma=ignore sp_before_comma=ignore |
sp_after_comma=add sp_before_comma=ignore |
sp_after_comma=remove sp_before_comma=ignore |
sp_after_comma=force sp_before_comma=ignore |
space sp_after_comma=force sp_before_comma=ignore |
---|---|---|---|---|---|
int a,b,c; int a , b , c; int f(a,b,c); int f(a , b , c); printf("fmt",a,b,c); printf("fmt" , a , b); | int a,b,c; int a , b , c; int f(a,b,c); int f(a , b , c); printf("fmt",a,b,c); printf("fmt" , a , b); | int a, b, c; int a , b , c; int f(a, b, c); int f(a , b , c); printf("fmt", a, b, c); printf("fmt" , a , b); | int a,b,c; int a ,b ,c; int f(a,b,c); int f(a ,b ,c); printf("fmt",a,b,c); printf("fmt" ,a ,b); | int a, b, c; int a , b , c; int f(a, b, c); int f(a , b , c); printf("fmt", a, b, c); printf("fmt" , a , b); | inta,b,c; inta,b,c; intf(a,b,c); intf(a,b,c); printf("fmt",a,b,c); printf("fmt",a,b); |
See also: sp_before_comma Edited by JEAYNE
Not the best code for this option? See how to improve the .uds file used to generate these examples.