| Previous | 199869 Revisions | Next |
| r18842 Sunday 4th November, 2012 at 13:55:43 UTC by Carl |
|---|
| make expression functions work (nw) |
| [src/emu/debug] | express.c |
| r18841 | r18842 | |
|---|---|---|
| 974 | 974 | // if this is a function symbol, synthesize an execute function operator |
| 975 | 975 | if (symbol->is_function()) |
| 976 | 976 | { |
| 977 | token = m_tokenlist.append(*global_alloc(parse_token(string - stringstart))); | |
| 978 | token.configure_operator(TVL_EXECUTEFUNC, 0); | |
| 977 | parse_token &newtoken = m_tokenlist.append(*global_alloc(parse_token(string - stringstart))); | |
| 978 | newtoken.configure_operator(TVL_EXECUTEFUNC, 0); | |
| 979 | 979 | } |
| 980 | 980 | return; |
| 981 | 981 | } |
| Previous | 199869 Revisions | Next |