* 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:
parent
9222f534cf
commit
499c4e6120
@ -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>
|
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
|
WEBrick. This makes file lib/xmlrpc/httpserver.rb obsolete (at least it is
|
||||||
no further used by the XML-RPC library).
|
no further used by the XML-RPC library).
|
||||||
|
|
||||||
Mon Jul 11 02:50:23 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
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
|
mistook to merge the patch of [ruby-dev:26235] at
|
||||||
revision 1.11.
|
revision 1.11.
|
||||||
|
|
||||||
|
@ -2361,7 +2361,7 @@ fetch_escaped_value(UChar** src, UChar* end, ScanEnv* env)
|
|||||||
if (c == MC_ESC(enc)) {
|
if (c == MC_ESC(enc)) {
|
||||||
v = fetch_escaped_value(&p, end, env);
|
v = fetch_escaped_value(&p, end, env);
|
||||||
if (v < 0) return v;
|
if (v < 0) return v;
|
||||||
c = (OnigCodePoint )v;
|
c = (OnigCodePoint )(v & 0x9f);
|
||||||
}
|
}
|
||||||
else if (c == '?')
|
else if (c == '?')
|
||||||
c = 0177;
|
c = 0177;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user