diff options
| author | Vlad Vissoultchev <wqweto@gmail.com> | 2016-03-14 18:26:41 +0200 |
|---|---|---|
| committer | Vlad Vissoultchev <wqweto@gmail.com> | 2016-03-14 18:26:41 +0200 |
| commit | 17395ea5070bb05681f93ce7a8019c8c863a607b (patch) | |
| tree | 0c63fa516c9706bef2187f76b653dd98b98af9ac | |
| parent | fa2472c17246206ce6947475782de17245eceeea (diff) | |
| download | tinycc-17395ea5070bb05681f93ce7a8019c8c863a607b.tar.gz tinycc-17395ea5070bb05681f93ce7a8019c8c863a607b.tar.bz2 | |
tccpp.c: Fix failing `PPTest 03` by reverting rogue modification in `macro_arg_subst`
| -rw-r--r-- | tccpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2794,7 +2794,7 @@ static int *macro_arg_subst(Sym **nested_list, const int *macro_str, Sym *args) && 0 == check_space(t, &spc)) { const char *s = get_tok_str(t, &cval); while (*s) { - if (/*t == TOK_PPSTR &&*/ *s != '\'') + if (t == TOK_PPSTR && *s != '\'') add_char(&cstr, *s); else cstr_ccat(&cstr, *s); |
