Displaying 1 result from an estimated 1 matches for "fontmetricinfo".
1997 Apr 24
2
R-alpha: Postscript bug ...
...)
return 1;
as indicated in the #ifdefs below. I will make a patch file and put
it the archive with the .tgz file.
We seem to have enough problem reports to justfy getting a new 0.50 out
pretty soon in any case.
Ross
- - - replacement - - GetCharInfo - - -
static int GetCharInfo(char *buf, FontMetricInfo *metrics)
{
char *p = buf;
int nchar;
if(!MatchKey(buf, "C "))
return 0;
p = SkipToNextItem(p);
sscanf(p, "%d", &nchar);
if(nchar < 0)
#ifdef OLD
return 0;
#else
return 1;
#endif
p = SkipToNextKey(p);
if(!MatchKey(p, "WX"))
return 0;
p = SkipT...