1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* transcode_data_japanese.c (select_iso_2022_mode): '\e' is not valid.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2007-12-24 14:34:51 +00:00
parent 0c395fbd90
commit 0f064d27b3
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Dec 24 23:32:24 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* transcode_data_japanese.c (select_iso_2022_mode): '\e' is not valid.
Mon Dec 24 23:13:09 2007 GOTOU Yuuzou <gotoyuzo@notwork.org>
* lib/rdoc/diagram.rb (RDoc::Diagram#initialize): use fileuitls

View file

@ -23754,7 +23754,7 @@ static int
select_iso_2022_mode(char **out_pos, int new_mode)
{
char *out_p = *out_pos;
*out_p++ = '\e';
*out_p++ = '\x1b';
switch (new_mode>>8)
{
case ISO_2022_GZD4: