]> git.lyx.org Git - features.git/blobdiff - src/Paragraph.cpp
Fix for a problem reported by some users, where cut & paste of math
[features.git] / src / Paragraph.cpp
index e870583d4e3bab9322015e3f365bbcb3019eafa9..0634bbafe54ace43be22866138a9ac591d133175 100644 (file)
@@ -2394,7 +2394,7 @@ docstring const Paragraph::asString(Buffer const & buffer,
                os << params().labelString() << ' ';
 
        for (pos_type i = beg; i < end; ++i) {
-               value_type const c = getUChar(buffer.params(), i);
+               value_type const c = getChar(i);
                if (isPrintable(c))
                        os.put(c);
                else if (c == META_INSET)