]> git.lyx.org Git - features.git/commitdiff
Fix the export-ascii bug by disabling special groff-filter in buffer.C
authorJürgen Vigna <jug@sad.it>
Fri, 21 Jan 2000 16:12:47 +0000 (16:12 +0000)
committerJürgen Vigna <jug@sad.it>
Fri, 21 Jan 2000 16:12:47 +0000 (16:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@435 a592a061-630c-0410-9148-cb99ea01b6c8

ChangeLog
src/buffer.C

index 2a5a9fc49a9e1baf9a228a7977248b89e0acc5c7..f258bea99c99aecee68578bcd4c3bcb6055eb07e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-21  Juergen Vigna  <jug@sad.it>
+
+       * 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  <Jean-Marc.Lasgouttes@inria.fr>
 
        * src/support/mkdir.C (mkdir): change second argument of mkdir to
index 883ba45ead777e13b64510525e8e429171e06e5b..5112ebcbc748a8d6540ed15189379254a960c08f 100644 (file)
@@ -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;