Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Jun 2019 05:25:22 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r348527 - head/contrib/one-true-awk
Message-ID:  <201906030525.x535PMMv054966@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Mon Jun  3 05:25:22 2019
New Revision: 348527
URL: https://svnweb.freebsd.org/changeset/base/348527

Log:
  Another partial revert of r301289.
  
  In this case, a change was made in one-true-awk from *FS to
  getsval(fsloc) in a line just after one of the lines that had the 0 ->
  NULL change. It works both ways as far as I can tell.  It looks like a
  bug fix, but I've not tried to track down which ancient version of
  one-true-awk it was in (github starts too late for tracking this
  down). Before and after the changes the regression suite is passes
  100% relative to the un-modified one-true-awk.

Modified:
  head/contrib/one-true-awk/run.c

Modified: head/contrib/one-true-awk/run.c
==============================================================================
--- head/contrib/one-true-awk/run.c	Mon Jun  3 05:25:16 2019	(r348526)
+++ head/contrib/one-true-awk/run.c	Mon Jun  3 05:25:22 2019	(r348527)
@@ -1267,7 +1267,7 @@ Cell *split(Node **a, int nnn)	/* split(a[0], a[1], a[
 	origs = s = strdup(getsval(y));
 	arg3type = ptoi(a[3]);
 	if (a[2] == NULL)		/* fs string */
-		fs = *FS;
+		fs = getsval(fsloc);
 	else if (arg3type == STRING) {	/* split(str,arr,"string") */
 		x = execute(a[2]);
 		origfs = fs = strdup(getsval(x));



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906030525.x535PMMv054966>