diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-03-10 02:02:40 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-10 05:55:59 -0300 |
commit | 3cac32e49c7fae9cf5963d35f3fd3052c061b2fa (patch) | |
tree | b62282c3caa75fefd33d63d272893a0cdbc92fb0 /src/cursor_shape.h | |
parent | 1684bec63571583f14065cfb614153df125b97e8 (diff) | |
download | rneovim-3cac32e49c7fae9cf5963d35f3fd3052c061b2fa.tar.gz rneovim-3cac32e49c7fae9cf5963d35f3fd3052c061b2fa.tar.bz2 rneovim-3cac32e49c7fae9cf5963d35f3fd3052c061b2fa.zip |
Remove CURSOR_SHAPE #ifdef tests
See issue #333
Diffstat (limited to 'src/cursor_shape.h')
-rw-r--r-- | src/cursor_shape.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cursor_shape.h b/src/cursor_shape.h index 41c15d0205..51560554f1 100644 --- a/src/cursor_shape.h +++ b/src/cursor_shape.h @@ -1,7 +1,6 @@ #ifndef NEOVIM_CURSOR_SHAPE_H #define NEOVIM_CURSOR_SHAPE_H -#ifdef CURSOR_SHAPE /* * struct to store values from 'guicursor' and 'mouseshape' */ @@ -47,7 +46,6 @@ typedef struct cursor_entry { char *name; /* mode name (fixed) */ char used_for; /* SHAPE_MOUSE and/or SHAPE_CURSOR */ } cursorentry_T; -#endif /* CURSOR_SHAPE */ char_u *parse_shape_opt(int what); int get_shape_idx(int mouse); |