svn commit: r334580 - head/usr.bin/indent

Piotr Pawel Stefaniak pstef at FreeBSD.org
Sun Jun 3 18:34:37 UTC 2018


Author: pstef
Date: Sun Jun  3 18:34:36 2018
New Revision: 334580
URL: https://svnweb.freebsd.org/changeset/base/334580

Log:
  indent(1): don't add a space after a label
  
  It's not needed and it fools pr_comment().

Modified:
  head/usr.bin/indent/indent.c

Modified: head/usr.bin/indent/indent.c
==============================================================================
--- head/usr.bin/indent/indent.c	Sun Jun  3 18:32:11 2018	(r334579)
+++ head/usr.bin/indent/indent.c	Sun Jun  3 18:34:36 2018	(r334580)
@@ -724,7 +724,6 @@ check_type:
 		memcpy(e_lab, s_code, len);
 		e_lab += len;
 		*e_lab++ = ':';
-		*e_lab++ = ' ';
 		*e_lab = '\0';
 		e_code = s_code;
 	    }


More information about the svn-src-head mailing list