@@ -37,7 +37,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
37
37
token->value = estrndup(start, YYCURSOR - start);
38
38
token->len = YYCURSOR - start;
39
39
s->active_char += (YYCURSOR - start);
40
- qm = YYCURSOR;
41
40
return 0;
42
41
}
43
42
@@ -47,7 +46,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
47
46
token->value = estrndup(start, YYCURSOR - start);
48
47
token->len = YYCURSOR - start;
49
48
s->active_char += (YYCURSOR - start);
50
- qm = YYCURSOR;
51
49
return 0;
52
50
}
53
51
@@ -484,7 +482,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
484
482
token->value = estrndup(start, YYCURSOR - start - 1);
485
483
token->len = YYCURSOR - start - 1;
486
484
s->active_char += (YYCURSOR - start);
487
- qm = YYCURSOR;
488
485
return 0;
489
486
}
490
487
@@ -497,7 +494,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
497
494
token->value = estrndup(start, YYCURSOR - start - 1);
498
495
token->len = YYCURSOR - start - 1;
499
496
s->active_char += (YYCURSOR - start);
500
- qm = YYCURSOR;
501
497
return 0;
502
498
}
503
499
@@ -508,7 +504,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
508
504
token->value = estrndup(start, YYCURSOR - start - 1);
509
505
token->len = YYCURSOR - start - 1;
510
506
s->active_char += (YYCURSOR - start + 1);
511
- qm = YYCURSOR;
512
507
return 0;
513
508
}
514
509
@@ -530,7 +525,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
530
525
}
531
526
s->active_char = ch;
532
527
}
533
- qm = YYCURSOR;
534
528
return 0;
535
529
}
536
530
@@ -553,7 +547,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
553
547
}
554
548
efree(token->value);
555
549
token->len = 0;
556
- qm = YYCURSOR;
557
550
return 0;
558
551
}
559
552
@@ -581,7 +574,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
581
574
}
582
575
s->active_char = ch;
583
576
}
584
- qm = YYCURSOR;
585
577
return 0 ;
586
578
}
587
579
@@ -598,7 +590,6 @@ int xx_get_token(xx_scanner_state *s, xx_scanner_token *token) {
598
590
token->len = YYCURSOR - start;
599
591
s->active_char += (YYCURSOR - start);
600
592
}
601
- qm = YYCURSOR;
602
593
603
594
if (token->len > 3 && token->value [0 ] == ' _' ) {
604
595
0 commit comments