summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2004-09-21 19:00:43 +0000
committerBen Harris <bjh21@bjh21.me.uk>2004-09-21 19:00:43 +0000
commit09d5a75c61a3f53f66918b74051af27faca366bb (patch)
treee074bf72c80b439892eeed535b58b8355c23cc77
parentf8c869cc8731d710cb5309f3f10dd51d840ea30c (diff)
downloadhalibut-09d5a75c61a3f53f66918b74051af27faca366bb.zip
halibut-09d5a75c61a3f53f66918b74051af27faca366bb.tar.gz
halibut-09d5a75c61a3f53f66918b74051af27faca366bb.tar.bz2
halibut-09d5a75c61a3f53f66918b74051af27faca366bb.tar.xz
Stupid bug: "t" was leaving the y-coordinate on the stack, which confused
"restore". Quite how GhostScript managed not to give an error on this I don't know. [originally from svn r4565]
-rw-r--r--bk_ps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bk_ps.c b/bk_ps.c
index 8ae49c4..0f8bc99 100644
--- a/bk_ps.c
+++ b/bk_ps.c
@@ -80,7 +80,7 @@ void ps_backend(paragraph *sourceform, keywordlist *keywords,
" /integertype /realtype load def\n"
" /stringtype {show} bind def\n"
"end def\n"
- "/t { tdict begin {dup type exec} forall end } bind def\n");
+ "/t { tdict begin {dup type exec} forall end pop } bind def\n");
fprintf(fp, "%%%%EndResource\n");
fprintf(fp, "%%%%EndProlog\n");