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 eb44a68 commit 8e5eeceCopy full SHA for 8e5eece
src/terminal.c
@@ -691,8 +691,11 @@ move_terminal_to_buffer(term_T *term)
691
VTermPos pos;
692
VTermScreenCell cell;
693
VTermScreenCell *p;
694
- VTermScreen *screen = vterm_obtain_screen(term->tl_vterm);
+ VTermScreen *screen;
695
696
+ if (term->tl_vterm == NULL)
697
+ return;
698
+ screen = vterm_obtain_screen(term->tl_vterm);
699
for (pos.row = 0; pos.row < term->tl_rows; ++pos.row)
700
{
701
len = 0;
src/version.c
@@ -769,6 +769,8 @@ static char *(features[]) =
769
770
static int included_patches[] =
771
{ /* Add new patch number below this line */
772
+/**/
773
+ 859,
774
/**/
775
858,
776
0 commit comments