updated for version 7.0-115
diff --git a/src/edit.c b/src/edit.c
index 4858d02..b006085 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -2157,7 +2157,7 @@
do
{
if ( !(match->cp_flags & ORIGINAL_TEXT)
- && ins_compl_equal(match, str, len)
+ && STRNCMP(match->cp_str, str, len) == 0
&& match->cp_str[len] == NUL)
return NOTDONE;
match = match->cp_next;
@@ -4042,7 +4042,7 @@
if (got_int)
break;
/* Fill the popup menu as soon as possible. */
- if (pum_wanted() && type != -1)
+ if (type != -1)
ins_compl_check_keys(0);
if ((ctrl_x_mode != 0 && ctrl_x_mode != CTRL_X_WHOLE_LINE)
diff --git a/src/version.c b/src/version.c
index 5aaccff..e327830 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 115,
+/**/
114,
/**/
113,