Problem: repeat_string() can be improved
Solution: Replace the for() loop by an exponential growing while loop
(Yasuhiro Matsumoto)
closes: #19977
Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
int slen;
int len;
char_u *r;
- int i;
+ int done;
p = tv_get_string(str_tv);
rettv->v_type = VAR_STRING;
if (r == NULL)
return;
- for (i = 0; i < n; i++)
- mch_memmove(r + i * slen, p, (size_t)slen);
+ mch_memmove(r, p, (size_t)slen);
+ done = slen;
+ while (done < len)
+ {
+ int copy_len = done;
+
+ if (copy_len > len - done)
+ copy_len = len - done;
+ mch_memmove(r + done, r, (size_t)copy_len);
+ done += copy_len;
+ }
r[len] = NUL;
rettv->vval.v_string = r;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 351,
/**/
350,
/**/