1
0
forked from aniani/vim

patch 8.0.0451: some macros are in lower case

Problem:    Some macros are in lower case.
Solution:   Make a few more macros upper case. Avoid lower case macros use an
            argument twice.
This commit is contained in:
Bram Moolenaar
2017-03-12 19:22:36 +01:00
parent 47ffb905f3
commit 91acfffc1e
39 changed files with 207 additions and 194 deletions

View File

@@ -1522,7 +1522,7 @@ split_button_string(char_u *button_string, int *n_buttons)
else if (*p == DLG_HOTKEY_CHAR)
*p++ = '_';
else
mb_ptr_adv(p);
MB_PTR_ADV(p);
}
array[count] = NULL; /* currently not relied upon, but doesn't hurt */
}