We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6185903 commit 6ed86adCopy full SHA for 6ed86ad
src/quickfix.c
@@ -4256,7 +4256,7 @@ ex_vimgrep(exarg_T *eap)
4256
goto theend;
4257
}
4258
4259
- if (s != NULL && *s == NUL)
+ if (s == NULL || *s == NUL)
4260
{
4261
/* Pattern is empty, use last search pattern. */
4262
if (last_search_pat() == NULL)
src/version.c
@@ -766,6 +766,8 @@ static char *(features[]) =
766
767
static int included_patches[] =
768
{ /* Add new patch number below this line */
769
+/**/
770
+ 1622,
771
/**/
772
1621,
773
0 commit comments