summaryrefslogtreecommitdiff
path: root/src/preproc/tbl/main.cc
diff options
context:
space:
mode:
authorwlemb <wlemb>2001-08-10 22:20:47 +0000
committerwlemb <wlemb>2001-08-10 22:20:47 +0000
commit53b5abaf04f16b21b2358c6848d3264a1ebdd37e (patch)
tree70ef1e7426818e4b910c2a35f7b960c408f6f9dd /src/preproc/tbl/main.cc
parent5559a2d8e74e6a83aa23a10cc3f3b146773fded7 (diff)
downloadgroff-53b5abaf04f16b21b2358c6848d3264a1ebdd37e.tar.gz
Intergrated pic2graph, contributed by Eric S. Raymond.
* contrib/pic2graph/{Makefile.sub, pic2graph.sh, pic2graph.man}: New files. * Makefile.in, NEWS: Updated. * src/preproc/tbl/tbl.man: Revised. * src/preproc/tbl/tbl.man: Extended to cover all tbl features. * src/preproc/tbl/main.cc (process_data): Fix recognition of .lf requests. * Makefile.sub (configure): Depend on configure.ac, not configure.in. * INSTALL.gen: Upgrade to autoconf 2.52's INSTALL. * src/utils/afmtodit/afmtodit.man, src/roff/groff/groff.man: Minor fixes.
Diffstat (limited to 'src/preproc/tbl/main.cc')
-rw-r--r--src/preproc/tbl/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/preproc/tbl/main.cc b/src/preproc/tbl/main.cc
index b1b14a71..45e25a03 100644
--- a/src/preproc/tbl/main.cc
+++ b/src/preproc/tbl/main.cc
@@ -1385,7 +1385,7 @@ table *process_data(table_input &in, format *f, options *opt)
f = newf;
}
if (line.length() >= 3
- && line[0] == '.' && line[1] == 'f' && line[2] == 'f') {
+ && line[0] == '.' && line[1] == 'l' && line[2] == 'f') {
line += '\0';
interpret_lf_args(line.contents() + 3);
}