svn commit: r186831 - head/usr.bin/make

David E. O'Brien obrien at FreeBSD.org
Tue Jan 6 08:24:23 PST 2009


Author: obrien
Date: Tue Jan  6 16:24:22 2009
New Revision: 186831
URL: http://svn.freebsd.org/changeset/base/186831

Log:
  Note that r186713 also contained a change to VarAdd where we propagate the
  newly created 'Var' back to the caller.
  Also, back out an accidentally commented WIP comment.

Modified:
  head/usr.bin/make/var.c

Modified: head/usr.bin/make/var.c
==============================================================================
--- head/usr.bin/make/var.c	Tue Jan  6 15:18:14 2009	(r186830)
+++ head/usr.bin/make/var.c	Tue Jan  6 16:24:22 2009	(r186831)
@@ -2319,8 +2319,7 @@ match_var(const char str[], const char v
  *	None. The old string must be freed by the caller
  */
 Buffer *
-//Var_Subst(const char *var, const char *str, GNode *ctxt, Boolean undefErr)
-Var_Subst(                   const char *str, GNode *ctxt, Boolean err)
+Var_Subst(const char *str, GNode *ctxt, Boolean err)
 {
 	Boolean	errorReported;
 	Buffer *buf;		/* Buffer for forming things */


More information about the svn-src-all mailing list