diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 14:34:51 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 14:34:51 +0000 |
| commit | d8bdc6b866187882c5b2058bb5afd0808a18494a (patch) | |
| tree | c59ca6badbc550786c28c8757917a30337037a1f | |
| parent | 5325e1a8d5b128a7d1105abc443b521ac1b74823 (diff) | |
| download | ruby-d8bdc6b866187882c5b2058bb5afd0808a18494a.tar.gz ruby-d8bdc6b866187882c5b2058bb5afd0808a18494a.tar.xz ruby-d8bdc6b866187882c5b2058bb5afd0808a18494a.zip | |
* transcode_data_japanese.c (select_iso_2022_mode): '\e' is not valid.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14612 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | transcode_data_japanese.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 diff --git a/transcode_data_japanese.c b/transcode_data_japanese.c index 223d1586e..860b82422 100644 --- a/transcode_data_japanese.c +++ b/transcode_data_japanese.c @@ -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: |
