X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fhtml.c;h=f41a984cf7898f32dee9482de3393eb282546d56;hb=5cab4cf3322f29c0ed7134d23740e07382914f20;hp=05fc08eb62f55dbfe407140a634d82fd4c8748f7;hpb=37f0de7f0ee1870cf5fd4b802be092be844a5b95;p=pspp diff --git a/src/output/html.c b/src/output/html.c index 05fc08eb62..f41a984cf7 100644 --- a/src/output/html.c +++ b/src/output/html.c @@ -561,8 +561,6 @@ html_output_table (struct html_driver *html, const struct table_item *item) /* Output cell contents. */ const char *s = cell.text; - if (cell.options & TAB_EMPH) - fputs ("", html->file); if (cell.options & TAB_FIX) { fputs ("", html->file); @@ -574,8 +572,6 @@ html_output_table (struct html_driver *html, const struct table_item *item) s += strspn (s, CC_SPACES); escape_string (html->file, s, strlen (s), " ", "
"); } - if (cell.options & TAB_EMPH) - fputs ("
", html->file); html_put_footnote_markers (html, cell.footnotes, cell.n_footnotes);