On 4/3/15 10:48 PM, Eduardo A. Bustamante López wrote: > -#define NEXT_VARIABLE() free (name); list = list->next; continue > +#define NEXT_VARIABLE() do { free (name); list = list->next; continue; } > while(0)
That won't work; adding the do {...} while (0) negates the continue in the code block. -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, ITS, CWRU c...@case.edu http://cnswww.cns.cwru.edu/~chet/