Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / 5.8.0 / Text / TabsWrap / CHANGELOG
CommitLineData
86530b38
AT
1= 2001/09/29
2
3Philip Newton <Philip.Newton@gmx.net> sent in a clean patch that
4added support for defining words differently; that prevents
5Text::Wrap from untainting strings; and that fixes a documentation
6bug.
7
8So that fill.t can be used in the version included in the perl
9distribution, fill.t no longer uses File::Slurp.
10
11Both Sweth Chandramouli <svc@sweth.net> and Drew Degentesh
12<ddegentesh@daed.com> both objected to the automatic unexpand
13that Text::Wrap does on its results. Drew sent a patch which
14has been integrated.
15
16Way back in '97, Joel Earl <jrearl@VNET.IBM.COM> asked that
17it be possible to use a line separator other than \n when
18adding new lines. There is now support for that.
19
20= 2001/01/30
21
22Bugfix by Michael G Schwern <schwern@pobox.com>: don't add extra
23whitespace when working one an array of input (as opposed to a
24single string).
25
26Performance rewrite: use m/\G/ rather than s///.
27
28You can now specify that words that are too long to wrap can simply
29overflow the line. Feature requested by James Hoagland
30<hoagland@SiliconDefense.com> and by John Porter <jdporter@min.net>.
31
32Documentation changes from Rich Bowen <Rich@cre8tivegroup.com>.
33
34= 1998/11/29
35
36Combined Fill.pm into Wrap.pm. It appears there are versions of
37Wrap.pm with fill in them.
38
39= 1998/11/28
40
41Over the last couple of years, many people sent in various
42rewrites of Text::Wrap. I should have done something about
43updating it long ago. If someone wants to take it over from
44me, discuss it in perl-porters. I'll be happy to hand it
45over.
46
47Anyway, I have a bunch of people to thank. I didn't
48use what any of them sent in, but I did take ideas from
49all of them. Many sent in complete new implamentations.
50
51 Ivan Brawley <ibrawley@awadi.com.au>
52
53 Jacqui Caren <Jacqui.Caren@ig.co.uk>
54
55 Jeff Kowalski <jeff.kowalski@autodesk.com>
56
57 Allen Smith <easmith@beatrice.rutgers.edu>
58
59 Sullivan N. Beck <sbeck@cise.ufl.edu>
60
61The end result is a very slight change in the API. There
62is now an additional package variable: $Text::Wrap::huge.
63When $huge is set to 'die' then long words will cause
64wrap() to die. When it is set to 'wrap', long words will
65be wrapped. The default is 'wrap'.
66
67<shout>LONG WORDS WILL NOW BE WRAPPED BY DEFAULT</shout>.
68This is a change in behavior.
69
70At the bottom of Text::Wrap, there was a function (fill())
71sitting there unpublished. There was a note that Tim Pierce
72had a faster version, but a search on CPAN failed to turn it
73up. Text::Fill is now available.
74