1
0
forked from aniani/vim

patch 8.2.3987: error messages are spread out

Problem:    Error messages are spread out.
Solution:   Move more error messages to errors.h.
This commit is contained in:
Bram Moolenaar
2022-01-02 21:26:16 +00:00
parent b09feaa86e
commit 1d423ef75f
19 changed files with 237 additions and 85 deletions

View File

@@ -720,7 +720,7 @@ serverStrToWin(char_u *str)
sscanf((char *)str, "0x%x", &id);
if (id == None)
semsg(_("E573: Invalid server id used: %s"), str);
semsg(_(e_invalid_server_id_used_str), str);
return (Window)id;
}