зеркало из https://github.com/github/ruby.git
* regparse.c (parse_exp): need to separate initialization for bcc32.
[ruby-dev:23169] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5918 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9b11fc8032
Коммит
30c77c8e90
|
@ -1,3 +1,8 @@
|
|||
Mon Mar 8 13:35:32 2004 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||
|
||||
* regparse.c (parse_exp): need to separate initialization for bcc32.
|
||||
[ruby-dev:23169]
|
||||
|
||||
Mon Mar 8 01:05:55 2004 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* lib/webrick/config.rb (WEBrick::Config::HTTP): rename :RequestHander
|
||||
|
|
|
@ -4510,9 +4510,11 @@ parse_exp(Node** np, OnigToken* tok, int term,
|
|||
|
||||
case TK_QUOTE_OPEN:
|
||||
{
|
||||
OnigCodePoint end_op[] = { (OnigCodePoint )MC_ESC, (OnigCodePoint )'E' };
|
||||
OnigCodePoint end_op[2];
|
||||
UChar *qstart, *qend, *nextp;
|
||||
|
||||
end_op[0] = (OnigCodePoint )MC_ESC;
|
||||
end_op[1] = (OnigCodePoint )'E';
|
||||
qstart = *src;
|
||||
qend = find_str_position(end_op, 2, qstart, end, &nextp, env->enc);
|
||||
if (IS_NULL(qend)) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче