X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Funigbrk%2Fu32-grapheme-breaks.c;h=09dc238c8bfa5e48e23ebd65da18148bdb372f2d;hb=385b9f9d098b636827593dbd0f813c2b6858b308;hp=358fd067b129c52d3788dcff70237605d287c038;hpb=221d8efe25aa7f053d3a2d2dedb4f98886500784;p=gnulib.git diff --git a/lib/unigbrk/u32-grapheme-breaks.c b/lib/unigbrk/u32-grapheme-breaks.c index 358fd067b..09dc238c8 100644 --- a/lib/unigbrk/u32-grapheme-breaks.c +++ b/lib/unigbrk/u32-grapheme-breaks.c @@ -1,5 +1,5 @@ /* Grapheme cluster breaks function. - Copyright (C) 2010 Free Software Foundation, Inc. + Copyright (C) 2010-2011 Free Software Foundation, Inc. Written by Ben Pfaff , 2010. This program is free software: you can redistribute it and/or modify it @@ -35,7 +35,7 @@ u32_grapheme_breaks (const uint32_t *s, size_t n, char *p) u32_mbtouc (&next, &s[i], 1); - p[i] = uc_is_grapheme_cluster_break (prev, next); + p[i] = uc_is_grapheme_break (prev, next); prev = next; }