* regparse.c (fetch_token): don't use // comment.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8e799c3e5b
commit
b790678398
@ -1,3 +1,7 @@
|
||||
Wed Feb 22 10:57:08 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* regparse.c (fetch_token): don't use // comment.
|
||||
|
||||
Wed Feb 22 10:32:11 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* test/mkmf/test_framework.rb: try CoreFoundation framework, than
|
||||
|
@ -3682,7 +3682,7 @@ fetch_token(OnigToken* tok, UChar** src, UChar* end, ScanEnv* env)
|
||||
cnext = PPEEK;
|
||||
if (cnext == '0') {
|
||||
PINC;
|
||||
if (PPEEK_IS(get_name_end_code_point(c))) { // \g<0>, \g'0'
|
||||
if (PPEEK_IS(get_name_end_code_point(c))) { /* \g<0>, \g'0' */
|
||||
PINC;
|
||||
name_end = p;
|
||||
gnum = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user