sp_before_comma
Category: Spacing options Type: multiple (ignore add remove force) Default: remove
Add or remove space before ',', i.e. 'a,b' vs. 'a ,b'. Default: remove
int a,b; f(a,b);
raw CPP code | sp_before_comma=ignore | sp_before_comma=add | sp_before_comma=remove | sp_before_comma=force | space sp_before_comma=force |
---|---|---|---|---|---|
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); |
Take care: the default is 'remove'. See also: sp_after_comma Edited by JEAYNE
Not the best code for this option? See how to improve the .uds file used to generate these examples.