components/vim/vim72-patches/7.2.341
changeset 379 c6a17bba1da3
parent 378 f0b61ed1d10d
child 380 e92b3b4a1c66
--- a/components/vim/vim72-patches/7.2.341	Thu Jul 07 19:05:29 2011 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,69 +0,0 @@
-To: [email protected]
-Subject: Patch 7.2.341
-Fcc: outbox
-From: Bram Moolenaar <[email protected]>
-Mime-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-------------
-
-Patch 7.2.341
-Problem:    Popup menu wraps to next line when double-wide character doesn't
-	    fit. (Jiang Ma)
-Solution:   Display a ">" instead. (Dominique Pelle)
-Files:	    src/screen.c
-
-
-*** ../vim-7.2.340/src/screen.c	2009-11-25 13:03:29.000000000 +0100
---- src/screen.c	2010-01-19 17:34:21.000000000 +0100
-***************
-*** 6434,6439 ****
---- 6434,6446 ----
-  		else
-  		    prev_c = u8c;
-  # endif
-+ 		if (col + mbyte_cells > screen_Columns)
-+ 		{
-+ 		    /* Only 1 cell left, but character requires 2 cells:
-+ 		     * display a '>' in the last column to avoid wrapping. */
-+ 		    c = '>';
-+ 		    mbyte_cells = 1;
-+ 		}
-  	    }
-  	}
-  #endif
-***************
-*** 9210,9216 ****
-      int	    force;
-  {
-      /*
-!      * Don't delete it right now, when not redrawing or insided a mapping.
-       */
-      if (!redrawing() || (!force && char_avail() && !KeyTyped))
-  	redraw_cmdline = TRUE;		/* delete mode later */
---- 9217,9223 ----
-      int	    force;
-  {
-      /*
-!      * Don't delete it right now, when not redrawing or inside a mapping.
-       */
-      if (!redrawing() || (!force && char_avail() && !KeyTyped))
-  	redraw_cmdline = TRUE;		/* delete mode later */
-*** ../vim-7.2.340/src/version.c	2010-01-19 17:24:20.000000000 +0100
---- src/version.c	2010-01-19 17:39:56.000000000 +0100
-***************
-*** 683,684 ****
---- 683,686 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     341,
-  /**/
-
--- 
-hundred-and-one symptoms of being an internet addict:
-124. You begin conversations with, "Who is your internet service provider?"
-
- /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
-///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
-\\\        download, build and distribute -- http://www.A-A-P.org        ///
- \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///