Index: indent.html =================================================================== --- indent.html (revision 14244) +++ indent.html (revision 14245) @@ -13,6 +13,18 @@ to svn. The style of existing code lines should not be changed, not even the "sorrunding" lines to a largish patch, especially not in the same patch/commit with actual code changes. +

+We do not put space between the pointer-asterisk and name; indent(1) +unfortunately does this in function delcaration: + +wrong + +
right
int foo(char *bar); + int foo(char * bar); +
+

+We have a patch against indent 2.2.11 to +fix this.