Added 'unimplemented' parser

This commit is contained in:
Dan Hirsch 2012-05-12 21:53:54 +01:00
parent 18c2d1f2ca
commit b6cb84df15
3 changed files with 32 additions and 11 deletions

View file

@ -102,6 +102,9 @@ static void unamb_sub(const parsed_token_t* tok, struct result_buf *buf) {
len = asprintf(&tmpbuf, "s%#lx", tok->uint);
append_buf(buf, tmpbuf, len);
break;
case TT_ERR:
append_buf(buf, "ERR", 3);
break;
case TT_SEQUENCE: {
GSequenceIter *it;
int at_begin = 1;