comparison src/proto/getchar.pro @ 5649:beb037a6c270 v7.4.171

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.
author Bram Moolenaar <bram@vim.org>
date Tue, 11 Feb 2014 15:10:43 +0100
parents c9366ca36f6f
children 975d96776111
comparison
equal deleted inserted replaced
5648:e2140f8c3b20 5649:beb037a6c270
1 /* getchar.c */ 1 /* getchar.c */
2 void free_buff __ARGS((struct buffheader *buf)); 2 void free_buff __ARGS((buffheader_T *buf));
3 char_u *get_recorded __ARGS((void)); 3 char_u *get_recorded __ARGS((void));
4 char_u *get_inserted __ARGS((void)); 4 char_u *get_inserted __ARGS((void));
5 int stuff_empty __ARGS((void)); 5 int stuff_empty __ARGS((void));
6 int readbuf1_empty __ARGS((void));
6 void typeahead_noflush __ARGS((int c)); 7 void typeahead_noflush __ARGS((int c));
7 void flush_buffers __ARGS((int flush_typeahead)); 8 void flush_buffers __ARGS((int flush_typeahead));
8 void ResetRedobuff __ARGS((void)); 9 void ResetRedobuff __ARGS((void));
9 void CancelRedo __ARGS((void)); 10 void CancelRedo __ARGS((void));
10 void saveRedobuff __ARGS((void)); 11 void saveRedobuff __ARGS((void));