diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-12-27 21:59:20 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-12-27 21:59:20 +0000 |
commit | 86b68359978c933419279e599d0a8cf536095d77 (patch) | |
tree | 4291920506f596f1c934c9cf3af5641bdc63b900 /src/os_mswin.c | |
parent | b5bf5b8fae9ff5e2f7704686efae2814be1e18f7 (diff) | |
download | vim-git-86b68359978c933419279e599d0a8cf536095d77.tar.gz |
updated for version 7.0025v7.0025
Diffstat (limited to 'src/os_mswin.c')
-rw-r--r-- | src/os_mswin.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index cea1054f5..f2a6c905b 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -2908,7 +2908,6 @@ static garray_T reply_list = {0, 0, sizeof(reply_T), 5, 0}; #define REPLY_ITEM(i) ((reply_T *)(reply_list.ga_data) + (i)) #define REPLY_COUNT (reply_list.ga_len) -#define REPLY_ROOM (reply_list.ga_room) /* Flag which is used to wait for a reply */ static int reply_received = 0; @@ -2932,7 +2931,6 @@ save_reply(HWND server, char_u *reply, int expr) return FAIL; ++REPLY_COUNT; - --REPLY_ROOM; reply_received = 1; return OK; } @@ -2976,7 +2974,6 @@ serverGetReply(HWND server, int *expr_res, int remove, int wait) mch_memmove(rep, rep + 1, (REPLY_COUNT - i - 1) * sizeof(reply_T)); --REPLY_COUNT; - ++REPLY_ROOM; } /* Return the reply to the caller, who takes on responsibility |