mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Remove OOM checks: save_typebuf()
This commit is contained in:
parent
39a272c4db
commit
a2f6a53b68
@ -1177,12 +1177,11 @@ void free_typebuf(void)
|
||||
*/
|
||||
static typebuf_T saved_typebuf[NSCRIPT];
|
||||
|
||||
int save_typebuf(void)
|
||||
void save_typebuf(void)
|
||||
{
|
||||
init_typebuf();
|
||||
saved_typebuf[curscript] = typebuf;
|
||||
alloc_typebuf();
|
||||
return OK;
|
||||
}
|
||||
|
||||
static int old_char = -1; /* character put back by vungetc() */
|
||||
@ -1262,8 +1261,7 @@ openscript (
|
||||
--curscript;
|
||||
return;
|
||||
}
|
||||
if (save_typebuf() == FAIL)
|
||||
return;
|
||||
save_typebuf();
|
||||
|
||||
/*
|
||||
* Execute the commands from the file right now when using ":source!"
|
||||
|
@ -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);
|
||||
|
@ -1365,8 +1365,7 @@ scripterror:
|
||||
mch_errmsg("\"\n");
|
||||
mch_exit(2);
|
||||
}
|
||||
if (save_typebuf() == FAIL)
|
||||
mch_exit(2); /* out of memory */
|
||||
save_typebuf();
|
||||
break;
|
||||
|
||||
case 't': /* "-t {tag}" */
|
||||
|
Loading…
Reference in New Issue
Block a user