X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgroff-font.c;h=af86e784f2ad958849c41509f3bc56de8eae64a2;hb=86968643348c6479634a89929a3094df5ec5f8b1;hp=2787a793c9d35a53c34aa686f7c83b8bad6fd1ba;hpb=b7852df2743416201dc85fd672644799cdd1b7b5;p=pspp diff --git a/src/groff-font.c b/src/groff-font.c index 2787a793c9..af86e784f2 100644 --- a/src/groff-font.c +++ b/src/groff-font.c @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - 02111-1307, USA. */ + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. */ #include #include "font.h" @@ -28,11 +28,15 @@ #include "alloc.h" #include "error.h" #include "filename.h" +#include "getline.h" #include "hash.h" #include "pool.h" #include "str.h" #include "version.h" +#include "gettext.h" +#define _(msgid) gettext (msgid) + int font_number_to_index (int); int space_index; @@ -48,7 +52,7 @@ static void add_kern (struct font_desc * font, int ch1, int ch2, int adjust); /* Typical whitespace characters for tokenizing. */ static const char whitespace[] = " \t\n\r\v"; -/* Some notes on the groff_font(8) manpage: +/* Some notes on the groff_font manpage: DESC file format: A typical PostScript `res' would be 72000, with `hor' and `vert' set to 1 to indicate that all those positions are @@ -62,7 +66,7 @@ static const char whitespace[] = " \t\n\r\v"; /* Reads a Groff font description file and converts it to a usable binary format in memory. Installs the binary format in the global - font table. See groff_font(8) for a description of the font + font table. See groff_font for a description of the font description format supported. Returns nonzero on success. */ struct font_desc * groff_read_font (const char *fn)