summaryrefslogtreecommitdiff
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
committerBram Moolenaar <Bram@vim.org>2018-09-30 21:43:26 +0200
commit6dff58f15cede9139b2fcfc64c9064326ea3d3b0 (patch)
treef2326055f5fe8bb5948374155f11bd220c1d9dc7 /src/getchar.c
parentf45d747ebf920940b041f5c75c2bfdffb6b670ae (diff)
downloadvim-git-6dff58f15cede9139b2fcfc64c9064326ea3d3b0.tar.gz
patch 8.1.0443: unnecessary static function prototypesv8.1.0443
Problem: Unnecessary static function prototypes. Solution: Remove unnecessary prototypes.
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 6331cd76e..679eae160 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -108,17 +108,8 @@ static char_u noremapbuf_init[TYPELEN_INIT]; /* initial typebuf.tb_noremap */
static int last_recorded_len = 0; /* number of last recorded chars */
-static char_u *get_buffcont(buffheader_T *, int);
-static void add_buff(buffheader_T *, char_u *, long n);
-static void add_num_buff(buffheader_T *, long);
-static void add_char_buff(buffheader_T *, int);
-static int read_readbuffers(int advance);
static int read_readbuf(buffheader_T *buf, int advance);
-static void start_stuff(void);
-static int read_redo(int, int);
-static void copy_redo(int);
static void init_typebuf(void);
-static void gotchars(char_u *, int);
static void may_sync_undo(void);
static void closescript(void);
static int vgetorpeek(int);