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 fefecb0 commit e26643eCopy full SHA for e26643e
2 files changed
src/channel.c
@@ -794,7 +794,7 @@ find_buffer(char_u *name)
794
buf = buflist_findname(name);
795
if (buf == NULL)
796
{
797
- buf = buflist_new(name == NULL ? (char_u *)"" : name,
+ buf = buflist_new(name == NULL || *name == NUL ? NULL : name,
798
NULL, (linenr_T)0, BLN_LISTED);
799
buf_copy_options(buf, BCO_ENTER);
800
#ifdef FEAT_QUICKFIX
src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
743
744
static int included_patches[] =
745
{ /* Add new patch number below this line */
746
+/**/
747
+ 1441,
748
/**/
749
1440,
750
0 commit comments