mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-10 18:48:54 +02:00
...
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user