summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/tex-glyph.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-03-16 15:54:32 +0000
committerKarl Berry <karl@freefriends.org>2018-03-16 15:54:32 +0000
commite69e90912037ff24c42325a1b87022ceef0066cf (patch)
treecf7a16f7d2a8593277af15dacfb80a5d49512892 /Build/source/texk/kpathsea/tex-glyph.h
parent3e82729e7e1d522082a5971d6232aa53a9baead6 (diff)
distinguish glyph source being fallback resolutions from fallback font
git-svn-id: svn://tug.org/texlive/trunk@46982 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/tex-glyph.h')
-rw-r--r--Build/source/texk/kpathsea/tex-glyph.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/tex-glyph.h b/Build/source/texk/kpathsea/tex-glyph.h
index 0864bb35423..ac3954bd3b4 100644
--- a/Build/source/texk/kpathsea/tex-glyph.h
+++ b/Build/source/texk/kpathsea/tex-glyph.h
@@ -1,6 +1,6 @@
/* tex-glyph.h: look for a TeX glyph font (GF or PK).
- Copyright 1993, 2008, 2009, 2011 Karl Berry.
+ Copyright 1993, 2008, 2009, 2011, 2018 Karl Berry.
Copyright 1999, 2005 Olaf Weber.
This library is free software; you can redistribute it and/or
@@ -26,13 +26,14 @@
extern "C" {
#endif
-/* This type describes the origination of a glyph font. */
+/* This type describes the origin of a glyph font. */
typedef enum
{
kpse_glyph_source_normal, /* the searched-for font: already existed */
kpse_glyph_source_alias, /* : was an alias for an existing file */
kpse_glyph_source_maketex, /* : was created on the fly */
+ kpse_glyph_source_fallback_res, /* : found at fallback resolutions */
kpse_glyph_source_fallback /* : wasn't found, but the fallback font was */
} kpse_glyph_source_type;