beta-0.89.2
[luatex.git] / source / texk / web2c / PROJECTS
blob15fa996c8732cdcf6675588f39e8e963df4a4fc5
1 Here are some things left to do.  If you would like to contribute, send
2 mail to me (olaf@infovore.xs4all.nl) first.
4 * Use binary mode for all files (but do obey end-of-line conventions for
5   the specific platforms.
7 * Give TeX more options: 
8   output filename:lineno: msg on error
9   change prompt from `\n*' (for simpler cut-and-paste)
11 * Have bibtex -verbose print full pathnames.
13 * Make TeX--XeT a configure-time or runtime option?
15 * Deal with the configure tests that prevent cross-compilation:
16   - Remove use of schar (in dvicopy, mf, pktogf, and tangle).
17   - Learn endianness at runtime, include both Big and LittleEndian
18     versions in code, call appropriate one.
19   - Figure out what to do about the sizeof long test.
21 * Reallocate memory arrays as needed instead of just allocating once at
22   the beginning.
24 * Possibly use spiff when doing the triptrap comparisons, so acceptable
25   differences can be eliminated.
26   
27 * Make web2c handle fields correctly, i.e., to put the field identifier
28   in the symbol table of the type, instead of the global symbol table. 
29   This would simplify the GFtoDVI change file a fair amount.
31 * Make web2c handle variant records.  This would make the TeX, Metafont,
32   and GFtoDVI change files all simpler.
34 * Implement overflow checking for adding and subtracting dimensions.
35   According to Knuth "a few dozen checks" would be needed (section 104).
36   Knuth calls the chances of it occuring unlikely, but unfortunately you
37   will get a bad DVI file when it does.  The following source demonstrates
38   the problem.
40 \newcount \loopcount
41 \newcount \limit
42 \limit = 3570
43 \hfuzz = \maxdimen
44 \showboxdepth = -\maxdimen
45 \showboxbreadth = -\maxdimen
46 \overfullrule = 0 pt
47 \tracingonline = 1 \scrollmode
48 \loop
49 \message {\the \limit}
50 \setbox 0 = \hbox
51 {\loopcount = 0
52  \loop
53         M%
54  \ifnum \loopcount < \limit
55        \advance \loopcount by 1
56  \repeat
58 \message {\the \wd 0}
59 \advance \limit by 1
60 \iftrue
61 \repeat
62 \end