diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2009-05-27 13:36:42 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2009-05-27 13:36:42 +0000 |
commit | a26d67f7f3f19cd6cbc3d16a94bc75a4513f09df (patch) | |
tree | 3cc0fc448d632b6a70ef13c799bd30759a132f01 /Build/source/texk/web2c/mplibdir/psout.w | |
parent | 548c801baf05f4a158b42c8de28378a2a44bfa89 (diff) |
Here are the sources for metapost 1.201
git-svn-id: svn://tug.org/texlive/trunk@13493 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/mplibdir/psout.w')
-rw-r--r-- | Build/source/texk/web2c/mplibdir/psout.w | 8 |
1 files changed, 4 insertions, 4 deletions
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; |