head 1.2; access; symbols pkgsrc-2026Q2:1.1.0.2 pkgsrc-2026Q2-base:1.1; locks; strict; comment @// @; 1.2 date 2026.08.11.14.40.34; author ktnb; state dead; branches; next 1.1; commitid QZhXEhi1zx7TgeRG; 1.1 date 2026.05.13.18.34.47; author ktnb; state Exp; branches; next ; commitid E0Bl6QnivA8zsGFG; desc @@ 1.2 log @mu: update to 1.14.3 Many internal cleanups/fixups/C++20-modernization, but also a number of new features: mu: - better handling of html parts - fall back to most recent 'Received' for 'Date:'-less messages - record the time-zone offset - command-line completion for bash & zsh mu4e: - improved mime-handling - improved HTML view (generate HTML view for pure text as well) - hide "clickables" until requested (but see - mu4e-view-always-show-url-indicators) scm: - performance improvements - new methods for querying system configuration" and querying database - fields, and getting timezone information (for 'date' and 'changed') @ text @$NetBSD: patch-lib_mu-query-processor.cc,v 1.1 2026/05/13 18:34:47 ktnb Exp $ ctype(3) for NetBSD 11 --- lib/mu-query-processor.cc.orig 2026-04-27 19:03:29.000000000 +0000 +++ lib/mu-query-processor.cc @@@@ -437,7 +437,7 @@@@ process(const std::string& expr) /* all control chars become SPC */ std::string str{expr}; for (auto& c: str) - c = ::iscntrl(c) ? ' ' : c; + c = ::iscntrl(static_cast(c)) ? ' ' : c; while(!str.empty()) { auto&& element = next_element(str, offset) @ 1.1 log @mu: found more ctype bugs @ text @d1 1 a1 1 $NetBSD$ @