From: Jürgen Vigna Date: Fri, 21 Jan 2000 16:12:47 +0000 (+0000) Subject: Fix the export-ascii bug by disabling special groff-filter in buffer.C X-Git-Tag: 1.6.10~22416 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9a34f1b0e77daf73286b411fc54bd222fe3cee14;p=features.git Fix the export-ascii bug by disabling special groff-filter in buffer.C git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@435 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/ChangeLog b/ChangeLog index 2a5a9fc49a..f258bea99c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-01-21 Juergen Vigna + + * src/buffer.C (writeFileAscii): Disabled code for special groff + handling of tabulars till I fix this in table.C + 2000-01-21 Jean-Marc Lasgouttes * src/support/mkdir.C (mkdir): change second argument of mkdir to diff --git a/src/buffer.C b/src/buffer.C index 883ba45ead..5112ebcbc7 100644 --- a/src/buffer.C +++ b/src/buffer.C @@ -1336,12 +1336,14 @@ void Buffer::writeFileAscii(string const & fname, int linelen) /* It might be a table */ if (par->table){ +#if 0 if (!lyxrc->ascii_roff_command.empty() && lyxrc->ascii_roff_command != "none") { RoffAsciiTable(ofs, par); par = par->next; continue; } +#endif cell = 1; actcell = 0; cells = par->table->columns;