patch 7.4.758 Problem: When 'conceallevel' is 1 and quitting the command-line window with CTRL-C the first character ':' is erased. Solution: Reset 'conceallevel' in the command-line window. (Hirohito Higashi)

This commit is contained in:
Bram Moolenaar
2015-06-25 18:21:12 +02:00
committed by Douglas Drumond
parent 16168c4f24
commit b274364347
2 changed files with 6 additions and 0 deletions
+4
View File
@@ -6624,6 +6624,10 @@ ex_window()
# ifdef FEAT_AUTOCMD
/* Don't execute autocommands while deleting the window. */
block_autocmds();
# endif
# ifdef FEAT_CONCEAL
/* Avoid command-line window first character being concealed. */
curwin->w_p_cole = 0;
# endif
wp = curwin;
bp = curbuf;
+2
View File
@@ -756,6 +756,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
758,
/**/
757,
/**/