diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-05-29 12:20:01 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-05-29 12:20:01 +0000 |
commit | 4287108b8124019865c83c69c97bc453d860f22c (patch) | |
tree | 4ae156be1a974c421366bda6a9efcd2038268d85 /print | |
parent | d345c1d87e3ee4e8ae10a97cb2738229253e7092 (diff) |
Notes
Diffstat (limited to 'print')
-rw-r--r-- | print/dvipdfm/files/patch-psspecial.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/print/dvipdfm/files/patch-psspecial.c b/print/dvipdfm/files/patch-psspecial.c new file mode 100644 index 000000000000..572038289422 --- /dev/null +++ b/print/dvipdfm/files/patch-psspecial.c @@ -0,0 +1,11 @@ +--- psspecial.c.orig Tue May 29 20:02:33 2001 ++++ psspecial.c Tue May 29 20:03:09 2001 +@@ -116,7 +116,7 @@ + p -> yscale = atof(val)/100.0; + break; + case ANGLE: +- p -> rotate = atof(val)/100.0; ++ p -> rotate = atof(val) * M_PI / 180.0; + break; + case LLX: + p -> user_bbox = 1; |