* regparse.c (fetch_escaped_value): mask values following \c in

regexp.  fixed: [ruby-dev:26500]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2005-07-10 23:32:33 +00:00
Родитель 9222f534cf
Коммит 499c4e6120
2 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -1,12 +1,17 @@
Mon Jul 11 08:31:29 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
* regparse.c (fetch_escaped_value): mask values following \c in
regexp. fixed: [ruby-dev:26500]
Sun Jul 10 22:18:17 CEST 2005 Michael Neumann <mneumann@ruby-lang.org>
* lib/xmlrpc/server.rb (XMLRPC::Server): Switch from GServer over to
* lib/xmlrpc/server.rb (XMLRPC::Server): Switch from GServer over to
WEBrick. This makes file lib/xmlrpc/httpserver.rb obsolete (at least it is
no further used by the XML-RPC library).
Mon Jul 11 02:50:23 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line):
* lib/webrick/cgi.rb (WEBrick::CGI::Socket#request_line):
mistook to merge the patch of [ruby-dev:26235] at
revision 1.11.

Просмотреть файл

@ -2361,7 +2361,7 @@ fetch_escaped_value(UChar** src, UChar* end, ScanEnv* env)
if (c == MC_ESC(enc)) {
v = fetch_escaped_value(&p, end, env);
if (v < 0) return v;
c = (OnigCodePoint )v;
c = (OnigCodePoint )(v & 0x9f);
}
else if (c == '?')
c = 0177;