output: Refine support for footnotes, subscripts, and superscripts.
[pspp] / src / output / table-provider.h
index d961d43e10184058ff0124b8aecdf2b9df0af667..711f84d6b3960a529a60022a21354cca4b0a4b92 100644 (file)
@@ -55,11 +55,11 @@ struct table_cell
 
     unsigned int options;       /* TAB_*. */
     char *text;                 /* A paragraph of text. */
-
-    /* Optional footnote(s). */
+    char **subscripts;
+    size_t n_subscripts;
+    char *superscript;
     const struct footnote **footnotes;
     size_t n_footnotes;
-
     const struct area_style *style;
   };