* src/insets/InsetTabular.cpp:

- handle char correctly for docstream (bug 4147).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@21353 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-11-01 18:02:15 +00:00
parent fd4fa37926
commit a94fe3fb62
2 changed files with 3 additions and 1 deletions

View File

@ -2794,7 +2794,7 @@ void Tabular::plaintext(Buffer const & buf, odocstream & os,
if (isPartOfMultiColumn(i, j))
continue;
if (onlydata && j > 0)
os << delim;
os.put(delim);
plaintextPrintCell(buf, os, runparams,
cell, i, j, clen, onlydata);
++cell;

View File

@ -101,6 +101,8 @@ What's new
- Do not close the error dialog on double click (bug 4090).
- Fix cut and paste of tabular cells via the external clipboard (bug 4147).
* DOCUMENTATION