From 315595aa7765d7d85113c044008f9c3a21134a79 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 18 Dec 2016 14:02:03 +0530 Subject: [PATCH] ... --- kitty/line-buf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kitty/line-buf.c b/kitty/line-buf.c index 7f86e95d6..93aa92bc5 100644 --- a/kitty/line-buf.c +++ b/kitty/line-buf.c @@ -310,7 +310,8 @@ insert_lines(LineBuf *self, PyObject *args) { Py_RETURN_NONE; } -void linebuf_delete_lines(LineBuf *self, index_type num, index_type y, index_type bottom) { +void +linebuf_delete_lines(LineBuf *self, index_type num, index_type y, index_type bottom) { index_type i; index_type ylimit = bottom + 1; num = MIN(bottom + 1 - y, num);