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)) {
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to