Compare commits

..

2 Commits

Author SHA1 Message Date
8b4300c796 Bump liberty, check the connection while searching
All checks were successful
Alpine 3.20 Success
Arch Linux AUR Success
OpenBSD 7.5 Success
This just prevents immediate assertion failures.
2025-01-08 08:10:19 +01:00
cd3d4eb1ad README.adoc: update package information 2024-11-13 08:36:52 +01:00
3 changed files with 5 additions and 1 deletions

View File

@@ -33,6 +33,8 @@ You can get a package with the latest development version using Arch Linux's
https://aur.archlinux.org/packages/nncmpp-git[AUR], https://aur.archlinux.org/packages/nncmpp-git[AUR],
or as a https://git.janouch.name/p/nixexprs[Nix derivation]. or as a https://git.janouch.name/p/nixexprs[Nix derivation].
Stable versions are present in: OpenBSD ports.
Documentation Documentation
------------- -------------
See the link:nncmpp.adoc[man page] for information about usage. See the link:nncmpp.adoc[man page] for information about usage.

Submodule liberty updated: 75fc6f1c37...017cb1d570

View File

@@ -3785,6 +3785,8 @@ static void
search_on_changed (void) search_on_changed (void)
{ {
struct mpd_client *c = &g.client; struct mpd_client *c = &g.client;
if (c->state != MPD_CONNECTED)
return;
size_t len; size_t len;
char *u8 = (char *) u32_to_u8 (g.editor.line, g.editor.len + 1, NULL, &len); char *u8 = (char *) u32_to_u8 (g.editor.line, g.editor.len + 1, NULL, &len);