diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-04-10 19:08:11 +0200 |
---|---|---|
committer | Thomas Wienecke <wienecke.t@gmail.com> | 2014-05-03 17:41:05 +0200 |
commit | 255b2a27414b85a7b0d3aac95a1c3d6f9c63c72f (patch) | |
tree | 016c06d238dfb5207717e505382b986966f0e9e2 /src/ui.c | |
parent | e74d75986a0614b195345a099a9fc239ac517cad (diff) | |
download | rneovim-255b2a27414b85a7b0d3aac95a1c3d6f9c63c72f.tar.gz rneovim-255b2a27414b85a7b0d3aac95a1c3d6f9c63c72f.tar.bz2 rneovim-255b2a27414b85a7b0d3aac95a1c3d6f9c63c72f.zip |
Remove unused function push_raw_key.
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -353,12 +353,6 @@ void add_to_input_buf_csi(char_u *str, int len) { #endif -void push_raw_key(char_u *s, int len) -{ - while (len--) - inbuf[inbufcount++] = *s++; -} - #if defined(FEAT_GUI) || defined(FEAT_EVAL) || defined(FEAT_EX_EXTRA) \ || defined(PROTO) /* Remove everything from the input buffer. Called when ^C is found */ |