parser.c

changeset 24
c3fa6c2785dd
parent 22
79fb689317ea
child 35
5a71d53d0228
equal deleted inserted replaced
23:5f8005150227 24:c3fa6c2785dd
148 } 148 }
149 149
150 150
151 static bool find_beg_sect(Tokenizer *tokz) 151 static bool find_beg_sect(Tokenizer *tokz)
152 { 152 {
153 Token tok; 153 Token tok=TOK_INIT;
154 154
155 while(tokz_get_token(tokz, &tok)){ 155 while(tokz_get_token(tokz, &tok)){
156 if(TOK_IS_OP(&tok)){ 156 if(TOK_IS_OP(&tok)){
157 if(TOK_OP_VAL(&tok)==OP_NEXTLINE) 157 if(TOK_OP_VAL(&tok)==OP_NEXTLINE)
158 continue; 158 continue;

mercurial