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/edit.c | |
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/edit.c')
-rw-r--r-- | src/edit.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/edit.c b/src/edit.c index de97fdad0f..aa79302497 100644 --- a/src/edit.c +++ b/src/edit.c @@ -547,9 +547,7 @@ edit ( if (!p_im && did_restart_edit == 0) change_warning(i == 0 ? 0 : i + 1); -#ifdef CURSOR_SHAPE ui_cursor_shape(); /* may show different cursor shape */ -#endif do_digraph(-1); /* clear digraphs */ /* @@ -7074,9 +7072,7 @@ ins_esc ( changed_cline_bef_curs(); setmouse(); -#ifdef CURSOR_SHAPE ui_cursor_shape(); /* may show different cursor shape */ -#endif /* * When recording or for CTRL-O, need to display the new mode. @@ -7190,9 +7186,7 @@ static void ins_insert(int replaceState) State = replaceState | (State & LANGMAP); AppendCharToRedobuff(K_INS); showmode(); -#ifdef CURSOR_SHAPE ui_cursor_shape(); /* may show different cursor shape */ -#endif } /* |