diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2021-09-27 11:19:24 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2021-10-20 18:22:47 +0200 |
commit | cc6be9c3577168805ec34b2d396e63361012282b (patch) | |
tree | 7dc794b08a1a6a786d540516c623cb1eebfb1863 /psi/iutil.c | |
parent | Import Ghostscript 9.54 (diff) | |
download | ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.gz ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.tar.bz2 ghostscript-gpl-patches-cc6be9c3577168805ec34b2d396e63361012282b.zip |
Import Ghostscript 9.55ghostscript-9.55
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'psi/iutil.c')
-rw-r--r-- | psi/iutil.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/psi/iutil.c b/psi/iutil.c index b51abbc9..ea582e6e 100644 --- a/psi/iutil.c +++ b/psi/iutil.c @@ -179,6 +179,7 @@ obj_eq(const gs_memory_t *mem, const ref * pref1, const ref * pref2) return (pref1->value.pdevice == pref2->value.pdevice); case t_struct: case t_astruct: + case t_pdfctx: return (pref1->value.pstruct == pref2->value.pstruct); case t_fontID: /* This is complicated enough to deserve a separate procedure. */ @@ -478,6 +479,9 @@ obj_cvp(const ref * op, byte * str, uint len, uint * prlen, size += 2; data = (const byte *)buf; goto nl; + case t_pdfctx: + data = (const byte *)"-pdfcontext-"; + goto rs; default: other: { |