diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-02 16:56:16 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-02 16:56:16 +0000 |
commit | b0e7ce4cdc141d0c840c4f3a2dc8b6d72b1f7f27 (patch) | |
tree | 02f7e6a8613966f19077080bd11e86832f7b1c89 | |
parent | d11340f2533ad8abc7577da338481a35826b7ff0 (diff) | |
download | ruby-b0e7ce4cdc141d0c840c4f3a2dc8b6d72b1f7f27.tar.gz ruby-b0e7ce4cdc141d0c840c4f3a2dc8b6d72b1f7f27.tar.xz ruby-b0e7ce4cdc141d0c840c4f3a2dc8b6d72b1f7f27.zip |
* regex.c (re_match):
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | regex.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -224,6 +224,10 @@ Thu Dec 26 19:22:00 2002 YOSHIDA Kazuhiro <moriq@moriq.com> * win32/setup.mak (-prologue-): moved srcdir macro definition. [ruby-win32:420]. +Wed Dec 25 18:26:44 2002 K.Kosako <kosako@sofnec.co.jp> + + * regex.c (re_match): + Wed Dec 25 16:41:16 2002 Yukihiro Matsumoto <matz@ruby-lang.org> * regex.c (re_match_exec): fix odd \G behavior based on the patch @@ -3476,7 +3476,7 @@ re_match(bufp, string_arg, size, pos, regs) int size, pos; struct re_registers *regs; { - return re_match_exec(bufp, string_arg, size, pos, 0, regs); + return re_match_exec(bufp, string_arg, size, pos, pos, regs); } static int |