render: last_cursor.cell must not be const

This commit is contained in:
Daniel Eklöf 2019-07-30 20:18:20 +02:00
parent efdb69f2d8
commit 3b36fb9d74
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -332,7 +332,7 @@ struct terminal {
struct {
struct coord actual; /* Absolute */
struct coord in_view; /* Offset by view */
const struct cell *cell; /* For easy access to content */
struct cell *cell; /* For easy access to content */
} last_cursor;
struct buffer *last_buf; /* Buffer we rendered to last time */