summaryrefslogtreecommitdiffstats
path: root/src/if_xcmdsrv.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-02 21:26:16 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-02 21:26:16 +0000
commit1d423ef75fc8bce2edfd2aab61cc9beaa63e31aa (patch)
tree6db703ecd2dc317aa69c9c03f3130002a857e4af /src/if_xcmdsrv.c
parentb09feaa86ecc53b9b953710082496951776dc5c6 (diff)
patch 8.2.3987: error messages are spread outv8.2.3987
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/if_xcmdsrv.c')
-rw-r--r--src/if_xcmdsrv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_xcmdsrv.c b/src/if_xcmdsrv.c
index 6e653c5063..81a4d9de30 100644
--- a/src/if_xcmdsrv.c
+++ b/src/if_xcmdsrv.c
@@ -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;
}