Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make: inline VarUniq into ApplyModifier_Unique



details:   https://anonhg.NetBSD.org/src/rev/e8a3118b3558
branches:  trunk
changeset: 1021447:e8a3118b3558
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sun May 30 20:31:03 2021 +0000

description:
make: inline VarUniq into ApplyModifier_Unique

No functional change.

diffstat:

 usr.bin/make/var.c |  42 ++++++++++++++++++++----------------------
 1 files changed, 20 insertions(+), 22 deletions(-)

diffs (77 lines):

diff -r aa32fa9ec37a -r e8a3118b3558 usr.bin/make/var.c
--- a/usr.bin/make/var.c        Sun May 30 20:26:41 2021 +0000
+++ b/usr.bin/make/var.c        Sun May 30 20:31:03 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: var.c,v 1.930 2021/04/19 22:22:27 rillig Exp $ */
+/*     $NetBSD: var.c,v 1.931 2021/05/30 20:31:03 rillig Exp $ */
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -140,7 +140,7 @@
 #include "metachar.h"
 
 /*     "@(#)var.c      8.3 (Berkeley) 3/19/94" */
-MAKE_RCSID("$NetBSD: var.c,v 1.930 2021/04/19 22:22:27 rillig Exp $");
+MAKE_RCSID("$NetBSD: var.c,v 1.931 2021/05/30 20:31:03 rillig Exp $");
 
 /*
  * Variables are defined using one of the VAR=value assignments.  Their
@@ -1824,24 +1824,6 @@
        return Buf_DoneData(&buf);
 }
 
-/* Remove adjacent duplicate words. */
-static char *
-VarUniq(const char *str)
-{
-       Words words = Str_Words(str, false);
-
-       if (words.len > 1) {
-               size_t i, j;
-               for (j = 0, i = 1; i < words.len; i++)
-                       if (strcmp(words.words[i], words.words[j]) != 0 &&
-                           (++j != i))
-                               words.words[j] = words.words[i];
-               words.len = j + 1;
-       }
-
-       return Words_JoinFree(words);
-}
-
 
 /*
  * Quote shell meta-characters and space characters in the string.
@@ -3561,15 +3543,31 @@
        return AMR_OK;
 }
 
+/* Remove adjacent duplicate words. */
 static ApplyModifierResult
 ApplyModifier_Unique(const char **pp, ModChain *ch)
 {
+       Words words;
+
        if (!IsDelimiter((*pp)[1], ch))
                return AMR_UNKNOWN;
        (*pp)++;
 
-       if (ModChain_ShouldEval(ch))
-               Expr_SetValueOwn(ch->expr, VarUniq(ch->expr->value.str));
+       if (!ModChain_ShouldEval(ch))
+               return AMR_OK;
+
+       words = Str_Words(ch->expr->value.str, false);
+
+       if (words.len > 1) {
+               size_t i, j;
+               for (j = 0, i = 1; i < words.len; i++)
+                       if (strcmp(words.words[i], words.words[j]) != 0 &&
+                           (++j != i))
+                               words.words[j] = words.words[i];
+               words.len = j + 1;
+       }
+
+       Expr_SetValueOwn(ch->expr, Words_JoinFree(words));
 
        return AMR_OK;
 }



Home | Main Index | Thread Index | Old Index