diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2015-02-21 19:37:20 +0000 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2015-02-21 19:37:20 +0000 |
commit | 94adc306943103c2c6afbe4ba23f6100395d395b (patch) | |
tree | 007f9c43d2842678e4219174f90b1f304c3866ca | |
parent | f7d78ecd7c5609381bb1a28cfa582663cc1b76ec (diff) |
The word native is superfluous here
git-svn-id: svn://tug.org/texlive/trunk@36341 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/dvipdfm-x/dvi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/dvipdfm-x/dvi.c b/Build/source/texk/dvipdfm-x/dvi.c index 91e83f4db49..16f1a46a85c 100644 --- a/Build/source/texk/dvipdfm-x/dvi.c +++ b/Build/source/texk/dvipdfm-x/dvi.c @@ -942,7 +942,7 @@ dvi_locate_native_font (const char *filename, uint32_t index, fp = fopen(path, "rb"); } if (!fp) { - ERROR("Cannot proceed without the \"native\" font: %s", filename); + ERROR("Cannot proceed without the font: %s", filename); } need_more_fonts(1); @@ -952,7 +952,7 @@ dvi_locate_native_font (const char *filename, uint32_t index, mrec = pdf_lookup_fontmap_record(fontmap_key); if (mrec == NULL) { if (pdf_load_native_font(path, index, layout_dir, extend, slant, embolden) == -1) { - ERROR("Cannot proceed without the \"native\" font: %s", filename); + ERROR("Cannot proceed without the font: %s", filename); } mrec = pdf_lookup_fontmap_record(fontmap_key); /* FIXME: would be more efficient if pdf_load_native_font returned the mrec ptr (or NULL for error) |