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 cae24be commit 5a15b6aCopy full SHA for 5a15b6a
src/ex_getln.c
@@ -7042,7 +7042,13 @@ open_cmdwin(void)
7042
else
7043
ccline.cmdbuff = vim_strsave(ml_get_curline());
7044
if (ccline.cmdbuff == NULL)
7045
+ {
7046
+ ccline.cmdbuff = vim_strsave((char_u *)"");
7047
+ ccline.cmdlen = 0;
7048
+ ccline.cmdbufflen = 1;
7049
+ ccline.cmdpos = 0;
7050
cmdwin_result = Ctrl_C;
7051
+ }
7052
7053
{
7054
ccline.cmdlen = (int)STRLEN(ccline.cmdbuff);
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 706,
769
/**/
770
705,
771
0 commit comments