output: Remove support for bottom and right side headers.
[pspp] / src / output / tex.c
index de111ec13f47b74177b0a48aed47046a59053e39..cbfaa13618edcac4a9525ceb7adba2e1e0286c8e 100644 (file)
@@ -501,7 +501,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];)