diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
commit | 84a05acc8c341c2be383198496764992ae971a46 (patch) | |
tree | 061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/gui_w32.c | |
parent | 84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff) | |
download | vim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz |
updated for version 7.3.925v7.3.925
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 4ff89a323..c7a7b605c 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -1258,7 +1258,7 @@ gui_mch_prepare(int *argc, char **argv) #ifdef FEAT_NETBEANS_INTG { - /* stolen from gui_x11.x */ + /* stolen from gui_x11.c */ int arg; for (arg = 1; arg < *argc; arg++) @@ -1676,7 +1676,7 @@ gui_mch_set_shellsize(int width, int height, * used by the taskbar or appbars. */ get_work_area(&workarea_rect); - /* Get current posision of our window. Note that the .left and .top are + /* Get current position of our window. Note that the .left and .top are * relative to the work area. */ wndpl.length = sizeof(WINDOWPLACEMENT); GetWindowPlacement(s_hwnd, &wndpl); @@ -3100,7 +3100,7 @@ gui_mch_dialog( return -1; /* - * make a copy of 'buttons' to fiddle with it. complier grizzles because + * make a copy of 'buttons' to fiddle with it. compiler grizzles because * vim_strsave() doesn't take a const arg (why not?), so cast away the * const. */ @@ -4391,7 +4391,7 @@ gui_mch_register_sign(signfile) } sign.hImage = NULL; - ext = signfile + STRLEN(signfile) - 4; /* get extention */ + ext = signfile + STRLEN(signfile) - 4; /* get extension */ if (ext > signfile) { int do_load = 1; |