summaryrefslogtreecommitdiff
path: root/xps
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2021-08-23 16:13:17 +0100
committerChris Liddell <chris.liddell@artifex.com>2021-08-25 13:51:41 +0100
commit87d2055eee9df364166757f0b4aaec23f98e26d3 (patch)
tree3bf3003cfa166e781f5932af380d10150bd88c19 /xps
parent475fdaeb076ee7b1db94da1c1ba0cd19a1831af7 (diff)
downloadghostpdl-87d2055eee9df364166757f0b4aaec23f98e26d3.tar.gz
Remove redundant entries from pl_interp_characteristics_t
The manufacturer, version and build date entries in the pl_interp_characteristics_t were never really used except for version, which was just set to the GS_VERSION. Remove the pointless entries, and use a more direct approach to version reporting.
Diffstat (limited to 'xps')
-rw-r--r--xps/xpstop.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/xps/xpstop.c b/xps/xpstop.c
index 7389fb7e0..e3d07b5e4 100644
--- a/xps/xpstop.c
+++ b/xps/xpstop.c
@@ -54,10 +54,6 @@ struct xps_interp_instance_s
char scratch_name[gp_file_name_sizeof];
};
-/* version and build date are not currently used */
-#define XPS_VERSION NULL
-#define XPS_BUILD_DATE NULL
-
static int
xps_detect_language(const char *s, int len)
{
@@ -75,9 +71,6 @@ xps_impl_characteristics(const pl_interp_implementation_t *pimpl)
{
"XPS",
xps_detect_language,
- "Artifex",
- XPS_VERSION,
- XPS_BUILD_DATE
};
return &xps_characteristics;
}