diff --git a/editor.c b/editor.c index ea4baeb..540c253 100644 --- a/editor.c +++ b/editor.c @@ -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); }