From e8bd5cea37fa75cecd6288be394c2165316bf660 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 2 Mar 2009 01:12:48 +0000 Subject: [PATCH] updated for version 7.2-129 --- src/ex_getln.c | 6 ++---- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ex_getln.c b/src/ex_getln.c index e324e7eab3..ecaeb3f529 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -6047,9 +6047,7 @@ ex_window() # endif return K_IGNORE; } - cmdwin_type = ccline.cmdfirstc; - if (cmdwin_type == NUL) - cmdwin_type = '-'; + cmdwin_type = get_cmdline_type(); /* Create the command-line buffer empty. */ (void)do_ecmd(0, NULL, NULL, NULL, ECMD_ONE, ECMD_HIDE, NULL); @@ -6073,7 +6071,7 @@ ex_window() /* Showing the prompt may have set need_wait_return, reset it. */ need_wait_return = FALSE; - histtype = hist_char2type(ccline.cmdfirstc); + histtype = hist_char2type(cmdwin_type); if (histtype == HIST_CMD || histtype == HIST_DEBUG) { if (p_wc == TAB) diff --git a/src/version.c b/src/version.c index 4331654b63..8557480eb2 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 129, /**/ 128, /**/