1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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:
naruse 2012-02-22 02:03:56 +00:00
parent 8e799c3e5b
commit b790678398
2 changed files with 5 additions and 1 deletions

View file

@ -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

View file

@ -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;