mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix variable name.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18558 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a14d5eb09b
commit
279e612973
1 changed files with 4 additions and 4 deletions
|
@ -65,12 +65,12 @@ rb_crlf_newline = {
|
|||
};
|
||||
|
||||
<%
|
||||
map_crlf = {}
|
||||
map_crlf["{00-09,0b-ff}"] = :nomap
|
||||
map_crlf["0a"] = "0d"
|
||||
map_cr = {}
|
||||
map_cr["{00-09,0b-ff}"] = :nomap
|
||||
map_cr["0a"] = "0d"
|
||||
%>
|
||||
|
||||
<%= transcode_generate_node(ActionMap.parse(map_crlf), "cr_newline") %>
|
||||
<%= transcode_generate_node(ActionMap.parse(map_cr), "cr_newline") %>
|
||||
|
||||
static const rb_transcoder
|
||||
rb_cr_newline = {
|
||||
|
|
Loading…
Reference in a new issue