diff options
Diffstat (limited to 'src/nvim/grid.h')
-rw-r--r-- | src/nvim/grid.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/grid.h b/src/nvim/grid.h index 6591d8acc0..8658635f3a 100644 --- a/src/nvim/grid.h +++ b/src/nvim/grid.h @@ -19,16 +19,16 @@ /// /// Note: before the screen is initialized and when out of memory these can be /// NULL. -EXTERN ScreenGrid default_grid INIT(= SCREEN_GRID_INIT); +EXTERN ScreenGrid default_grid INIT( = SCREEN_GRID_INIT); #define DEFAULT_GRID_HANDLE 1 // handle for the default_grid /// While resizing the screen this flag is set. -EXTERN bool resizing_screen INIT(= 0); +EXTERN bool resizing_screen INIT( = 0); -EXTERN schar_T *linebuf_char INIT(= NULL); -EXTERN sattr_T *linebuf_attr INIT(= NULL); -EXTERN colnr_T *linebuf_vcol INIT(= NULL); +EXTERN schar_T *linebuf_char INIT( = NULL); +EXTERN sattr_T *linebuf_attr INIT( = NULL); +EXTERN colnr_T *linebuf_vcol INIT( = NULL); // Low-level functions to manipulate individual character cells on the // screen grid. |