Skip to content

Commit 701ac80

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 52a9a47 + fc8f111 commit 701ac80

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

src/main.c

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -689,12 +689,6 @@ vim_main2(void)
689689

690690
starttermcap(); /* start termcap if not done by wait_return() */
691691
TIME_MSG("start termcap");
692-
#if defined(FEAT_TERMRESPONSE)
693-
# if defined(FEAT_MBYTE)
694-
may_req_ambiguous_char_width();
695-
# endif
696-
may_req_bg_color();
697-
#endif
698692

699693
#ifdef FEAT_MOUSE
700694
setmouse(); /* may start using the mouse */
@@ -851,6 +845,11 @@ vim_main2(void)
851845
/* Requesting the termresponse is postponed until here, so that a "-c q"
852846
* argument doesn't make it appear in the shell Vim was started from. */
853847
may_req_termresponse();
848+
849+
# if defined(FEAT_MBYTE)
850+
may_req_ambiguous_char_width();
851+
# endif
852+
may_req_bg_color();
854853
#endif
855854

856855
/* start in insert mode */

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,8 @@ static char *(features[]) =
779779

780780
static int included_patches[] =
781781
{ /* Add new patch number below this line */
782+
/**/
783+
567,
782784
/**/
783785
566,
784786
/**/

0 commit comments

Comments
 (0)