]> git.lyx.org Git - features.git/blobdiff - src/Text.cpp
Cmake key-tests: Adapted to changed shortcuts
[features.git] / src / Text.cpp
index aa70b18cbfb8bbba8fe7ecf0e0c97214dc80207c..e379337ee89a527bee072b38e20491a41d41e4f2 100644 (file)
@@ -2149,7 +2149,10 @@ docstring Text::currentState(CursorData const & cur, bool devel_mode) const
                if (!par.empty() && cur.pos() < par.size()) {
                        // Force output of code point, not character
                        size_t const c = par.getChar(cur.pos());
-                       os << _(", Char: 0x") << hex << c;
+                       if (c == META_INSET)
+                               os << ", Char: INSET";
+                       else
+                               os << _(", Char: 0x") << hex << c;
                }
                os << _(", Boundary: ") << cur.boundary();
 //             Row & row = cur.textRow();