search for: skiptonextkey

Displaying 3 results from an estimated 3 matches for "skiptonextkey".

1997 Apr 24
2
R-alpha: Postscript bug ...
...ent - - 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->CharInfo[nchar].WX)); p = SkipToNextKey(p); if(!MatchKey(p, "N ")) return 0; p = SkipToNextKey(p); if(!MatchKey(p, "B ")) return 0; p = SkipToNextI...
1997 Apr 24
0
R-beta: Re: R-0.49 -- '1 bit' patch for postscript bug
...oss *** 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); sscanf(p, "%d", &nchar); ! if(nchar < 0) return 1; p = SkipToNextKey(p); if(!MatchKey(p, "WX")) return 0; =-=-=-=-=...
1997 Apr 24
1
R-alpha: R-0.49 Patch #1
...oss *** 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); sscanf(p, "%d", &nchar); ! if(nchar < 0) return 1; p = SkipToNextKey(p); if(!MatchKey(p, "WX")) return 0; =-=-=-=-=...