From a26d67f7f3f19cd6cbc3d16a94bc75a4513f09df Mon Sep 17 00:00:00 2001 From: Taco Hoekwater Date: Wed, 27 May 2009 13:36:42 +0000 Subject: Here are the sources for metapost 1.201 git-svn-id: svn://tug.org/texlive/trunk@13493 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/texk/web2c/mplibdir/psout.w | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Build/source/texk/web2c/mplibdir/psout.w') diff --git a/Build/source/texk/web2c/mplibdir/psout.w b/Build/source/texk/web2c/mplibdir/psout.w index 4f532c38846..9981a81dd0b 100644 --- a/Build/source/texk/web2c/mplibdir/psout.w +++ b/Build/source/texk/web2c/mplibdir/psout.w @@ -1,6 +1,6 @@ -% $Id: psout.w 1017 2009-05-09 16:40:50Z taco $ +% $Id: psout.w 1051 2009-05-25 08:31:54Z taco $ % -% Copyright 2008 Taco Hoekwater. +% Copyright 2008-2009 Taco Hoekwater. % % This program is free software: you can redistribute it and/or modify % it under the terms of the GNU Lesser General Public License as published by @@ -4379,11 +4379,11 @@ static void mp_mark_string_chars (MP mp,font_number f, char *s, size_t l) ; void mp_mark_string_chars (MP mp,font_number f, char *s, size_t l) { integer b; /* |char_base[f]| */ int bc,ec; /* only characters between these bounds are marked */ - char *k; /* an index into string |s| */ + unsigned char *k; /* an index into string |s| */ b=mp->char_base[f]; bc=(int)mp->font_bc[f]; ec=(int)mp->font_ec[f]; - k=s; + k=(unsigned char *)s; while (l-->0){ if ( (*k>=bc)&&(*k<=ec) ) mp->font_info[b+*k].qqqq.b3=mp_used; -- cgit v1.2.3