Karsten Hopp 750454
To: vim_dev@googlegroups.com
Karsten Hopp 750454
Subject: Patch 7.3.1235
Karsten Hopp 750454
Fcc: outbox
Karsten Hopp 750454
From: Bram Moolenaar <Bram@moolenaar.net>
Karsten Hopp 750454
Mime-Version: 1.0
Karsten Hopp 750454
Content-Type: text/plain; charset=UTF-8
Karsten Hopp 750454
Content-Transfer-Encoding: 8bit
Karsten Hopp 750454
------------
Karsten Hopp 750454
Karsten Hopp 750454
Patch 7.3.1235
Karsten Hopp 750454
Problem:    In insert mode CTRL-] is not inserted, on the command-line it is.
Karsten Hopp 750454
Solution:   Don't insert CTRL-] on the command line. (Yukihiro Nakadaira)
Karsten Hopp 750454
Files:	    src/ex_getln.c
Karsten Hopp 750454
Karsten Hopp 750454
Karsten Hopp 750454
*** ../vim-7.3.1234/src/ex_getln.c	2013-06-15 16:31:41.000000000 +0200
Karsten Hopp 750454
--- src/ex_getln.c	2013-06-23 16:12:03.000000000 +0200
Karsten Hopp 750454
***************
Karsten Hopp 750454
*** 1700,1712 ****
Karsten Hopp 750454
  	 * We come here if we have a normal character.
Karsten Hopp 750454
  	 */
Karsten Hopp 750454
  
Karsten Hopp 750454
! 	if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
Karsten Hopp 750454
  #ifdef FEAT_MBYTE
Karsten Hopp 750454
  			/* Add ABBR_OFF for characters above 0x100, this is
Karsten Hopp 750454
  			 * what check_abbr() expects. */
Karsten Hopp 750454
  			(has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
Karsten Hopp 750454
  #endif
Karsten Hopp 750454
! 									c))
Karsten Hopp 750454
  	    goto cmdline_changed;
Karsten Hopp 750454
  
Karsten Hopp 750454
  	/*
Karsten Hopp 750454
--- 1700,1712 ----
Karsten Hopp 750454
  	 * We come here if we have a normal character.
Karsten Hopp 750454
  	 */
Karsten Hopp 750454
  
Karsten Hopp 750454
! 	if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
Karsten Hopp 750454
  #ifdef FEAT_MBYTE
Karsten Hopp 750454
  			/* Add ABBR_OFF for characters above 0x100, this is
Karsten Hopp 750454
  			 * what check_abbr() expects. */
Karsten Hopp 750454
  			(has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
Karsten Hopp 750454
  #endif
Karsten Hopp 750454
! 							 c) || c == Ctrl_RSB))
Karsten Hopp 750454
  	    goto cmdline_changed;
Karsten Hopp 750454
  
Karsten Hopp 750454
  	/*
Karsten Hopp 750454
*** ../vim-7.3.1234/src/version.c	2013-06-23 16:04:04.000000000 +0200
Karsten Hopp 750454
--- src/version.c	2013-06-23 16:12:50.000000000 +0200
Karsten Hopp 750454
***************
Karsten Hopp 750454
*** 730,731 ****
Karsten Hopp 750454
--- 730,733 ----
Karsten Hopp 750454
  {   /* Add new patch number below this line */
Karsten Hopp 750454
+ /**/
Karsten Hopp 750454
+     1235,
Karsten Hopp 750454
  /**/
Karsten Hopp 750454
Karsten Hopp 750454
-- 
Karsten Hopp 750454
Error:015 - Unable to exit Windows.  Try the door.
Karsten Hopp 750454
Karsten Hopp 750454
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
Karsten Hopp 750454
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
Karsten Hopp 750454
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
Karsten Hopp 750454
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///