summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 9a1132aa80..c7a1cca1a6 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -1768,16 +1768,16 @@ vgetc(void)
c == K_TEAROFF)
{
char_u name[200];
- int i;
+ int j;
// get menu path, it ends with a <CR>
- for (i = 0; (c = vgetorpeek(TRUE)) != '\r'; )
+ for (j = 0; (c = vgetorpeek(TRUE)) != '\r'; )
{
- name[i] = c;
- if (i < 199)
- ++i;
+ name[j] = c;
+ if (j < 199)
+ ++j;
}
- name[i] = NUL;
+ name[j] = NUL;
gui_make_tearoff(name);
continue;
}