diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-16 06:31:13 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-16 06:31:13 +0000 |
commit | af3ee70e90417fe7f895cb4dbba9a5abd3eb2852 (patch) | |
tree | 869c0778e68ab384fea937dc9bf68440f28e7319 | |
parent | 19cabae1822a666aae2fd90bc616d427968140b1 (diff) | |
download | ruby-af3ee70e90417fe7f895cb4dbba9a5abd3eb2852.tar.gz ruby-af3ee70e90417fe7f895cb4dbba9a5abd3eb2852.tar.xz ruby-af3ee70e90417fe7f895cb4dbba9a5abd3eb2852.zip |
* lib/csv.rb: Change magic comment to US-ASCII in order to
make literals as US-ASCII.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24553 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/csv.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Sun Aug 16 15:25:26 2009 NARUSE, Yui <naruse@ruby-lang.org> + + * lib/csv.rb: Change magic comment to US-ASCII in order to + make literals as US-ASCII. + Sun Aug 16 10:45:10 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * regparse.c (parse_char_class, parse_exp, parse_branch), diff --git a/lib/csv.rb b/lib/csv.rb index 862839a0e..aae94888c 100644 --- a/lib/csv.rb +++ b/lib/csv.rb @@ -1,4 +1,4 @@ -# encoding: UTF-8 +# encoding: US-ASCII # = csv.rb -- CSV Reading and Writing # # Created by James Edward Gray II on 2005-10-31. |