search for: eolian1

Displaying 1 result from an estimated 1 matches for "eolian1".

Did you mean: enliang
2000 Jul 01
0
margins with postscript device
...; on the bottom (left if horizontal==T) and 1/8" on the top (or right). I've also made a quick hack for the postscript device that adjust the margins appropriately. Maybe other users of inkjet printers who use postscript will find it useful. --- devPS.c Tue May 2 06:18:35 2000 +++ /eolian1/R-1.1.0/src/main/devPS.c Thu Jun 29 16:08:13 2000 @@ -909,6 +909,13 @@ } else { xoff = yoff = 0.0; } + /* HACK for DeskJet printers with 1/2" bottom margin and 1/8" top */ + if(pd->landscape) { + pd->width -= 0.125; xoff += 0.25; + } else { +...