aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.h
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-05-10 01:11:34 -0300
committerFelipe Oliveira Carvalho <felipekde@gmail.com>2014-05-19 14:50:24 -0300
commita2f6a53b68d73cb585dcb67ea19579d446810176 (patch)
treefcfdf8790defe09f8f05cf8d063fb4a2eb64d6e6 /src/nvim/getchar.h
parent39a272c4db215c2f6043e8c5de5d2104d8118b4f (diff)
downloadrneovim-a2f6a53b68d73cb585dcb67ea19579d446810176.tar.gz
rneovim-a2f6a53b68d73cb585dcb67ea19579d446810176.tar.bz2
rneovim-a2f6a53b68d73cb585dcb67ea19579d446810176.zip
Remove OOM checks: save_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 edb008bd76..c34efc8d0c 100644
--- a/src/nvim/getchar.h
+++ b/src/nvim/getchar.h
@@ -33,7 +33,7 @@ int typebuf_maplen(void);
void del_typebuf(int len, int offset);
void alloc_typebuf(void);
void free_typebuf(void);
-int save_typebuf(void);
+void save_typebuf(void);
void save_typeahead(tasave_T *tp);
void restore_typeahead(tasave_T *tp);
void openscript(char_u *name, int directly);