summaryrefslogtreecommitdiff
path: root/src/preproc
diff options
context:
space:
mode:
authorwlemb <wlemb>2000-05-22 06:21:49 +0000
committerwlemb <wlemb>2000-05-22 06:21:49 +0000
commit086d69cc31f1615c03ddd475241eeed7e5dea4bb (patch)
treef469a96f90bccaf78a7a4a08fa07e76ee5dad796 /src/preproc
parent8b39e1cf736d1c8fc197f37ab1617a4debe0fa99 (diff)
downloadgroff-086d69cc31f1615c03ddd475241eeed7e5dea4bb.tar.gz
* tmac/tmac.an: Added a new command line option `-rSxx' (`xx' can be
10, 11, or 12) to support output with 11pt and 12pt base font sizes. `.SS' now produces a heading with a smaller size than `.SH'. Completely formatted. * doc/groff.texinfo, tmac/groff_man.man, NEWS: Document it. * man/groff.man: Improved table appearance. Use of `eo' request to reduce number of doubled backslashes in macro definitions. Replacing `e' with `(rs'. Other minor fixes. * src/preproc/tbl/main.cc: Insert HTML table end tag before `lf' to have correct line number. * INSTALL: Small improvement. * man/roff.man, tmac/groff_tmac.man: Updates (with corrections by WL).
Diffstat (limited to 'src/preproc')
-rw-r--r--src/preproc/tbl/main.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/preproc/tbl/main.cc b/src/preproc/tbl/main.cc
index 8a559e8d..5ff69e89 100644
--- a/src/preproc/tbl/main.cc
+++ b/src/preproc/tbl/main.cc
@@ -234,9 +234,10 @@ void process_input_file(FILE *fp)
{
table_input input(fp);
process_table(input);
+ if (input.ended())
+ printf(".if '\\*(.T'html' \\X(table-end(\n");
set_troff_location(current_filename, current_lineno);
if (input.ended()) {
- printf(".if '\\*(.T'html' \\X(table-end(\n");
fputs(".TE", stdout);
while ((c = getc(fp)) != '\n') {
if (c == EOF) {