Patch intl-fixes for *Unicode Issues Bug #55019
Patch version 2011-06-09 18:50 UTC
Return to Bug #55019 |
Download this patch
Patch Revisions:
Developer: crrodriguez@opensuse.org
Index: ext/intl/grapheme/grapheme_string.c
===================================================================
--- ext/intl/grapheme/grapheme_string.c (revisión: 311981)
+++ ext/intl/grapheme/grapheme_string.c (copia de trabajo)
@@ -665,7 +665,7 @@
/* }}} */
/* {{{ grapheme_extract_charcount_iter - grapheme iterator for grapheme_extract MAXCHARS */
-inline int32_t
+static inline int32_t
grapheme_extract_charcount_iter(UBreakIterator *bi, int32_t csize, unsigned char *pstr, int32_t str_len)
{
int pos = 0, prev_pos = 0;
@@ -702,7 +702,7 @@
/* }}} */
/* {{{ grapheme_extract_bytecount_iter - grapheme iterator for grapheme_extract MAXBYTES */
-inline int32_t
+static inline int32_t
grapheme_extract_bytecount_iter(UBreakIterator *bi, int32_t bsize, unsigned char *pstr, int32_t str_len)
{
int pos = 0, prev_pos = 0;
@@ -736,7 +736,7 @@
/* }}} */
/* {{{ grapheme_extract_count_iter - grapheme iterator for grapheme_extract COUNT */
-inline int32_t
+static inline int32_t
grapheme_extract_count_iter(UBreakIterator *bi, int32_t size, unsigned char *pstr, int32_t str_len)
{
int pos = 0, next_pos = 0;
|