Added check to prevent page down from looping endlessly

master
Aadhavan Srinivasan 1 year ago
parent 249cc3cb24
commit 32c4139c72

@ -124,7 +124,7 @@ void page_down_handler(Buffer* buffer) {
once, so this hardcoded statement is fine. */ 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); buffer_right(buffer);
} }

Loading…
Cancel
Save