Home | History | Annotate | Line # | Download | only in make
for.c revision 1.88
      1  1.88    rillig /*	$NetBSD: for.c,v 1.88 2020/09/27 21:35:16 rillig Exp $	*/
      2   1.3  christos 
      3   1.1       cgd /*
      4   1.1       cgd  * Copyright (c) 1992, The Regents of the University of California.
      5   1.1       cgd  * All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.15       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32   1.1       cgd /*-
     33  1.80    rillig  * Handling of .for/.endfor loops in a makefile.
     34  1.80    rillig  *
     35  1.80    rillig  * For loops are of the form:
     36  1.80    rillig  *
     37  1.80    rillig  * .for <varname...> in <value...>
     38  1.80    rillig  * ...
     39  1.80    rillig  * .endfor
     40  1.80    rillig  *
     41  1.80    rillig  * When a .for line is parsed, all following lines are accumulated into a
     42  1.80    rillig  * buffer, up to but excluding the corresponding .endfor line.  To find the
     43  1.80    rillig  * corresponding .endfor, the number of nested .for and .endfor directives
     44  1.80    rillig  * are counted.
     45  1.80    rillig  *
     46  1.80    rillig  * During parsing, any nested .for loops are just passed through; they get
     47  1.80    rillig  * handled recursively in For_Eval when the enclosing .for loop is evaluated
     48  1.80    rillig  * in For_Run.
     49  1.80    rillig  *
     50  1.80    rillig  * When the .for loop has been parsed completely, the variable expressions
     51  1.80    rillig  * for the iteration variables are replaced with expressions of the form
     52  1.80    rillig  * ${:Uvalue}, and then this modified body is "included" as a special file.
     53   1.1       cgd  *
     54   1.1       cgd  * Interface:
     55  1.88    rillig  *	For_Eval	Evaluate the loop in the passed line.
     56  1.88    rillig  *
     57   1.1       cgd  *	For_Run		Run accumulated loop
     58   1.1       cgd  */
     59   1.1       cgd 
     60   1.1       cgd #include    "make.h"
     61  1.38       dsl #include    "strlist.h"
     62   1.1       cgd 
     63  1.83    rillig /*	"@(#)for.c	8.1 (Berkeley) 6/6/93"	*/
     64  1.88    rillig MAKE_RCSID("$NetBSD: for.c,v 1.88 2020/09/27 21:35:16 rillig Exp $");
     65  1.83    rillig 
     66  1.75    rillig typedef enum {
     67  1.75    rillig     FOR_SUB_ESCAPE_CHAR = 0x0001,
     68  1.75    rillig     FOR_SUB_ESCAPE_BRACE = 0x0002,
     69  1.75    rillig     FOR_SUB_ESCAPE_PAREN = 0x0004
     70  1.75    rillig } ForEscapes;
     71  1.42       dsl 
     72  1.63    rillig static int forLevel = 0;	/* Nesting level */
     73   1.1       cgd 
     74   1.1       cgd /*
     75   1.1       cgd  * State of a for loop.
     76   1.1       cgd  */
     77  1.86    rillig typedef struct For {
     78  1.63    rillig     Buffer buf;			/* Body of loop */
     79  1.63    rillig     strlist_t vars;		/* Iteration variables */
     80  1.63    rillig     strlist_t items;		/* Substitution items */
     81  1.63    rillig     char *parse_buf;
     82  1.69    rillig     /* Is any of the names 1 character long? If so, when the variable values
     83  1.69    rillig      * are substituted, the parser must handle $V expressions as well, not
     84  1.69    rillig      * only ${V} and $(V). */
     85  1.69    rillig     Boolean short_var;
     86  1.63    rillig     int sub_next;
     87   1.2       jtc } For;
     88   1.1       cgd 
     89  1.63    rillig static For *accumFor;		/* Loop being accumulated */
     90   1.1       cgd 
     91   1.7  christos 
     92  1.43       dsl static void
     93  1.43       dsl For_Free(For *arg)
     94  1.43       dsl {
     95  1.46       dsl     Buf_Destroy(&arg->buf, TRUE);
     96  1.43       dsl     strlist_clean(&arg->vars);
     97  1.43       dsl     strlist_clean(&arg->items);
     98  1.43       dsl     free(arg->parse_buf);
     99  1.43       dsl 
    100  1.43       dsl     free(arg);
    101  1.43       dsl }
    102  1.43       dsl 
    103  1.70    rillig /* Evaluate the for loop in the passed line. The line looks like this:
    104  1.70    rillig  *	.for <varname...> in <value...>
    105   1.1       cgd  *
    106  1.13       wiz  * Input:
    107  1.13       wiz  *	line		Line to parse
    108  1.13       wiz  *
    109   1.1       cgd  * Results:
    110  1.35       dsl  *      0: Not a .for statement, parse the line
    111  1.35       dsl  *	1: We found a for loop
    112  1.35       dsl  *     -1: A .for statement with a bad syntax error, discard.
    113   1.1       cgd  */
    114   1.1       cgd int
    115  1.73    rillig For_Eval(const char *line)
    116   1.1       cgd {
    117  1.43       dsl     For *new_for;
    118  1.72    rillig     const char *ptr;
    119  1.67    rillig     Words words;
    120  1.33       dsl 
    121  1.43       dsl     /* Skip the '.' and any following whitespace */
    122  1.79    rillig     for (ptr = line + 1; ch_isspace(*ptr); ptr++)
    123  1.32       dsl 	continue;
    124  1.43       dsl 
    125  1.32       dsl     /*
    126  1.32       dsl      * If we are not in a for loop quickly determine if the statement is
    127  1.32       dsl      * a for.
    128  1.32       dsl      */
    129  1.32       dsl     if (ptr[0] != 'f' || ptr[1] != 'o' || ptr[2] != 'r' ||
    130  1.79    rillig 	!ch_isspace(ptr[3])) {
    131  1.63    rillig 	if (ptr[0] == 'e' && strncmp(ptr + 1, "ndfor", 5) == 0) {
    132  1.32       dsl 	    Parse_Error(PARSE_FATAL, "for-less endfor");
    133  1.32       dsl 	    return -1;
    134  1.32       dsl 	}
    135  1.32       dsl 	return 0;
    136  1.32       dsl     }
    137  1.32       dsl     ptr += 3;
    138   1.1       cgd 
    139  1.32       dsl     /*
    140  1.32       dsl      * we found a for loop, and now we are going to parse it.
    141  1.32       dsl      */
    142   1.1       cgd 
    143  1.43       dsl     new_for = bmake_malloc(sizeof *new_for);
    144  1.71    rillig     Buf_Init(&new_for->buf, 0);
    145  1.71    rillig     strlist_init(&new_for->vars);
    146  1.71    rillig     strlist_init(&new_for->items);
    147  1.71    rillig     new_for->parse_buf = NULL;
    148  1.71    rillig     new_for->short_var = FALSE;
    149  1.71    rillig     new_for->sub_next = 0;
    150  1.43       dsl 
    151  1.33       dsl     /* Grab the variables. Terminate on "in". */
    152  1.72    rillig     while (TRUE) {
    153  1.72    rillig 	size_t len;
    154  1.72    rillig 
    155  1.79    rillig 	while (ch_isspace(*ptr))
    156  1.32       dsl 	    ptr++;
    157  1.33       dsl 	if (*ptr == '\0') {
    158  1.33       dsl 	    Parse_Error(PARSE_FATAL, "missing `in' in for");
    159  1.43       dsl 	    For_Free(new_for);
    160  1.33       dsl 	    return -1;
    161  1.33       dsl 	}
    162  1.72    rillig 
    163  1.79    rillig 	for (len = 1; ptr[len] && !ch_isspace(ptr[len]); len++)
    164  1.33       dsl 	    continue;
    165  1.33       dsl 	if (len == 2 && ptr[0] == 'i' && ptr[1] == 'n') {
    166  1.33       dsl 	    ptr += 2;
    167  1.33       dsl 	    break;
    168  1.33       dsl 	}
    169  1.43       dsl 	if (len == 1)
    170  1.69    rillig 	    new_for->short_var = TRUE;
    171  1.69    rillig 
    172  1.66    rillig 	strlist_add_str(&new_for->vars, bmake_strldup(ptr, len), len);
    173  1.72    rillig 	ptr += len;
    174  1.32       dsl     }
    175   1.1       cgd 
    176  1.43       dsl     if (strlist_num(&new_for->vars) == 0) {
    177  1.32       dsl 	Parse_Error(PARSE_FATAL, "no iteration variables in for");
    178  1.43       dsl 	For_Free(new_for);
    179  1.32       dsl 	return -1;
    180  1.32       dsl     }
    181   1.4  christos 
    182  1.79    rillig     while (ch_isspace(*ptr))
    183  1.32       dsl 	ptr++;
    184  1.32       dsl 
    185  1.32       dsl     /*
    186  1.70    rillig      * Make a list with the remaining words.
    187  1.70    rillig      * The values are later substituted as ${:U<value>...} so we must
    188  1.70    rillig      * backslash-escape characters that break that syntax.
    189  1.44       dsl      * Variables are fully expanded - so it is safe for escape $.
    190  1.44       dsl      * We can't do the escapes here - because we don't know whether
    191  1.70    rillig      * we will be substituting into ${...} or $(...).
    192  1.32       dsl      */
    193  1.72    rillig     {
    194  1.85    rillig 	char *items;
    195  1.85    rillig 	(void)Var_Subst(ptr, VAR_GLOBAL, VARE_WANTRES, &items);
    196  1.85    rillig 	/* TODO: handle errors */
    197  1.72    rillig 	words = Str_Words(items, FALSE);
    198  1.72    rillig 	free(items);
    199  1.72    rillig     }
    200  1.54    rillig 
    201  1.67    rillig     {
    202  1.72    rillig 	size_t n;
    203  1.65    rillig 
    204  1.67    rillig 	for (n = 0; n < words.len; n++) {
    205  1.75    rillig 	    ForEscapes escapes;
    206  1.72    rillig 	    char ch;
    207  1.72    rillig 
    208  1.67    rillig 	    ptr = words.words[n];
    209  1.72    rillig 	    if (ptr[0] == '\0')
    210  1.49       sjg 		continue;
    211  1.49       sjg 	    escapes = 0;
    212  1.49       sjg 	    while ((ch = *ptr++)) {
    213  1.63    rillig 		switch (ch) {
    214  1.49       sjg 		case ':':
    215  1.49       sjg 		case '$':
    216  1.49       sjg 		case '\\':
    217  1.49       sjg 		    escapes |= FOR_SUB_ESCAPE_CHAR;
    218  1.49       sjg 		    break;
    219  1.49       sjg 		case ')':
    220  1.49       sjg 		    escapes |= FOR_SUB_ESCAPE_PAREN;
    221  1.49       sjg 		    break;
    222  1.72    rillig 		case '}':
    223  1.49       sjg 		    escapes |= FOR_SUB_ESCAPE_BRACE;
    224  1.49       sjg 		    break;
    225  1.49       sjg 		}
    226  1.49       sjg 	    }
    227  1.49       sjg 	    /*
    228  1.49       sjg 	     * We have to dup words[n] to maintain the semantics of
    229  1.49       sjg 	     * strlist.
    230  1.49       sjg 	     */
    231  1.67    rillig 	    strlist_add_str(&new_for->items, bmake_strdup(words.words[n]),
    232  1.67    rillig 			    escapes);
    233  1.39       dsl 	}
    234  1.72    rillig     }
    235  1.72    rillig 
    236  1.72    rillig     Words_Free(words);
    237   1.1       cgd 
    238  1.72    rillig     {
    239  1.82    rillig 	size_t len, n;
    240   1.7  christos 
    241  1.49       sjg 	if ((len = strlist_num(&new_for->items)) > 0 &&
    242  1.49       sjg 	    len % (n = strlist_num(&new_for->vars))) {
    243  1.49       sjg 	    Parse_Error(PARSE_FATAL,
    244  1.65    rillig 			"Wrong number of words (%zu) in .for substitution list"
    245  1.65    rillig 			" with %zu vars", len, n);
    246  1.49       sjg 	    /*
    247  1.49       sjg 	     * Return 'success' so that the body of the .for loop is
    248  1.49       sjg 	     * accumulated.
    249  1.49       sjg 	     * Remove all items so that the loop doesn't iterate.
    250  1.49       sjg 	     */
    251  1.49       sjg 	    strlist_clean(&new_for->items);
    252  1.49       sjg 	}
    253  1.32       dsl     }
    254  1.32       dsl 
    255  1.43       dsl     accumFor = new_for;
    256  1.32       dsl     forLevel = 1;
    257  1.32       dsl     return 1;
    258  1.32       dsl }
    259   1.7  christos 
    260  1.35       dsl /*
    261  1.35       dsl  * Add another line to a .for loop.
    262  1.81    rillig  * Returns FALSE when the matching .endfor is reached.
    263  1.35       dsl  */
    264  1.81    rillig Boolean
    265  1.73    rillig For_Accum(const char *line)
    266  1.32       dsl {
    267  1.73    rillig     const char *ptr = line;
    268  1.26       dsl 
    269  1.26       dsl     if (*ptr == '.') {
    270   1.1       cgd 
    271  1.79    rillig 	for (ptr++; *ptr && ch_isspace(*ptr); ptr++)
    272   1.1       cgd 	    continue;
    273   1.1       cgd 
    274  1.79    rillig 	if (strncmp(ptr, "endfor", 6) == 0 && (ch_isspace(ptr[6]) || !ptr[6])) {
    275   1.1       cgd 	    if (DEBUG(FOR))
    276  1.23       dsl 		(void)fprintf(debug_file, "For: end for %d\n", forLevel);
    277  1.32       dsl 	    if (--forLevel <= 0)
    278  1.81    rillig 		return FALSE;
    279  1.79    rillig 	} else if (strncmp(ptr, "for", 3) == 0 && ch_isspace(ptr[3])) {
    280   1.1       cgd 	    forLevel++;
    281   1.1       cgd 	    if (DEBUG(FOR))
    282  1.23       dsl 		(void)fprintf(debug_file, "For: new loop %d\n", forLevel);
    283   1.1       cgd 	}
    284   1.1       cgd     }
    285   1.1       cgd 
    286  1.59    rillig     Buf_AddStr(&accumFor->buf, line);
    287  1.46       dsl     Buf_AddByte(&accumFor->buf, '\n');
    288  1.81    rillig     return TRUE;
    289   1.1       cgd }
    290   1.1       cgd 
    291  1.42       dsl 
    292  1.59    rillig static size_t
    293  1.45       dsl for_var_len(const char *var)
    294  1.45       dsl {
    295  1.45       dsl     char ch, var_start, var_end;
    296  1.61    rillig     int depth;
    297  1.61    rillig     size_t len;
    298  1.45       dsl 
    299  1.45       dsl     var_start = *var;
    300  1.45       dsl     if (var_start == 0)
    301  1.45       dsl 	/* just escape the $ */
    302  1.45       dsl 	return 0;
    303  1.45       dsl 
    304  1.45       dsl     if (var_start == '(')
    305  1.45       dsl 	var_end = ')';
    306  1.45       dsl     else if (var_start == '{')
    307  1.45       dsl 	var_end = '}';
    308  1.45       dsl     else
    309  1.45       dsl 	/* Single char variable */
    310  1.45       dsl 	return 1;
    311  1.45       dsl 
    312  1.61    rillig     depth = 1;
    313  1.45       dsl     for (len = 1; (ch = var[len++]) != 0;) {
    314  1.45       dsl 	if (ch == var_start)
    315  1.45       dsl 	    depth++;
    316  1.45       dsl 	else if (ch == var_end && --depth == 0)
    317  1.45       dsl 	    return len;
    318  1.45       dsl     }
    319  1.45       dsl 
    320  1.45       dsl     /* Variable end not found, escape the $ */
    321  1.45       dsl     return 0;
    322  1.45       dsl }
    323  1.45       dsl 
    324  1.42       dsl static void
    325  1.46       dsl for_substitute(Buffer *cmds, strlist_t *items, unsigned int item_no, char ech)
    326  1.42       dsl {
    327  1.74    rillig     const char *item = strlist_str(items, item_no);
    328  1.75    rillig     ForEscapes escapes = strlist_info(items, item_no);
    329  1.61    rillig     char ch;
    330  1.61    rillig 
    331  1.42       dsl     /* If there were no escapes, or the only escape is the other variable
    332  1.42       dsl      * terminator, then just substitute the full string */
    333  1.74    rillig     if (!(escapes &
    334  1.63    rillig 	  (ech == ')' ? ~FOR_SUB_ESCAPE_BRACE : ~FOR_SUB_ESCAPE_PAREN))) {
    335  1.59    rillig 	Buf_AddStr(cmds, item);
    336  1.42       dsl 	return;
    337  1.42       dsl     }
    338  1.42       dsl 
    339  1.74    rillig     /* Escape ':', '$', '\\' and 'ech' - these will be removed later by
    340  1.74    rillig      * :U processing, see ApplyModifier_Defined. */
    341  1.45       dsl     while ((ch = *item++) != 0) {
    342  1.45       dsl 	if (ch == '$') {
    343  1.59    rillig 	    size_t len = for_var_len(item);
    344  1.45       dsl 	    if (len != 0) {
    345  1.62    rillig 		Buf_AddBytes(cmds, item - 1, len + 1);
    346  1.45       dsl 		item += len;
    347  1.45       dsl 		continue;
    348  1.45       dsl 	    }
    349  1.45       dsl 	    Buf_AddByte(cmds, '\\');
    350  1.45       dsl 	} else if (ch == ':' || ch == '\\' || ch == ech)
    351  1.42       dsl 	    Buf_AddByte(cmds, '\\');
    352  1.42       dsl 	Buf_AddByte(cmds, ch);
    353  1.42       dsl     }
    354  1.42       dsl }
    355  1.42       dsl 
    356  1.43       dsl static char *
    357  1.68    rillig ForIterate(void *v_arg, size_t *ret_len)
    358   1.1       cgd {
    359  1.43       dsl     For *arg = v_arg;
    360  1.59    rillig     int i;
    361  1.42       dsl     char *var;
    362  1.77    rillig     const char *cp;
    363  1.77    rillig     const char *cmd_cp;
    364  1.77    rillig     const char *body_end;
    365  1.39       dsl     char ch;
    366  1.39       dsl     Buffer cmds;
    367  1.76    rillig     char *cmds_str;
    368  1.61    rillig     size_t cmd_len;
    369   1.7  christos 
    370  1.43       dsl     if (arg->sub_next + strlist_num(&arg->vars) > strlist_num(&arg->items)) {
    371  1.43       dsl 	/* No more iterations */
    372  1.43       dsl 	For_Free(arg);
    373  1.43       dsl 	return NULL;
    374  1.43       dsl     }
    375   1.1       cgd 
    376  1.43       dsl     free(arg->parse_buf);
    377  1.43       dsl     arg->parse_buf = NULL;
    378   1.7  christos 
    379  1.39       dsl     /*
    380  1.39       dsl      * Scan the for loop body and replace references to the loop variables
    381  1.39       dsl      * with variable references that expand to the required text.
    382  1.39       dsl      * Using variable expansions ensures that the .for loop can't generate
    383  1.39       dsl      * syntax, and that the later parsing will still see a variable.
    384  1.39       dsl      * We assume that the null variable will never be defined.
    385  1.39       dsl      *
    386  1.74    rillig      * The detection of substitutions of the loop control variable is naive.
    387  1.39       dsl      * Many of the modifiers use \ to escape $ (not $) so it is possible
    388  1.39       dsl      * to contrive a makefile where an unwanted substitution happens.
    389  1.39       dsl      */
    390  1.43       dsl 
    391  1.62    rillig     cmd_cp = Buf_GetAll(&arg->buf, &cmd_len);
    392  1.59    rillig     body_end = cmd_cp + cmd_len;
    393  1.62    rillig     Buf_Init(&cmds, cmd_len + 256);
    394  1.43       dsl     for (cp = cmd_cp; (cp = strchr(cp, '$')) != NULL;) {
    395  1.43       dsl 	char ech;
    396  1.43       dsl 	ch = *++cp;
    397  1.53  riastrad 	if ((ch == '(' && (ech = ')', 1)) || (ch == '{' && (ech = '}', 1))) {
    398  1.43       dsl 	    cp++;
    399  1.43       dsl 	    /* Check variable name against the .for loop variables */
    400  1.43       dsl 	    STRLIST_FOREACH(var, &arg->vars, i) {
    401  1.59    rillig 		size_t vlen = strlist_info(&arg->vars, i);
    402  1.59    rillig 		if (memcmp(cp, var, vlen) != 0)
    403  1.43       dsl 		    continue;
    404  1.59    rillig 		if (cp[vlen] != ':' && cp[vlen] != ech && cp[vlen] != '\\')
    405  1.39       dsl 		    continue;
    406  1.43       dsl 		/* Found a variable match. Replace with :U<value> */
    407  1.59    rillig 		Buf_AddBytesBetween(&cmds, cmd_cp, cp);
    408  1.59    rillig 		Buf_AddStr(&cmds, ":U");
    409  1.59    rillig 		cp += vlen;
    410  1.43       dsl 		cmd_cp = cp;
    411  1.46       dsl 		for_substitute(&cmds, &arg->items, arg->sub_next + i, ech);
    412  1.39       dsl 		break;
    413  1.39       dsl 	    }
    414  1.43       dsl 	    continue;
    415  1.43       dsl 	}
    416  1.43       dsl 	if (ch == 0)
    417  1.43       dsl 	    break;
    418  1.43       dsl 	/* Probably a single character name, ignore $$ and stupid ones. {*/
    419  1.43       dsl 	if (!arg->short_var || strchr("}):$", ch) != NULL) {
    420  1.43       dsl 	    cp++;
    421  1.43       dsl 	    continue;
    422  1.43       dsl 	}
    423  1.43       dsl 	STRLIST_FOREACH(var, &arg->vars, i) {
    424  1.43       dsl 	    if (var[0] != ch || var[1] != 0)
    425  1.43       dsl 		continue;
    426  1.43       dsl 	    /* Found a variable match. Replace with ${:U<value>} */
    427  1.59    rillig 	    Buf_AddBytesBetween(&cmds, cmd_cp, cp);
    428  1.59    rillig 	    Buf_AddStr(&cmds, "{:U");
    429  1.43       dsl 	    cmd_cp = ++cp;
    430  1.84    rillig 	    for_substitute(&cmds, &arg->items, arg->sub_next + i, '}');
    431  1.59    rillig 	    Buf_AddByte(&cmds, '}');
    432  1.43       dsl 	    break;
    433  1.39       dsl 	}
    434  1.43       dsl     }
    435  1.59    rillig     Buf_AddBytesBetween(&cmds, cmd_cp, body_end);
    436  1.43       dsl 
    437  1.87    rillig     *ret_len = Buf_Len(&cmds);
    438  1.76    rillig     cmds_str = Buf_Destroy(&cmds, FALSE);
    439  1.43       dsl     if (DEBUG(FOR))
    440  1.76    rillig 	(void)fprintf(debug_file, "For: loop body:\n%s", cmds_str);
    441  1.39       dsl 
    442  1.43       dsl     arg->sub_next += strlist_num(&arg->vars);
    443  1.43       dsl 
    444  1.76    rillig     arg->parse_buf = cmds_str;
    445  1.76    rillig     return cmds_str;
    446  1.43       dsl }
    447   1.7  christos 
    448  1.60    rillig /* Run the for loop, imitating the actions of an include file. */
    449  1.43       dsl void
    450  1.43       dsl For_Run(int lineno)
    451  1.54    rillig {
    452  1.43       dsl     For *arg;
    453  1.54    rillig 
    454  1.43       dsl     arg = accumFor;
    455  1.43       dsl     accumFor = NULL;
    456   1.1       cgd 
    457  1.43       dsl     if (strlist_num(&arg->items) == 0) {
    458  1.58    rillig 	/* Nothing to expand - possibly due to an earlier syntax error. */
    459  1.58    rillig 	For_Free(arg);
    460  1.58    rillig 	return;
    461  1.43       dsl     }
    462  1.54    rillig 
    463  1.68    rillig     Parse_SetInput(NULL, lineno, -1, ForIterate, arg);
    464   1.1       cgd }
    465