summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-02 19:25:26 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-02 19:25:26 +0000
commitac78dd4a352196ca4e6640f8e4caaf126afd49e3 (patch)
treec741cbf5a8f33503e42af2294afdbd4bf15b0ae9 /src/os_unix.c
parent3d0da09bb2d31afc611bf1c4b35796739d87ed63 (diff)
downloadvim-git-8.2.3985.tar.gz
patch 8.2.3985: error messages are spread outv8.2.3985
Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index e22f14670..993068042 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -7575,7 +7575,7 @@ mch_libcall(
for (i = 0; signal_info[i].sig != -1; i++)
if (lc_signal == signal_info[i].sig)
break;
- semsg("E368: got SIG%s in libcall()", signal_info[i].name);
+ semsg(e_got_sig_str_in_libcall, signal_info[i].name);
}
# endif
# endif