comparison src/symbol.c @ 63:d85ba47b1e8f

Moved symbol registration so symbols that are in skipped code do not get registered and so EQU/SET can do their own registration
author lost
date Mon, 05 Jan 2009 01:17:23 +0000
parents b1d81800bc91
children aaddd47219b4
comparison
equal deleted inserted replaced
62:da1337724ecd 63:d85ba47b1e8f
149 if (se -> context < 0) 149 if (se -> context < 0)
150 fputc('G', lf); 150 fputc('G', lf);
151 else 151 else
152 fputc('L', lf); 152 fputc('L', lf);
153 153
154 if (se -> flags & SYMBOL_SET)
155 fputc('S', lf);
156 else
157 fputc(' ', lf);
158
154 fprintf(lf, " %s", se -> sym); 159 fprintf(lf, " %s", se -> sym);
155 160
156 if (se -> context >= 0) 161 if (se -> context >= 0)
157 fprintf(lf, " (%d)", se -> context); 162 fprintf(lf, " (%d)", se -> context);
158 163