home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 45
/
Amiga_Dream_45.iso
/
Amiga
/
Magazine
/
Dossier-LaTeX
/
AmiWeb2C.lha
/
source
/
web2c-6.1
/
web2c
/
tex
/
tex.chch
< prev
next >
Wrap
Text File
|
1995-04-04
|
2KB
|
70 lines
Changes for TEX.CH by Andreas Scherer, April 4, 1995
This is a workaround to the assumption of TEX.CH.
@x l.45
@d banner=='This is TeX, Version 3.1415' {printed when \TeX\ starts}
@y
@d banner=='This is TeX, Version 3.14159' {printed when \TeX\ starts}
@z
@x l.47
@d banner=='This is TeX, Version 3.1415' {more is printed later}
@y
@d banner=='This is TeX, Version 3.14159' {more is printed later}
@z
@x l.799
@=#include "texmfmem.h";@>
@y
@=#include "andytexmfmem.h";@>
@z
The following change is to be handled with care. Exclude it if you get
problems with the extra `:' path delimiter. This is necessary for the
Amiga version, but probably won't hurt UNIX anyway.
@x l.946
following structure: If the name contains `\./', the file area
consists of all characters up to and including the final such character;
otherwise the file area is null. If the remaining file name contains
`\..', the file extension consists of all such characters from the last
`\..' to the end, otherwise the file extension is null.
@^system dependencies@>
We can scan such file names easily by using two global variables that keep
track of the occurrences of area and extension delimiters:
@<Glob...@>=
@!area_delimiter:pool_pointer; {the most recent `\./', if any}
@y
following structure: If the name contains `\./' or `\.:', the file area
consists of all characters up to and including the final such character;
otherwise the file area is null. If the remaining file name contains
`\..', the file extension consists of all such characters from the last
`\..' to the end, otherwise the file extension is null.
@^system dependencies@>
We can scan such file names easily by using two global variables that keep
track of the occurrences of area and extension delimiters:
@<Glob...@>=
@!area_delimiter:pool_pointer; {the most recent `\./' or `\.:', if any}
@z
Same warning as for the previous change.
@x l.987
if (c="/") then
@y
if (c="/")or(c=":") then
@z
This is the major modification in the 3.14159 update.
@x l.1821
undump(0)(font_mem_size)(bchar_label[k]);
@y
undump(0)(fmem_ptr-1)(bchar_label[k]);
@z