output: Remove support for bottom and right side headers.
[pspp] / src / output / tex.c
index 8a88452ec8a22760c146edd8f4c27e800d54a85b..c6227296b1a91cfd7745fb32cf677717e196c0b4 100644 (file)
@@ -498,7 +498,7 @@ tex_output_table_layer (struct tex_driver *tex, const struct pivot_table *pt,
   for (int y = 0; y < body->n[V]; y++)
     {
       enum { H = TABLE_HORZ, V = TABLE_VERT };
-      bool is_column_header = y < body->h[V][0] || y >= body->n[V] - body->h[V][1];
+      bool is_column_header = y < body->h[V] || y >= body->n[V];
       int prev_x = -1;
       int skipped = 0;
       for (int x = 0; x < body->n[H];)