This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=78814a4dec2b0c974dc822ca39637c5920356ce0 commit 78814a4dec2b0c974dc822ca39637c5920356ce0 Author: Guillem Jover <[email protected]> AuthorDate: Thu Jan 2 13:11:22 2025 +0100 dselect: Fix logic inversion in repeat search keybinding This was making the repeat search not work at all. Fixes: commit c11a69207d031b7d2260dd0108b91b27b22dea1e Changelog: internal --- dselect/basecmds.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dselect/basecmds.cc b/dselect/basecmds.cc index d2db102ce..4ce334578 100644 --- a/dselect/basecmds.cc +++ b/dselect/basecmds.cc @@ -85,7 +85,7 @@ void baselist::kd_redraw() { } void baselist::kd_searchagain() { - if (searchstring.len()) { + if (!searchstring.len()) { beep(); return; } -- Dpkg.Org's dpkg

