summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-07-19 11:21:36 +0200
committerDavid Seifert <soap@gentoo.org>2022-07-19 11:21:36 +0200
commit2a6576826d120719a01dab06e85652798ab95bbf (patch)
treef78d73ee5d6e6c60470682211ac52bab4b0081b2 /app-shells/tcsh/files/tcsh-6.21.00-no-nls.patch
parentnet-dns/bind-tools: x86 stable wrt bug #859178 (diff)
downloadgentoo-2a6576826d120719a01dab06e85652798ab95bbf.tar.gz
gentoo-2a6576826d120719a01dab06e85652798ab95bbf.tar.bz2
gentoo-2a6576826d120719a01dab06e85652798ab95bbf.zip
app-shells/tcsh: drop 6.22.02-r1
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-shells/tcsh/files/tcsh-6.21.00-no-nls.patch')
-rw-r--r--app-shells/tcsh/files/tcsh-6.21.00-no-nls.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/app-shells/tcsh/files/tcsh-6.21.00-no-nls.patch b/app-shells/tcsh/files/tcsh-6.21.00-no-nls.patch
deleted file mode 100644
index a01ebfb57fdb..000000000000
--- a/app-shells/tcsh/files/tcsh-6.21.00-no-nls.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-GetCmdChar: fix compilation with --disable-nls
-
-Bug: https://bugs.gentoo.org/689904
-
---- a/ed.inputl.c
-+++ b/ed.inputl.c
-@@ -669,8 +669,8 @@
- {
- #ifndef WINNT_NATIVE // We use more than 256 for various extended keys
-- wint_t c = ch & CHAR;
-+ eChar c = ch & CHAR;
- #else
-- wint_t c = ch;
-+ eChar c = ch;
- #endif
- return c < NT_NUM_KEYS ? CurrentKeyMap[c] : F_INSERT;
- }