Skip to content

Commit 50d4315

Browse files
committed
patch 8.0.1337: typo in #ifdef
Problem: Typo in #ifdef. Solution: Fix the #if line.
1 parent 6315a9a commit 50d4315

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/mbyte.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6487,7 +6487,7 @@ im_get_status()
64876487
void
64886488
im_set_active(int active)
64896489
{
6490-
# ifdef(USE_IM_CONTROL) && defined(FEAT_EVAL)
6490+
# if defined(USE_IM_CONTROL) && defined(FEAT_EVAL)
64916491
if (p_imaf[0] != NUL)
64926492
call_imactivatefunc(p_imdisable ? FALSE : active);
64936493
# endif

src/version.c

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

772772
static int included_patches[] =
773773
{ /* Add new patch number below this line */
774+
/**/
775+
1337,
774776
/**/
775777
1336,
776778
/**/

0 commit comments

Comments
 (0)