Perhaps in line 2824; casei$ MACRO quoted_text:REQ
;; The case statements will be any statements between the case$ and the following case$,
;; else$, or endsw$.
;;
;; If this is a following case$, emit a jump to the exit label for this Select/Case and
;; terminate the .IF block.
;; --------------------------------
IFIDN $sw_statei$, <if>
poptexti $end_swi$ ;; Because there could have been an intervening
pushtexti $end_swi$ ;; Switch/Case we need to recover the correct
jmp $end_swi$ ;; exit label for this Switch/Case.
.ENDIF
ENDIF
;; --------------------------------
;; Start a new .IF block and update the state global.
;; *******************************************
IFNDEF __UNICODE__
.if rv(Cmpi,$test_vali$,chr$(quoted_text)) == 0 <------- H E R E
ELSE
.if rv(lstrcmpi,$test_vali$,chr$(quoted_text)) == 0
ENDIF
;; *******************************************
$sw_statei$ equ <if>
ENDM