diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-02-11 15:10:43 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-02-11 15:10:43 +0100 |
commit | 0a36fece9234d423aa5e35a8df1e33b3f79e9ede (patch) | |
tree | 8f7e6034c8007a526e2bb0132d21817f183ca73c /src/proto/getchar.pro | |
parent | c467d9b2745642df836e89c026b2e84d9b227b59 (diff) | |
download | vim-0a36fece9234d423aa5e35a8df1e33b3f79e9ede.zip |
updated for version 7.4.171
Problem: Redo does not set v:count and v:count1.
Solution: Use a separate buffer for redo, so that we can set the counts when
performing redo.
Diffstat (limited to 'src/proto/getchar.pro')
-rw-r--r-- | src/proto/getchar.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/getchar.pro b/src/proto/getchar.pro index 371f77002..897cad37f 100644 --- a/src/proto/getchar.pro +++ b/src/proto/getchar.pro @@ -1,8 +1,9 @@ /* getchar.c */ -void free_buff __ARGS((struct buffheader *buf)); +void free_buff __ARGS((buffheader_T *buf)); char_u *get_recorded __ARGS((void)); char_u *get_inserted __ARGS((void)); int stuff_empty __ARGS((void)); +int readbuf1_empty __ARGS((void)); void typeahead_noflush __ARGS((int c)); void flush_buffers __ARGS((int flush_typeahead)); void ResetRedobuff __ARGS((void)); |