diff options
author | Karl Berry <karl@freefriends.org> | 2009-10-06 00:23:51 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-10-06 00:23:51 +0000 |
commit | ba17b2ea7260e7c0f859347a24ddc83f0e5e697f (patch) | |
tree | ead00cccf337348096a7bc85c5233b1bee673177 /Master/tlpkg/TeXLive/TLPOBJ.pm | |
parent | 00a724a948c9a799534430982a732a5b27ccacba (diff) |
TeXCatalogue: less debugging
TLPSRC, TLPOBJ: set format_lines_per_page on the right file handle
tl-update-tlpdb: rename a couple options, mess with doc
tl-update-bindir: cygwin location
git-svn-id: svn://tug.org/texlive/trunk@15651 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLPOBJ.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLPOBJ.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLPOBJ.pm b/Master/tlpkg/TeXLive/TLPOBJ.pm index c0c2dcb5066..0a2eae5bcfa 100644 --- a/Master/tlpkg/TeXLive/TLPOBJ.pm +++ b/Master/tlpkg/TeXLive/TLPOBJ.pm @@ -331,10 +331,10 @@ sub writeout { # ugly hack to get rid of use FileHandle; see man perlform #format_name $fd "multilineformat"; select((select($fd),$~ = "multilineformat")[0]); - $= = 99999; # no pages in this format + $fd->format_lines_per_page (99999); # no pages in this format if (defined($self->{'longdesc'})) { $_tmp = "$self->{'longdesc'}"; - write $fd; + write $fd; # use that multilineformat } if (defined($self->{'depends'})) { foreach (@{$self->{'depends'}}) { |