diff options
author | kosako <kosako@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-12 15:05:19 +0000 |
---|---|---|
committer | kosako <kosako@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-12 15:05:19 +0000 |
commit | 849eb3113e329a0b8a25670a9191853aa42b5dda (patch) | |
tree | defb2b9208a62f100efda31a9dce17e1415b32c1 /regexec.c | |
parent | 56fdc8da550510678b9ab1617228705ab144bcad (diff) | |
download | ruby-849eb3113e329a0b8a25670a9191853aa42b5dda.tar.gz ruby-849eb3113e329a0b8a25670a9191853aa42b5dda.tar.xz ruby-849eb3113e329a0b8a25670a9191853aa42b5dda.zip |
merge Oniguruma 4.0.1
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ regexec.c - Oniguruma (regular expression library) **********************************************************************/ /*- - * Copyright (c) 2002-2005 K.Kosako <sndgk393 AT ybb DOT ne DOT jp> + * Copyright (c) 2002-2006 K.Kosako <sndgk393 AT ybb DOT ne DOT jp> * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -3351,7 +3351,7 @@ onig_search(regex_t* reg, const UChar* str, const UChar* end, goto end_buf; } } - else if ((reg->anchor & ANCHOR_ANYCHAR_STAR_PL)) { + else if ((reg->anchor & ANCHOR_ANYCHAR_STAR_ML)) { goto begin_position; } } |