commit: 77d3f3e14082489491fc6f14565de35d0355dbce Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Sep 6 21:33:03 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Sep 6 22:04:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d3f3e1
sys-libs/readline: drop unused patch Signed-off-by: Sam James <sam <AT> gentoo.org> .../readline/files/readline-8.3-event_hook.patch | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/sys-libs/readline/files/readline-8.3-event_hook.patch b/sys-libs/readline/files/readline-8.3-event_hook.patch deleted file mode 100644 index dbf03ebe862e..000000000000 --- a/sys-libs/readline/files/readline-8.3-event_hook.patch +++ /dev/null @@ -1,35 +0,0 @@ -https://lists.gnu.org/archive/html/bug-readline/2025-07/msg00012.html - -*** a/input.c Fri May 2 09:29:05 2025 ---- b/input.c Tue Jul 8 15:37:13 2025 -*************** -*** 262,266 **** - tty = fileno (rl_instream); - -! /* Move this up here to give it first shot, but it can't set chars_avail */ - /* XXX - need rl_chars_available_hook? */ - if (rl_input_available_hook) ---- 262,267 ---- - tty = fileno (rl_instream); - -! /* Move this up here to give it first shot, but it can't set chars_avail, -! so we assume a single character is available. */ - /* XXX - need rl_chars_available_hook? */ - if (rl_input_available_hook) -*************** -*** 269,272 **** ---- 270,275 ---- - if (result == 0) - result = -1; -+ else -+ chars_avail = 1; - } - -*************** -*** 286,289 **** ---- 289,293 ---- - if (result <= 0) - return 0; /* Nothing to read. */ -+ result = -1; /* there is something, so check how many chars below */ - } - #endif
