diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-03-21 12:15:04 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-04-12 15:56:39 -0400 |
commit | 2ec6fec20bb12538b247d7cdacd201005149531c (patch) | |
tree | 28ad71757306d3298675c71213ae21fb2835150e /src/nvim/cursor_shape.h | |
parent | 81db53edec57b05a3463cc8565e26df36d3d06f6 (diff) | |
download | rneovim-2ec6fec20bb12538b247d7cdacd201005149531c.tar.gz rneovim-2ec6fec20bb12538b247d7cdacd201005149531c.tar.bz2 rneovim-2ec6fec20bb12538b247d7cdacd201005149531c.zip |
vim-patch:8.1.2366: using old C style comments
Problem: Using old C style comments.
Solution: Use // comments where appropriate.
https://github.com/vim/vim/commit/9bf703d46a79fbffeb829246ea5ce385bddc4166
Diffstat (limited to 'src/nvim/cursor_shape.h')
-rw-r--r-- | src/nvim/cursor_shape.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/cursor_shape.h b/src/nvim/cursor_shape.h index 2c466603f0..a23fa6836d 100644 --- a/src/nvim/cursor_shape.h +++ b/src/nvim/cursor_shape.h @@ -33,11 +33,11 @@ SHAPE_HOR = 1, ///< horizontal bar cursor SHAPE_VER = 2 ///< vertical bar cursor } CursorShape; -#define MSHAPE_NUMBERED 1000 /* offset for shapes identified by number */ -#define MSHAPE_HIDE 1 /* hide mouse pointer */ +#define MSHAPE_NUMBERED 1000 // offset for shapes identified by number +#define MSHAPE_HIDE 1 // hide mouse pointer -#define SHAPE_MOUSE 1 /* used for mouse pointer shape */ -#define SHAPE_CURSOR 2 /* used for text cursor shape */ +#define SHAPE_MOUSE 1 // used for mouse pointer shape +#define SHAPE_CURSOR 2 // used for text cursor shape typedef struct cursor_entry { char *full_name; ///< mode description |