Mercurial > hg > xemacs-beta
comparison src/unexaix.c @ 298:70ad99077275 r21-0b47
Import from CVS: tag r21-0b47
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:39:40 +0200 |
parents | 4b85ae5eabfb |
children | 74fd4e045ea6 |
comparison
equal
deleted
inserted
replaced
297:deca3c1083ac | 298:70ad99077275 |
---|---|
556 symentry.n_value += bias; | 556 symentry.n_value += bias; |
557 lseek (new, -SYMESZ, SEEK_CUR); | 557 lseek (new, -SYMESZ, SEEK_CUR); |
558 write (new, &symentry, SYMESZ); | 558 write (new, &symentry, SYMESZ); |
559 } | 559 } |
560 | 560 |
561 for (naux = symentry.n_numaux; naux != 0; --naux) | 561 for (naux = symentry.n_numaux; naux-- != 0; ) |
562 { | 562 { |
563 read (new, &auxentry, AUXESZ); | 563 read (new, &auxentry, AUXESZ); |
564 nsyms++; | 564 nsyms++; |
565 if (naux != 0 /* skip csect auxentry (last entry) */ | 565 if (naux != 0 /* skip csect auxentry (last entry) */ |
566 && (symentry.n_sclass == C_EXT || symentry.n_sclass == C_HIDEXT)) | 566 && (symentry.n_sclass == C_EXT || symentry.n_sclass == C_HIDEXT)) |