1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 09:20:38 +00:00

test change to IdeAddSearched

This commit is contained in:
SteveMcNeill 2022-05-18 07:10:59 -04:00
parent d0435fb629
commit bd3b673996
2 changed files with 1 additions and 3 deletions

View file

@ -1,2 +0,0 @@
wiki

View file

@ -18600,7 +18600,7 @@ FUNCTION removeDoubleSlashes$(f$)
END FUNCTION
SUB IdeAddSearched (s2$)
s$ = CRLF + s2$ + CRLF
s$ = s2$ + CHR$(10)
fh = FREEFILE
OPEN ".\internal\temp\searched.bin" FOR BINARY AS #fh: a$ = SPACE$(LOF(fh)): GET #fh, , a$
x = INSTR(UCASE$(a$), UCASE$(s$))