svn commit: r296327 - head/bin/sh

Jilles Tjoelker jilles at FreeBSD.org
Wed Mar 2 22:52:55 UTC 2016


Author: jilles
Date: Wed Mar  2 22:52:54 2016
New Revision: 296327
URL: https://svnweb.freebsd.org/changeset/base/296327

Log:
  sh: Remove a redundant STPUTC check.

Modified:
  head/bin/sh/parser.c

Modified: head/bin/sh/parser.c
==============================================================================
--- head/bin/sh/parser.c	Wed Mar  2 21:24:46 2016	(r296326)
+++ head/bin/sh/parser.c	Wed Mar  2 22:52:54 2016	(r296327)
@@ -1671,7 +1671,7 @@ varname:
 					c = pgetc_linecont();
 				} while (is_digit(c));
 			} else {
-				STPUTC(c, out);
+				USTPUTC(c, out);
 				c = pgetc_linecont();
 			}
 		} else if (is_special(c)) {


More information about the svn-src-head mailing list