Yes, 1024 characters (incl \0 character) for readline.
You can fix that with:
READLINE ...
IF LEN(line$) = 1023
INC line$, READLINE
ENDIF
Because, once Readline detects a \n character, it removes it and also removes a \r before the \n. So if the length=1023, the \n was not there.