output: Drop TAB_FIX and the idea of a configurable fixed-width font.
[pspp] / src / output / html.c
index 9f9fc2db89df9804650921c282ddb5a650f58978..f731686ce78711ab1dc0fdfaf7da6b7a2701127a 100644 (file)
@@ -518,13 +518,8 @@ html_put_table_cell_text (struct html_driver *html,
                           const struct table_cell *cell)
 {
   const char *s = cell->text;
-  if (cell->options & TAB_FIX)
-    escape_tag (html->file, "tt", s, "&nbsp;", "<br>");
-  else
-    {
-      s += strspn (s, CC_SPACES);
-      escape_string (html->file, s, " ", "<br>");
-    }
+  s += strspn (s, CC_SPACES);
+  escape_string (html->file, s, " ", "<br>");
 
   if (cell->n_subscripts)
     {