• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Révision75f5889a5d8e8272fd17a104ef148776f9133aa8 (tree)
l'heure2008-02-20 22:59:32
Auteurvimboss
Commitervimboss

Message de Log

updated for version 7.1-260

Change Summary

Modification

diff -r cbe70f2e756d -r 75f5889a5d8e src/charset.c
--- a/src/charset.c Wed Feb 20 13:16:29 2008 +0000
+++ b/src/charset.c Wed Feb 20 13:59:32 2008 +0000
@@ -1290,7 +1290,8 @@
12901290 /* If a double-cell char doesn't fit at the end of a line
12911291 * it wraps to the next line, it's like this char is three
12921292 * cells wide. */
1293- if (incr == 2 && wp->w_p_wrap && in_win_border(wp, vcol))
1293+ if (incr == 2 && wp->w_p_wrap && MB_BYTE2LEN(*ptr) > 1
1294+ && in_win_border(wp, vcol))
12941295 {
12951296 ++incr;
12961297 head = 1;
diff -r cbe70f2e756d -r 75f5889a5d8e src/version.c
--- a/src/version.c Wed Feb 20 13:16:29 2008 +0000
+++ b/src/version.c Wed Feb 20 13:59:32 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 260,
671+/**/
670672 259,
671673 /**/
672674 258,
Afficher sur ancien navigateur de dépôt.