1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00

Fixed Typo

This commit is contained in:
Prajwal Borkar 2022-06-08 12:25:31 +05:30 committed by GitHub
parent 2be869c263
commit 23f45ea5cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20083,7 +20083,7 @@ SUB RetrieveSearchHistory (SearchHistory() as string)
IF LOF(FH) THEN
Do until eof(fh)
ln = ln + 1
if ln > ubound(SearchHistory) then redim _preserve SearhHistory(1 to ln + 10000) AS STRING 'large resize, it necessary
if ln > ubound(SearchHistory) then redim _preserve SearchHistory(1 to ln + 10000) AS STRING 'large resize, it necessary
line input #fh, SearchHistory(ln)
Loop
redim _preserve SearchHistory(1 to ln) AS STRING'resize to proper size before exit