From 7d3dc0cccbf7b1a1d0a273eb78287bf8bb659fb8 Mon Sep 17 00:00:00 2001 From: Chris Liddell Date: Wed, 18 May 2016 18:35:33 +0100 Subject: 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. --- psi/zfont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'psi/zfont.c') 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)); } -- cgit v1.2.1