diff options
author | wlemb <wlemb> | 2003-02-11 08:49:48 +0000 |
---|---|---|
committer | wlemb <wlemb> | 2003-02-11 08:49:48 +0000 |
commit | 5f2f6ccaba8c9b656bc74ed3bceceaa2f0500cfb (patch) | |
tree | 2930143ed6a08572e7647acc5731d33746071f70 /src/preproc/pic/troff.cc | |
parent | 82874da065a6be8c49fe85d54edf0f04969aa8f9 (diff) | |
download | groff-5f2f6ccaba8c9b656bc74ed3bceceaa2f0500cfb.tar.gz |
* doc/groff.texinfo: Improve documentation of `ad'.
Document that \D'f...' is dependent on the horizontal resolution.
* man/groff_diff.man: Improve documentation of \D'f...'.
* src/preproc/grn/hgraph.cc (HGPrintElt) <POLYGON>: Don't emit
compensating \h'...' for \D'f ...' since the latter no longer moves
current position.
* src/preproc/pic/troff.cc (troff_output::set_fill): Ditto.
Diffstat (limited to 'src/preproc/pic/troff.cc')
-rw-r--r-- | src/preproc/pic/troff.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/preproc/pic/troff.cc b/src/preproc/pic/troff.cc index 7ee7293f..087e43e4 100644 --- a/src/preproc/pic/troff.cc +++ b/src/preproc/pic/troff.cc @@ -1,5 +1,5 @@ // -*- C++ -*- -/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002 +/* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. Written by James Clark (jjc@jclark.com) @@ -478,7 +478,7 @@ void troff_output::line_thickness(double p) void troff_output::set_fill(double f) { if (driver_extension_flag && f != last_fill) { - printf("\\D'f %du'\\h'%du'\n.sp -1\n", int(f*FILL_MAX), -int(f*FILL_MAX)); + printf("\\D'f %du'\n.sp -1\n", int(f*FILL_MAX)); last_fill = f; } if (last_filled) { |