From d659dfa14575d6ffdda454cb8079f8a817d7c4c8 Mon Sep 17 00:00:00 2001 From: Werner LEMBERG Date: Wed, 20 Oct 2004 12:47:03 +0000 Subject: [PATCH] * src/preproc/tbl/table.cpp (table::do_row): Fix handling of the `d' column key letter suffix. --- ChangeLog | 5 +++++ src/preproc/tbl/table.cpp | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 89ba2e9b..c3c6a20c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-10-20 Tadziu Hoffmann + + * src/preproc/tbl/table.cpp (table::do_row): Fix handling of the `d' + column key letter suffix. + 2004-10-14 Werner LEMBERG * Makefile.in (check): Depend on `site.exp' and `docheck'. diff --git a/src/preproc/tbl/table.cpp b/src/preproc/tbl/table.cpp index 39c9b95f..4d13be05 100644 --- a/src/preproc/tbl/table.cpp +++ b/src/preproc/tbl/table.cpp @@ -2607,8 +2607,14 @@ void table::do_row(int r) if (e) { if (e->end_row == r && e->start_row == i) { simple_entry *simple = e->to_simple_entry(); - if (simple) + if (simple) { + if (e->end_row != e->start_row) { + prints('\n'); + simple->position_vertically(); + prints("\\&"); + } simple->simple_print(0); + } } c = e->end_col; } -- 2.11.4.GIT