X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=backend%2Fdvi%2Fmdvi-lib%2Ftfmfile.c;h=cab4f19dfa76fc72f79c1d06bb4b84dee5bbc80e;hb=03a4afa9aeab342a63530db46888e405ea1c8afc;hp=1ea1b1382457612f750fe61fdef5bbbbd5343452;hpb=13a06349251874bd35d2f03c3fc93217cee749a2;p=evince.git diff --git a/backend/dvi/mdvi-lib/tfmfile.c b/backend/dvi/mdvi-lib/tfmfile.c index 1ea1b138..cab4f19d 100644 --- a/backend/dvi/mdvi-lib/tfmfile.c +++ b/backend/dvi/mdvi-lib/tfmfile.c @@ -17,6 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include #include /* tex-file.h needs this */ #include #include @@ -87,7 +88,7 @@ int afm_load_file(const char *filename, TFMInfo *info) fclose(in); if(status != ok) { - error(_("%s: Error reading AFM data\n"), filename); + mdvi_error(_("%s: Error reading AFM data\n"), filename); return -1; } @@ -177,8 +178,8 @@ int tfm_load_file(const char *filename, TFMInfo *info) /* allocate a word-aligned buffer to hold the file */ size = 4 * ROUND(st.st_size, 4); if(size != st.st_size) - warning(_("Warning: TFM file `%s' has suspicious size\n"), - filename); + mdvi_warning(_("Warning: TFM file `%s' has suspicious size\n"), + filename); tfm = (Uchar *)mdvi_malloc(size); if(fread(tfm, st.st_size, 1, in) != 1) goto error; @@ -227,8 +228,8 @@ int tfm_load_file(const char *filename, TFMInfo *info) /* get the coding scheme */ i = n = msget1(ptr); if(n < 0 || n > 39) { - warning(_("%s: font coding scheme truncated to 40 bytes\n"), - filename); + mdvi_warning(_("%s: font coding scheme truncated to 40 bytes\n"), + filename); n = 39; } memcpy(info->coding, ptr, n); @@ -287,7 +288,7 @@ int tfm_load_file(const char *filename, TFMInfo *info) return 0; bad_tfm: - error(_("%s: File corrupted, or not a TFM file\n"), filename); + mdvi_error(_("%s: File corrupted, or not a TFM file\n"), filename); error: if(tfm) mdvi_free(tfm); if(in) fclose(in); @@ -508,8 +509,8 @@ static int ofm_load_file(const char *filename, TFMInfo *info) /* get the coding scheme */ i = n = fsget1(in); if(n < 0 || n > 39) { - warning(_("%s: font coding scheme truncated to 40 bytes\n"), - filename); + mdvi_warning(_("%s: font coding scheme truncated to 40 bytes\n"), + filename); n = 39; } fread(info->coding, 39, 1, in); @@ -586,7 +587,7 @@ static int ofm_load_file(const char *filename, TFMInfo *info) return 0; bad_tfm: - error(_("%s: File corrupted, or not a TFM file\n"), filename); + mdvi_error(_("%s: File corrupted, or not a TFM file\n"), filename); fclose(in); return -1; }