Displaying 1 result from an estimated 1 matches for "charinfo".
1997 Apr 24
2
R-alpha: Postscript bug ...
Jeez I dunno - it compiles perfectly and you guys get excited just because
it doesn't work :-)
I have to admit to being baffled about what happened (I'm SURE this was
working not long ago), but here is a quick fix. The problem is in the
function "GetCharInfo" in the file src/unix/PostScript.c.
The fix is to change the statement
if(nchar < 0)
return 0;
to
if(nchar < 0)
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 ge...