diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-09 21:54:49 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-09 21:54:49 +0000 |
commit | c6fe919573e82727a7de014daab122ffc5001854 (patch) | |
tree | 237b3cac7ceeee2c16d574a99f1c37e9bd94ea53 /src/gui_w32.c | |
parent | 61660eadced09491ef8ee0a7d4af73cc75fdc349 (diff) | |
download | vim-git-c6fe919573e82727a7de014daab122ffc5001854.tar.gz |
updated for version 7.0c13v7.0c13
Diffstat (limited to 'src/gui_w32.c')
-rw-r--r-- | src/gui_w32.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 0e6e85704..21b757b60 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -740,17 +740,7 @@ _WndProc( GetCursorPos((LPPOINT)&pt); GetWindowRect(s_textArea, &rect); if (pt.y < rect.top) - { - char_u string[3]; - - string[0] = CSI; - string[1] = KS_TABMENU; - string[2] = KE_FILLER; - add_to_input_buf(string, 3); - string[0] = 0; - string[1] = (char_u)(long)TABLINE_MENU_NEW; - add_to_input_buf_csi(string, 2); - } + send_tabline_menu_event(0, TABLINE_MENU_NEW); } return MyWindowProc(hwnd, uMsg, wParam, lParam); } |