diff options
Diffstat (limited to 'src/nvim/ugrid.h')
-rw-r--r-- | src/nvim/ugrid.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/ugrid.h b/src/nvim/ugrid.h index 035074846e..04e027bd46 100644 --- a/src/nvim/ugrid.h +++ b/src/nvim/ugrid.h @@ -7,7 +7,7 @@ typedef struct ucell UCell; typedef struct ugrid UGrid; -#define CELLBYTES (4 * (MAX_MCO+1)) +#define CELLBYTES (sizeof(schar_T)) struct ucell { char data[CELLBYTES + 1]; @@ -17,7 +17,6 @@ struct ucell { struct ugrid { int top, bot, left, right; int row, col; - HlAttrs clear_attrs; int width, height; HlAttrs attrs; UCell **cells; |