Displaying 3 results from an estimated 3 matches for "matchkey".
Did you mean:
matches
1997 Apr 24
0
R-beta: Re: R-0.49 -- '1 bit' patch for postscript bug
...;> Apply this patch within the R-0.49 directory.
>>
>> The patch is also at the auckland.ftp site and soon at mirrors.
>> Ross
*** src/unix/PostScript.c.orig Thu Apr 24 21:28:27 1997
--- src/unix//PostScript.c Thu Apr 24 21:28:51 1997
***************
*** 160,166 ****
if(!MatchKey(buf, "C ")) return 0;
p = SkipToNextItem(p);
sscanf(p, "%d", &nchar);
! if(nchar < 0) return 0;
p = SkipToNextKey(p);
if(!MatchKey(p, "WX")) return 0;
--- 160,166 ----
if(!MatchKey(buf, "C ")) return 0;
p = SkipToNextItem(p);
s...
1997 Apr 24
1
R-alpha: R-0.49 Patch #1
...dy done it by hand ignore this.
Apply this patch within the R-0.49 directory.
The patch is also at the auckland.ftp site and soon at mirrors.
Ross
*** src/unix/PostScript.c.orig Thu Apr 24 21:28:27 1997
--- src/unix//PostScript.c Thu Apr 24 21:28:51 1997
***************
*** 160,166 ****
if(!MatchKey(buf, "C ")) return 0;
p = SkipToNextItem(p);
sscanf(p, "%d", &nchar);
! if(nchar < 0) return 0;
p = SkipToNextKey(p);
if(!MatchKey(p, "WX")) return 0;
--- 160,166 ----
if(!MatchKey(buf, "C ")) return 0;
p = SkipToNextItem(p);
s...
1997 Apr 24
2
R-alpha: Postscript bug ...
...e 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 = SkipToNextItem(p);
sscanf(p, "%hd", &(metrics...