[vim/f19] - patchlevel 863

Karsten Hopp karsten at fedoraproject.org
Mon Apr 15 15:06:20 UTC 2013


commit 9259b4aafd82b8d4195838fef3e3545221b8cf59
Author: Karsten Hopp <karsten at redhat.com>
Date:   Mon Apr 15 17:02:23 2013 +0200

    - patchlevel 863

 7.3.863 |   91 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 91 insertions(+), 0 deletions(-)
---
diff --git a/7.3.863 b/7.3.863
new file mode 100644
index 0000000..64bd9ba
--- /dev/null
+++ b/7.3.863
@@ -0,0 +1,91 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.863
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.863 (after 7.3.859)
+Problem:    Problem with 'ambiwidth' detection for ANSI terminal.
+Solution:   Work around not recognizing a term response. (Hayaki Saito)
+Files:	    src/term.c
+
+
+*** ../vim-7.3.862/src/term.c	2013-03-13 19:29:24.000000000 +0100
+--- src/term.c	2013-03-16 14:29:00.000000000 +0100
+***************
+*** 3926,3933 ****
+       * Check at several positions in typebuf.tb_buf[], to catch something like
+       * "x<Up>" that can be mapped. Stop at max_offset, because characters
+       * after that cannot be used for mapping, and with @r commands
+!      * typebuf.tb_buf[]
+!      * can become very long.
+       * This is used often, KEEP IT FAST!
+       */
+      for (offset = 0; offset < max_offset; ++offset)
+--- 3926,3932 ----
+       * Check at several positions in typebuf.tb_buf[], to catch something like
+       * "x<Up>" that can be mapped. Stop at max_offset, because characters
+       * after that cannot be used for mapping, and with @r commands
+!      * typebuf.tb_buf[] can become very long.
+       * This is used often, KEEP IT FAST!
+       */
+      for (offset = 0; offset < max_offset; ++offset)
+***************
+*** 4098,4104 ****
+  #ifdef FEAT_TERMRESPONSE
+  	if (key_name[0] == NUL
+  	    /* URXVT mouse uses <ESC>[#;#;#M, but we are matching <ESC>[ */
+! 	    || key_name[0] == KS_URXVT_MOUSE)
+  	{
+  	    /* Check for some responses from terminal start with "<Esc>[" or
+  	     * CSI.
+--- 4097,4107 ----
+  #ifdef FEAT_TERMRESPONSE
+  	if (key_name[0] == NUL
+  	    /* URXVT mouse uses <ESC>[#;#;#M, but we are matching <ESC>[ */
+! 	    || key_name[0] == KS_URXVT_MOUSE
+! # ifdef FEAT_MBYTE
+! 	    || u7_status == U7_SENT
+! # endif
+!             )
+  	{
+  	    /* Check for some responses from terminal start with "<Esc>[" or
+  	     * CSI.
+***************
+*** 4129,4135 ****
+  
+  #ifdef FEAT_MBYTE
+  		/* eat it when it has 2 arguments and ends in 'R' */
+! 		if (u7_status == U7_SENT && j == 1 && tp[i] == 'R')
+  		{
+  		    char *p = NULL;
+  
+--- 4132,4138 ----
+  
+  #ifdef FEAT_MBYTE
+  		/* eat it when it has 2 arguments and ends in 'R' */
+! 		if (j == 1 && tp[i] == 'R')
+  		{
+  		    char *p = NULL;
+  
+*** ../vim-7.3.862/src/version.c	2013-03-16 14:20:45.000000000 +0100
+--- src/version.c	2013-03-16 14:33:16.000000000 +0100
+***************
+*** 730,731 ****
+--- 730,733 ----
+  {   /* Add new patch number below this line */
++ /**/
++     863,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+54. You start tilting your head sideways to smile. :-)
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list