diff options
| -rw-r--r-- | table.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -1724,6 +1724,10 @@ renderTable(struct table *t, int max_width, struct html_feed_environ *h_env)      if (max_width < rulewidth)  	max_width = rulewidth; +#define MAX_TABWIDTH 10000 +    if (max_width > MAX_TABWIDTH) +	max_width = MAX_TABWIDTH; +      check_maximum_width(t);  #ifdef MATRIX | 
