From: Jean-Marc Lasgouttes Date: Mon, 9 Sep 2024 13:19:25 +0000 (+0200) Subject: Fixup b8cdfd1e1db: fix thinko X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=12d771c43fc121c89e6df5ae1e0b6aedc11d799e;p=lyx.git Fixup b8cdfd1e1db: fix thinko Spotted by Coverity. --- diff --git a/src/KeyMap.cpp b/src/KeyMap.cpp index f779cbbf4c..8e12624304 100644 --- a/src/KeyMap.cpp +++ b/src/KeyMap.cpp @@ -495,7 +495,7 @@ docstring KeyMap::printBindings(FuncRequest const & func, if (!firstone) res << ", "; res << key.print(format, untranslated); - firstone = true; + firstone = false; } return res.str(); }