summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/cidtype0.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2020-10-27 20:36:12 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2020-10-27 20:36:12 +0000
commitdbdbe71146aeecf5098ffab62d446602f95818a4 (patch)
tree8eeaa583a16bc4e952170eda4aa1732db7dea83b /Build/source/texk/dvipdfm-x/cidtype0.c
parent646b35f09171177bab7e62baaa4a89f63db36be7 (diff)
Fix inverted conditional for writing CIDSet. (S. Hirata)
git-svn-id: svn://tug.org/texlive/trunk@56780 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/cidtype0.c')
-rw-r--r--Build/source/texk/dvipdfm-x/cidtype0.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/dvipdfm-x/cidtype0.c b/Build/source/texk/dvipdfm-x/cidtype0.c
index 6e78cefdda9..a1eb757a799 100644
--- a/Build/source/texk/dvipdfm-x/cidtype0.c
+++ b/Build/source/texk/dvipdfm-x/cidtype0.c
@@ -754,7 +754,7 @@ CIDFont_type0_dofont (pdf_font *font)
if (dpx_conf.verbose_level > 1)
MESG("[%u/%u glyphs][%ld bytes]", num_glyphs, cs_count, destlen);
- if (pdf_check_version(2, 0) >= 0) {
+ if (pdf_check_version(2, 0) < 0) {
CIDFont_type0_add_CIDSet(font, used_chars, last_cid);
}
@@ -1441,7 +1441,7 @@ CIDFont_type0_t1cdofont (pdf_font *font)
if (dpx_conf.verbose_level > 1)
MESG("[%u glyphs][%ld bytes]", num_glyphs, destlen);
- if (pdf_check_version(2, 0) >= 0) {
+ if (pdf_check_version(2, 0) < 0) {
CIDFont_type0_add_CIDSet(font, used_chars, last_cid);
}
@@ -2110,7 +2110,7 @@ CIDFont_type0_t1dofont (pdf_font *font)
cff_close(cffont);
- if (pdf_check_version(2, 0) >= 0) {
+ if (pdf_check_version(2, 0) < 0) {
CIDFont_type0_add_CIDSet(font, used_chars, last_cid);
}