2 * the calling chain of Voices */
| 75 | * the calling chain of Voices |
| 76 | */ |
| 77 | void VoiceBackTrack() |
| 78 | { |
| 79 | Voice *p=currentVoice; |
| 80 | while (p->prev!=NULL) |
| 81 | { |
| 82 | p=p->prev; |
| 83 | char *s=p->filename; |
| 84 | if (s==NULL) |
| 85 | PrintS("-- called from ? --\n"); |
| 86 | else |
| 87 | Print("-- called from %s:%d --\n",s, p->curr_lineno); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | /*2 |
| 92 | * init a new voice similar to the current |
no test coverage detected