diff src/ops.c @ 22:cc049b00ee70

updated for version 7.0014
author vimboss
date Thu, 02 Sep 2004 19:12:26 +0000
parents 4ac1dce8dd5e
children f6033dcbaf31
line wrap: on
line diff
--- a/src/ops.c
+++ b/src/ops.c
@@ -3703,6 +3703,11 @@ ex_display(eap)
     int			name;
     int			attr;
     char_u		*arg = eap->arg;
+#ifdef FEAT_MBYTE
+    int			clen;
+#else
+# define clen 1
+#endif
 
     if (arg != NULL && *arg == NUL)
 	arg = NULL;
@@ -3750,10 +3755,12 @@ ex_display(eap)
 		}
 		for (p = yb->y_array[j]; *p && (n -= ptr2cells(p)) >= 0; ++p)
 		{
-		    msg_outtrans_len(p, 1);
 #ifdef FEAT_MBYTE
-		    if (has_mbyte)
-			p += (*mb_ptr2len_check)(p) - 1;
+		    clen = (*mb_ptr2len_check)(p);
+#endif
+		    msg_outtrans_len(p, clen);
+#ifdef FEAT_MBYTE
+		    p += clen - 1;
 #endif
 		}
 	    }