diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-06-08 21:17:43 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-06-08 21:17:43 +0200 |
commit | 945ec093cd4ddefab930239990564b12eb232153 (patch) | |
tree | f0bbaf6b699d1d3e758e6b3a395413ef64d00742 /src/gui_w32.c | |
parent | 5ce4a0b96ab688b1ea2481c2516e2889ff6713bf (diff) | |
download | vim-git-945ec093cd4ddefab930239990564b12eb232153.tar.gz |
patch 7.4.1909v7.4.1909
Problem: Doubled semicolons.
Solution: Reduce to one. (Dominique Pelle)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index f6601dff7..cf29b610c 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -685,7 +685,7 @@ char_to_string(int ch, char_u *string, int slen, int had_alt) int i; #ifdef FEAT_MBYTE WCHAR wstring[2]; - char_u *ws = NULL;; + char_u *ws = NULL; if (os_version.dwPlatformId != VER_PLATFORM_WIN32_NT) { @@ -1873,7 +1873,7 @@ process_message(void) && (vk != VK_SPACE || !(GetKeyState(VK_MENU) & 0x8000))) { /* - * Behave as exected if we have a dead key and the special key + * Behave as expected if we have a dead key and the special key * is a key that would normally trigger the dead key nominal * character output (such as a NUMPAD printable character or * the TAB key, etc...). |