mirror of
https://github.com/neovim/neovim.git
synced 2024-12-24 05:05:00 -07:00
shada: Do not handle EINTR in open_file
It is already handled by libuv which is used by os_open.
This commit is contained in:
parent
931539d108
commit
21c12cf4e7
@ -666,9 +666,6 @@ open_file_start:
|
||||
did_try_to_free = true;
|
||||
goto open_file_start;
|
||||
}
|
||||
if (-fd == EINTR) {
|
||||
goto open_file_start;
|
||||
}
|
||||
if (-fd != EEXIST) {
|
||||
emsg3(_(SERR "System error while opening ShaDa file %s: %s"),
|
||||
fname, os_strerror(fd));
|
||||
|
Loading…
Reference in New Issue
Block a user