[tex-k] dvipsk
Akira Kakuto
kakuto at fsci.fuk.kindai.ac.jp
Thu Jan 13 14:32:07 CET 2005
> BTW: There is one "#ifndef Omega" in dvipsk/download.c ("/* from ASCII
> jpatch */"). I suppose that either the ifndef is a mistake or this piece of
> code is obsolete.
I think that part should be changed as follows:
Akira
--------------------
#ifndef Omega /* from ASCII jpatch */
for (b=0; b<16; b++)
if(p->bitmap[b] !=0)
non_empty =1;
if(non_empty==0)
return;
#endif
--->
for (b=0; b<16; b++)
if(p->bitmap[b] !=0)
non_empty =1;
#ifdef Omega
if(non_empty==0 && curfnt->codewidth != 2)
#else
if(non_empty==0)
#endif
return;
More information about the tex-k
mailing list