Skip to content

Commit 1b9750d

Browse files
committed
patch 8.0.0193: accidentally removed #ifdef
Problem: Accidentally removed #ifdef. Solution: Put it back. (Masanori Misono)
1 parent 42b8d91 commit 1b9750d

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/move.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2841,8 +2841,10 @@ do_check_cursorbind(void)
28412841
restart_edit_save = restart_edit;
28422842
restart_edit = TRUE;
28432843
check_cursor();
2844+
# ifdef FEAT_SYN_HL
28442845
if (curwin->w_p_cul || curwin->w_p_cuc)
28452846
validate_cursor();
2847+
# endif
28462848
restart_edit = restart_edit_save;
28472849
# ifdef FEAT_MBYTE
28482850
/* Correct cursor for multi-byte character. */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
193,
767769
/**/
768770
192,
769771
/**/

0 commit comments

Comments
 (0)