summaryrefslogtreecommitdiff
path: root/psi/zfont.c
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2016-05-18 18:35:33 +0100
committerChris Liddell <chris.liddell@artifex.com>2016-05-20 09:20:21 +0100
commit7d3dc0cccbf7b1a1d0a273eb78287bf8bb659fb8 (patch)
tree47860e14d64f4bec7a46791a3f58da02f45ff763 /psi/zfont.c
parentb1b8ec293a199d58742c3ed45c47f249359e3392 (diff)
downloadghostpdl-7d3dc0cccbf7b1a1d0a273eb78287bf8bb659fb8.tar.gz
Remove gs_no_glyph, gs_min_cid_glyph and gs_max_glyph
These were legacy remnants. Replace their remaining uses with the upper case, non-deprecated equivalents.
Diffstat (limited to 'psi/zfont.c')
-rw-r--r--psi/zfont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psi/zfont.c b/psi/zfont.c
index d28777735..6c4f51bf0 100644
--- a/psi/zfont.c
+++ b/psi/zfont.c
@@ -41,7 +41,7 @@ static int setup_unicode_decoder(i_ctx_t *i_ctx_p, ref *Decoding);
bool
zfont_mark_glyph_name(const gs_memory_t *mem, gs_glyph glyph, void *ignore_data)
{
- return (glyph >= gs_c_min_std_encoding_glyph || glyph == gs_no_glyph ? false :
+ return (glyph >= gs_c_min_std_encoding_glyph || glyph == GS_NO_GLYPH ? false :
name_mark_index(mem, (uint) glyph));
}