aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.h
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-05-10 01:09:33 -0300
committerFelipe Oliveira Carvalho <felipekde@gmail.com>2014-05-19 14:50:24 -0300
commit39a272c4db215c2f6043e8c5de5d2104d8118b4f (patch)
tree2a395a1cecd1cf5dddf35411efa5db9f65f8f9a4 /src/nvim/getchar.h
parent27f5f7b1e8ce3a54713bdc0a020b1f327f400f4f (diff)
downloadrneovim-39a272c4db215c2f6043e8c5de5d2104d8118b4f.tar.gz
rneovim-39a272c4db215c2f6043e8c5de5d2104d8118b4f.tar.bz2
rneovim-39a272c4db215c2f6043e8c5de5d2104d8118b4f.zip
Remove OOM checks: alloc_typebuf()
Diffstat (limited to 'src/nvim/getchar.h')
-rw-r--r--src/nvim/getchar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.h b/src/nvim/getchar.h
index 527573bdab..edb008bd76 100644
--- a/src/nvim/getchar.h
+++ b/src/nvim/getchar.h
@@ -31,7 +31,7 @@ int typebuf_changed(int tb_change_cnt);
int typebuf_typed(void);
int typebuf_maplen(void);
void del_typebuf(int len, int offset);
-int alloc_typebuf(void);
+void alloc_typebuf(void);
void free_typebuf(void);
int save_typebuf(void);
void save_typeahead(tasave_T *tp);