073263
To: vim_dev@googlegroups.com
073263
Subject: Patch 7.4.441
073263
Fcc: outbox
073263
From: Bram Moolenaar <Bram@moolenaar.net>
073263
Mime-Version: 1.0
073263
Content-Type: text/plain; charset=UTF-8
073263
Content-Transfer-Encoding: 8bit
073263
------------
073263
073263
Patch 7.4.441
073263
Problem:    Endless loop and other problems when 'cedit' is set to CTRL-C.
073263
Solution:   Do not call ex_window() when ex_normal_busy or got_int was set.
073263
	    (Yasuhiro Matsumoto)
073263
Files:	    src/ex_getln.c
073263
073263
073263
*** ../vim-7.4.440/src/ex_getln.c	2014-08-17 17:24:03.967017727 +0200
073263
--- src/ex_getln.c	2014-09-09 18:41:19.304551123 +0200
073263
***************
073263
*** 759,769 ****
073263
  #ifdef FEAT_CMDWIN
073263
  	if (c == cedit_key || c == K_CMDWIN)
073263
  	{
073263
! 	    /*
073263
! 	     * Open a window to edit the command line (and history).
073263
! 	     */
073263
! 	    c = ex_window();
073263
! 	    some_key_typed = TRUE;
073263
  	}
073263
  # ifdef FEAT_DIGRAPHS
073263
  	else
073263
--- 759,772 ----
073263
  #ifdef FEAT_CMDWIN
073263
  	if (c == cedit_key || c == K_CMDWIN)
073263
  	{
073263
! 	    if (ex_normal_busy == 0 && got_int == FALSE)
073263
! 	    {
073263
! 		/*
073263
! 		 * Open a window to edit the command line (and history).
073263
! 		 */
073263
! 		c = ex_window();
073263
! 		some_key_typed = TRUE;
073263
! 	    }
073263
  	}
073263
  # ifdef FEAT_DIGRAPHS
073263
  	else
073263
*** ../vim-7.4.440/src/version.c	2014-09-09 18:29:24.328549561 +0200
073263
--- src/version.c	2014-09-09 18:40:16.680550986 +0200
073263
***************
073263
*** 743,744 ****
073263
--- 743,746 ----
073263
  {   /* Add new patch number below this line */
073263
+ /**/
073263
+     441,
073263
  /**/
073263
073263
-- 
073263
hundred-and-one symptoms of being an internet addict:
073263
114. You are counting items, you go "0,1,2,3,4,5,6,7,8,9,A,B,C,D...".
073263
073263
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
073263
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
073263
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
073263
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///