summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorYegappan Lakshmanan <yegappan@yahoo.com>2022-08-27 21:24:26 +0100
committerBram Moolenaar <Bram@vim.org>2022-08-27 21:24:26 +0100
commitaebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87 (patch)
treedbee168afdec1c68a388bf2891dbd9831b496038 /src/os_unix.c
parent6d24a51b94beb1991cddce221f90b455e2d50db7 (diff)
downloadvim-git-aebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87.tar.gz
patch 9.0.0287: Irix systems no longer existv9.0.0287
Problem: Irix systems no longer exist. Solution: Remove references to Irix. (Yegappan Lakshmanan, closes #10994)
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 7aa3d1f0c..4dadac30a 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -252,7 +252,7 @@ static xsmp_config_T xsmp;
/*
* I have seen
* extern char *_sys_siglist[NSIG];
- * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
+ * on Linux, NetBSD and Solaris. It contains a nice list of strings
* that describe the signals. That is nearly what we want here. But
* autoconf does only check for sys_siglist (without the underscore), I
* do not want to change everything today.... jw.