aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/globals.h
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-11-01 12:03:56 -0500
committerGitHub <noreply@github.com>2020-11-01 12:03:56 -0500
commitba1ff710782960a1be6ebe7342bb26a556f300fa (patch)
treed9b39f3166041780ba44c174a363f6e111dc483a /src/nvim/globals.h
parent8821587748058ee1ad8523865b30a03582f8d7be (diff)
parent057e21b1e771e164346dd1723dbaf539e002270c (diff)
downloadrneovim-ba1ff710782960a1be6ebe7342bb26a556f300fa.tar.gz
rneovim-ba1ff710782960a1be6ebe7342bb26a556f300fa.tar.bz2
rneovim-ba1ff710782960a1be6ebe7342bb26a556f300fa.zip
Merge pull request #13197 from janlazo/vim-8.2.1925
vim-patch:8.2.{639,666,1925,1926,1929,1932}
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r--src/nvim/globals.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h
index 2db8689a56..9e52a4a938 100644
--- a/src/nvim/globals.h
+++ b/src/nvim/globals.h
@@ -941,8 +941,10 @@ EXTERN char_u e_readonly[] INIT(= N_(
EXTERN char_u e_readonlyvar[] INIT(= N_(
"E46: Cannot change read-only variable \"%.*s\""));
EXTERN char_u e_dictreq[] INIT(= N_("E715: Dictionary required"));
-EXTERN char_u e_toomanyarg[] INIT(= N_("E118: Too many arguments for function: %s"));
-EXTERN char_u e_dictkey[] INIT(= N_("E716: Key not present in Dictionary: %s"));
+EXTERN char_u e_toomanyarg[] INIT(= N_(
+ "E118: Too many arguments for function: %s"));
+EXTERN char_u e_dictkey[] INIT(= N_(
+ "E716: Key not present in Dictionary: \"%s\""));
EXTERN char_u e_listreq[] INIT(= N_("E714: List required"));
EXTERN char_u e_listdictarg[] INIT(= N_(
"E712: Argument of %s must be a List or Dictionary"));