commit:     2a0d276b9e40d71639e45678e69495876933e628
Author:     Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 12 15:59:41 2025 +0000
Commit:     Michael Mair-Keimberger <mm1ke <AT> gentoo <DOT> org>
CommitDate: Fri Dec 12 15:59:41 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a0d276b

app-shells/tcsh: remove unused patches

Signed-off-by: Michael Mair-Keimberger <mm1ke <AT> gentoo.org>

 app-shells/tcsh/files/tcsh-6.21.04-no-nls.patch    | 18 ---------------
 app-shells/tcsh/files/tcsh-6.23.02-dircolors.patch | 27 ----------------------
 2 files changed, 45 deletions(-)

diff --git a/app-shells/tcsh/files/tcsh-6.21.04-no-nls.patch 
b/app-shells/tcsh/files/tcsh-6.21.04-no-nls.patch
deleted file mode 100644
index 7f465d8a75ef..000000000000
--- a/app-shells/tcsh/files/tcsh-6.21.04-no-nls.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-GetCmdChar: fix compilation with --disable-nls
-
-Bug: https://bugs.gentoo.org/689904
-
---- a/ed.inputl.c
-+++ b/ed.inputl.c
-@@ -668,9 +668,9 @@
- GetCmdChar(Char ch)
- {
- #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;
- }

diff --git a/app-shells/tcsh/files/tcsh-6.23.02-dircolors.patch 
b/app-shells/tcsh/files/tcsh-6.23.02-dircolors.patch
deleted file mode 100644
index 2fb21476fd29..000000000000
--- a/app-shells/tcsh/files/tcsh-6.23.02-dircolors.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Based on original Debian patch, updated from 6.14 to 6.20 and 6.23
-
-silently ignore bad colour variables, for defaults have unsupported ones
-
-https://bugs.gentoo.org/120792
-
---- a/tw.color.c
-+++ b/tw.color.c
-@@ -381,16 +381,14 @@
-                       if ((Char)variables[i].variable[0] == (v[0] & CHAR) &&
-                           (Char)variables[i].variable[1] == (v[1] & CHAR))
-                           break;
-+                  v += 3;
-                   if (i < nvariables) {
--                      v += 3;
-                       getstring(&c, &v, &variables[i].color, ':');
-                       if (i == VSym)
-                           color_as_referent = strcasecmp(
-                               variables[VSym].color.s, "target") == 0;
--                      continue;
-                   }
--                  else
--                      stderror(ERR_BADCOLORVAR, v[0], v[1]);
-+                  continue;
-               }
-               break;
-           }

Reply via email to