Fix for a problem reported by some users, where cut & paste of math

insets in RTL paragraphs is garbled because of parentheses being reversed.

See threads http://permalink.gmane.org/gmane.editors.lyx.devel/83938 and 
http://thread.gmane.org/gmane.editors.lyx.devel/83345/focus=83637 for 
details.



git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18388 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
José Matox 2007-05-17 21:47:32 +00:00
parent 8283c6f5b2
commit 708ebc04f6

View 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)