summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/type0.c
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2014-07-25 13:56:26 +0000
committerKhaled Hosny <khaledhosny@eglug.org>2014-07-25 13:56:26 +0000
commitc953c51fc011990ac2c82ef8b88f7acf33781d2d (patch)
tree79f870e690865cbb340d25c9a390ba46ecce91c3 /Build/source/texk/dvipdfm-x/type0.c
parent9adf1abc0cf6efef23eeefc44daa5376c1ceb6db (diff)
Revert "texk/dvipdfm-x: Support CID-keyed OpenType: Avoid compiler warnings"
This reverts commit ad3c9243dfdb9c12ecde97f7846bcd23fe5a5878. git-svn-id: svn://tug.org/texlive/trunk@34716 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/type0.c')
-rw-r--r--Build/source/texk/dvipdfm-x/type0.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/Build/source/texk/dvipdfm-x/type0.c b/Build/source/texk/dvipdfm-x/type0.c
index 61785509c0c..b74b3f27e02 100644
--- a/Build/source/texk/dvipdfm-x/type0.c
+++ b/Build/source/texk/dvipdfm-x/type0.c
@@ -153,8 +153,7 @@ Type0Font_clean (Type0Font *font)
/* PLEASE FIX THIS */
#include "tt_cmap.h"
-static pdf_obj *
-Type0Font_create_ToUnicode_stream(Type0Font *font) {
+pdf_obj *Type0Font_create_ToUnicode_stream(Type0Font *font) {
CIDFont *cidfont = font->descendant;
char *used = Type0Font_get_usedglyphs(font);
if (!used)
@@ -169,8 +168,7 @@ Type0Font_create_ToUnicode_stream(Type0Font *font) {
/* Try to load ToUnicode CMap from file system first, if not found fallback to
* font CMap reverse lookup. */
-static pdf_obj *
-Type0Font_try_load_ToUnicode_stream(Type0Font *font, char *cmap_base) {
+pdf_obj *Type0Font_try_load_ToUnicode_stream(Type0Font *font, char *cmap_base) {
char *cmap_name = NEW(strlen(cmap_base) + strlen("-UTF-16"), char);
pdf_obj *tounicode;