Date: Fri, 2 Dec 2016 16:32:14 +0000 (UTC) From: "Pedro F. Giffuni" <pfg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r309417 - head/usr.bin/indent Message-ID: <201612021632.uB2GWEIV008615@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pfg Date: Fri Dec 2 16:32:14 2016 New Revision: 309417 URL: https://svnweb.freebsd.org/changeset/base/309417 Log: indent(1): Remove an extra newline added in a previous commit. It doesn't math the remaining of the case statement. Modified: head/usr.bin/indent/parse.c Modified: head/usr.bin/indent/parse.c ============================================================================== --- head/usr.bin/indent/parse.c Fri Dec 2 16:29:30 2016 (r309416) +++ head/usr.bin/indent/parse.c Fri Dec 2 16:32:14 2016 (r309417) @@ -100,7 +100,6 @@ parse(int tk) /* tk: the code for the co * in case of a long "if-else-if ... else-if" sequence. */ ps.i_l_follow = ps.il[ps.tos--]; - /* the rest is the same as for dolit and forstmt */ case dolit: /* 'do' */ case forstmt: /* for (...) */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612021632.uB2GWEIV008615>