From df5005061c036817368a302b3b535999d758393a Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 30 Dec 2020 17:26:04 -0800 Subject: [PATCH] pivot-output: Implement superscript. --- src/output/pivot-output.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/output/pivot-output.c b/src/output/pivot-output.c index 44a044b8b0..12e1efafdb 100644 --- a/src/output/pivot-output.c +++ b/src/output/pivot-output.c @@ -135,6 +135,9 @@ fill_cell (struct table *t, int x1, int y1, int x2, int y2, if (value->n_subscripts) table_add_subscripts (t, x1, y1, value->subscripts, value->n_subscripts); + + if (value->superscript) + table_add_superscript (t, x1, y1, value->superscript); } } -- 2.30.2