X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Fpostscript.c;h=f737baea2ff9183f1daffacb8e6c94212996a3c4;hb=04bf0e1fed86a5dc9032f2fc8d89ed6217b566e1;hp=bd7a088a07e3d14a7e473072dfbdafd609e9dd1a;hpb=97d4f38945476834fd7fce612b663f19f2b291f8;p=pspp diff --git a/src/output/postscript.c b/src/output/postscript.c index bd7a088a07..f737baea2f 100644 --- a/src/output/postscript.c +++ b/src/output/postscript.c @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000, 2006 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -47,7 +46,6 @@ #include "minmax.h" #include "output.h" #include "size_max.h" -#include "strsep.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -109,8 +107,7 @@ struct ps_driver_ext struct font *fonts[OUTP_FONT_CNT]; int last_font; /* Index of last font set with setfont. */ - } -ps_driver_ext; + }; /* Transform logical y-ordinate Y into a page ordinate. */ #define YT(Y) (this->length - (Y)) @@ -271,7 +268,7 @@ enum }; /* All the options that the PostScript driver supports. */ -static struct outp_option option_tab[] = +static const struct outp_option option_tab[] = { {"output-file", output_file_arg,0}, {"paper-size", paper_size_arg, 0}, @@ -435,7 +432,7 @@ find_ps_file (const char *name) else { char *base_name = xasprintf ("psfonts/%s", name); - char *file_name = fn_search_path (base_name, config_path, NULL); + char *file_name = fn_search_path (base_name, config_path); free (base_name); return file_name; } @@ -1423,11 +1420,12 @@ reencode_font (struct outp_driver *this, struct font *font) fputs ("] RF\n", x->file); if (freaderror (file) != 0) - error (errno, 0, "closing Postscript encoding \"%s\"", font->encoding_fn); + error (errno, 0, _("closing Postscript encoding \"%s\""), + font->encoding_fn); } /* PostScript driver class. */ -struct outp_class postscript_class = +const struct outp_class postscript_class = { "postscript", 0,