*tracepoint.c : bug fixed: string was created in bogus offsets. *** tracepoint.c.~1.1~ Tue Oct 3 12:55:06 2000 --- tracepoint.c.~1.1~~ Tue Oct 3 12:56:34 2000 *************** stringify_collection_list (list, string) *** 1448,1454 **** (long) (list->list[i].end - list->list[i].start)); count += strlen (end); ! end += count; } for (i = 0; i < list->next_aexpr_elt; i++) --- 1448,1454 ---- (long) (list->list[i].end - list->list[i].start)); count += strlen (end); ! end = temp_buf + count; } for (i = 0; i < list->next_aexpr_elt; i++)