mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
eval: Remove unneeded !eap->skip check
Already checked in the outer if().
This commit is contained in:
parent
9dd1926df0
commit
1bc0800787
@ -19462,8 +19462,9 @@ void ex_function(exarg_T *eap)
|
||||
* interrupt, or an exception.
|
||||
*/
|
||||
if (!aborting()) {
|
||||
if (!eap->skip && fudi.fd_newkey != NULL)
|
||||
if (fudi.fd_newkey != NULL) {
|
||||
EMSG2(_(e_dictkey), fudi.fd_newkey);
|
||||
}
|
||||
xfree(fudi.fd_newkey);
|
||||
return;
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user