diff options
author | Alex Cherepanov <alex.cherepanov@artifex.com> | 2012-04-25 00:08:53 -0400 |
---|---|---|
committer | Alex Cherepanov <alex.cherepanov@artifex.com> | 2012-04-25 00:08:53 -0400 |
commit | 70d513095fba13b20e6bba5bb77805b5233028d1 (patch) | |
tree | eabd052c70c95653ee11b48393e8a2076fc0eb5a | |
parent | f1830075608195e2976751303d220fda3f796abb (diff) |
Bug 692243: Fix a typo in absolute value comparison.
-rw-r--r-- | gs/Resource/Init/pdf_ops.ps | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gs/Resource/Init/pdf_ops.ps b/gs/Resource/Init/pdf_ops.ps index 4d3b4e191..6c8f5925b 100644 --- a/gs/Resource/Init/pdf_ops.ps +++ b/gs/Resource/Init/pdf_ops.ps @@ -805,7 +805,7 @@ end readonly def % if the CTM had been unity. currentlinewidth dup matrix defaultmatrix idtransform TextSaveMatrix dtransform - abs 2 copy abs eq { + abs 2 copy exch abs eq { pop }{ % non-square scaling reduces to Text matrix in pdfwrite , so @@ -821,7 +821,7 @@ end readonly def % if the CTM had been unity. currentlinewidth dup matrix defaultmatrix idtransform TextSaveMatrix dtransform - abs 2 copy abs eq { + abs 2 copy exch abs eq { pop }{ % non-square scaling reduces to Text matrix in pdfwrite , so @@ -844,7 +844,7 @@ end readonly def { gsave 1 .settextrenderingmode currentlinewidth dup matrix defaultmatrix idtransform TextSaveMatrix dtransform - abs 2 copy abs eq { + abs 2 copy exch abs eq { pop }{ % non-square scaling reduces to Text matrix in pdfwrite , so @@ -857,7 +857,7 @@ end readonly def { gsave 2 .settextrenderingmode currentlinewidth dup matrix defaultmatrix idtransform TextSaveMatrix dtransform - abs 2 copy abs eq { + abs 2 copy exch abs eq { pop }{ % non-square scaling reduces to Text matrix in pdfwrite , so @@ -885,7 +885,7 @@ end readonly def % not signs. currentlinewidth dup matrix defaultmatrix idtransform TextSaveMatrix dtransform - abs 2 copy abs eq { + abs 2 copy exch abs eq { pop }{ % non-square scaling reduces to Text matrix in pdfwrite , so |