diff options
author | Robin Watts <Robin.Watts@artifex.com> | 2022-01-21 11:07:03 +0000 |
---|---|---|
committer | Robin Watts <Robin.Watts@artifex.com> | 2022-01-21 13:24:44 +0000 |
commit | 3ed3f5b01ebbe9106ff8c08d6acb29a789e63288 (patch) | |
tree | a1d791e3e074a3712f7c322e417d040738f93350 /xps | |
parent | 6f53ab7da8baf5322236fb2a84e34204cfcc48e2 (diff) | |
download | ghostpdl-3ed3f5b01ebbe9106ff8c08d6acb29a789e63288.tar.gz |
Bug 693376: Remove 2 vestigial debugging variables.
It seems xps_doc_trace and xps_zip_trace are never actually used
other than to be set.
Diffstat (limited to 'xps')
-rw-r--r-- | xps/xpstop.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/xps/xpstop.c b/xps/xpstop.c index e3d07b5e4..35f677a5d 100644 --- a/xps/xpstop.c +++ b/xps/xpstop.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001-2021 Artifex Software, Inc. +/* Copyright (C) 2001-2022 Artifex Software, Inc. All Rights Reserved. This software is provided AS-IS with no warranty, either express or @@ -31,9 +31,6 @@ #include <assert.h> -int xps_zip_trace = 0; -int xps_doc_trace = 0; - static int xps_install_halftone(xps_context_t *ctx, gx_device *pdevice); #define XPS_PARSER_MIN_INPUT_SIZE (8192 * 4) @@ -196,11 +193,6 @@ xps_impl_init_job(pl_interp_implementation_t *impl, int true_val = 1; gs_memory_t* mem = ctx->memory; - if (gs_debug_c('|')) - xps_zip_trace = 1; - if (gs_debug_c('|')) - xps_doc_trace = 1; - ctx->font_table = xps_hash_new(ctx); ctx->colorspace_table = xps_hash_new(ctx); |