summaryrefslogtreecommitdiff
path: root/regex.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-25 01:08:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-25 01:08:45 +0000
commit76cdd41111c40b9658243b885296bfd45f8b14b7 (patch)
tree8d29c3b85c8b26019b2264c1aa725b4a8f84b2af /regex.c
parent6d182fc8bf22ca3d8401dc2d3a9b1d465c045069 (diff)
* regex.c (mbc_startpos_func): shoud be static.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2265 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regex.c b/regex.c
index 3f38757656..cef0a855e2 100644
--- a/regex.c
+++ b/regex.c
@@ -469,7 +469,7 @@ re_set_syntax(syntax)
((current_mbctype != MBCTYPE_UTF8) ? ((c<0x100) ? (c) : (((c)>>8)&0xff)) : utf8_firstbyte(c))
typedef unsigned int (*mbc_startpos_func_t) _((const char *string, unsigned int pos));
-const mbc_startpos_func_t mbc_startpos_func[];
+static const mbc_startpos_func_t mbc_startpos_func[];
#define mbc_startpos(start, pos) (*mbc_startpos_func[current_mbctype])((start), (pos))
static unsigned int
@@ -4573,7 +4573,7 @@ utf8_startpos(string, pos)
return i + w;
}
-const mbc_startpos_func_t mbc_startpos_func[4] = {
+static const mbc_startpos_func_t mbc_startpos_func[4] = {
asc_startpos, euc_startpos, sjis_startpos, utf8_startpos
};