Added check to prevent page down from looping endlessly

This commit is contained in:
2023-04-27 10:03:31 -05:00
parent 249cc3cb24
commit 32c4139c72

View File

@@ -124,7 +124,7 @@ void page_down_handler(Buffer* buffer) {
once, so this hardcoded statement is fine. */
while (*(buffer->start - 1) != '\n') {
while ((*(buffer->start - 1) != '\n') && (buffer->end != (buffer->text + buffer->size))) {
buffer_right(buffer);
}