Mercurial > hg > xemacs-beta
comparison src/free-hook.c @ 446:1ccc32a20af4 r21-2-38
Import from CVS: tag r21-2-38
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:37:21 +0200 |
parents | abe6d1db359e |
children | e38acbeb1cae |
comparison
equal
deleted
inserted
replaced
445:34f3776fcf0e | 446:1ccc32a20af4 |
---|---|
489 if (value == gcprolist->next) goto OK; | 489 if (value == gcprolist->next) goto OK; |
490 if (! gcprolist->next) abort (); | 490 if (! gcprolist->next) abort (); |
491 if (value == gcprolist->next->next) goto OK; | 491 if (value == gcprolist->next->next) goto OK; |
492 if (! gcprolist->next->next) abort (); | 492 if (! gcprolist->next->next) abort (); |
493 if (value == gcprolist->next->next->next) goto OK; | 493 if (value == gcprolist->next->next->next) goto OK; |
494 if (! gcprolist->next->next->next) abort (); | |
495 if (value == gcprolist->next->next->next->next) goto OK; | |
494 abort (); | 496 abort (); |
495 OK:; | 497 OK:; |
496 } | 498 } |
497 gcprohist[gcprohistptr].file = file; | 499 gcprohist[gcprohistptr].file = file; |
498 gcprohist[gcprohistptr].line = line; | 500 gcprohist[gcprohistptr].line = line; |
585 j, gcprohist[j].file, gcprohist[j].line, | 587 j, gcprohist[j].file, gcprohist[j].line, |
586 (gcprohist[j].type == gcpro1_type ? "GCPRO1" : | 588 (gcprohist[j].type == gcpro1_type ? "GCPRO1" : |
587 gcprohist[j].type == gcpro2_type ? "GCPRO2" : | 589 gcprohist[j].type == gcpro2_type ? "GCPRO2" : |
588 gcprohist[j].type == gcpro3_type ? "GCPRO3" : | 590 gcprohist[j].type == gcpro3_type ? "GCPRO3" : |
589 gcprohist[j].type == gcpro4_type ? "GCPRO4" : | 591 gcprohist[j].type == gcpro4_type ? "GCPRO4" : |
592 gcprohist[j].type == gcpro5_type ? "GCPRO5" : | |
590 gcprohist[j].type == ungcpro_type ? "UNGCPRO" : "???"), | 593 gcprohist[j].type == ungcpro_type ? "UNGCPRO" : "???"), |
591 gcprohist[j].value); | 594 gcprohist[j].value); |
592 } | 595 } |
593 fflush (stdout); | 596 fflush (stdout); |
594 } | 597 } |