mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.0.0629: checking for ambigous width is not working
Problem: Checking for ambigous width is not working. (Hirohito Higashi) Solution: Reset "starting" earlier.
This commit is contained in:
@@ -792,6 +792,9 @@ vim_main2(void)
|
|||||||
if (params.n_commands > 0)
|
if (params.n_commands > 0)
|
||||||
exe_commands(¶ms);
|
exe_commands(¶ms);
|
||||||
|
|
||||||
|
/* Must come before the may_req_ calls. */
|
||||||
|
starting = 0;
|
||||||
|
|
||||||
#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
|
#if defined(FEAT_TERMRESPONSE) && defined(FEAT_MBYTE)
|
||||||
/* Must be done before redrawing, puts a few characters on the screen. */
|
/* Must be done before redrawing, puts a few characters on the screen. */
|
||||||
may_req_ambiguous_char_width();
|
may_req_ambiguous_char_width();
|
||||||
@@ -800,7 +803,6 @@ vim_main2(void)
|
|||||||
RedrawingDisabled = 0;
|
RedrawingDisabled = 0;
|
||||||
redraw_all_later(NOT_VALID);
|
redraw_all_later(NOT_VALID);
|
||||||
no_wait_return = FALSE;
|
no_wait_return = FALSE;
|
||||||
starting = 0;
|
|
||||||
|
|
||||||
/* 'autochdir' has been postponed */
|
/* 'autochdir' has been postponed */
|
||||||
DO_AUTOCHDIR
|
DO_AUTOCHDIR
|
||||||
|
@@ -764,6 +764,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
629,
|
||||||
/**/
|
/**/
|
||||||
628,
|
628,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user