Skip to content

Commit a6210c2

Browse files
brammooldouglaskayama
authored andcommitted
updated for version 7.4.590
Problem: Using ctrl_x_mode as if it contains flags. Solution: Don't use AND with CTRL_X_OMNI. (Hirohito Higashi)
1 parent 78d7180 commit a6210c2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/edit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3394,7 +3394,7 @@ ins_compl_bs()
33943394
* allow the word to be deleted, we won't match everything. */
33953395
if ((int)(p - line) - (int)compl_col < 0
33963396
|| ((int)(p - line) - (int)compl_col == 0
3397-
&& (ctrl_x_mode & CTRL_X_OMNI) == 0))
3397+
&& ctrl_x_mode != CTRL_X_OMNI))
33983398
return K_BS;
33993399

34003400
/* Deleted more than what was used to find matches or didn't finish

src/version.c

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

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
590,
744746
/**/
745747
589,
746748
/**/

0 commit comments

Comments
 (0)