[前][次][番号順一覧][スレッド一覧]

ruby-changes:7929

From: naruse <ko1@a...>
Date: Mon, 22 Sep 2008 02:52:37 +0900 (JST)
Subject: [ruby-changes:7929] Ruby:r19450 (trunk): * encoding.c (get_default_external): add description.

naruse	2008-09-22 02:52:18 +0900 (Mon, 22 Sep 2008)

  New Revision: 19450

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=19450

  Log:
    * encoding.c (get_default_external): add description.

  Modified files:
    trunk/ChangeLog
    trunk/encoding.c

Index: encoding.c
===================================================================
--- encoding.c	(revision 19449)
+++ encoding.c	(revision 19450)
@@ -1011,7 +1011,8 @@
  *
  * Returns default external encoding.
  *
- * It is initialized by the locale or -E option.
+ * It is initialized by the locale or -E option,
+ * and can't be modified after that.
  */
 static VALUE
 get_default_external(VALUE klass)
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 19449)
+++ ChangeLog	(revision 19450)
@@ -1,3 +1,7 @@
+Mon Sep 22 02:39:05 2008  NARUSE, Yui  <naruse@r...>
+
+	* encoding.c (get_default_external): add description.
+
 Sun Sep 21 21:52:41 2008  Tadayoshi Funaba  <tadf@d...>
 
 	* math.c (math_log): should check argc.
@@ -26,26 +30,26 @@
 
 Sun Sep 21 09:37:57 2008  James Edward Gray II  <jeg2@r...>
 
-  * lib/csv/csv.rb:  Reworked CSV's parser and generator to be m17n.  Data
-    is now parsed in the Encoding it is in without need for translation.
-  * lib/csv/csv.rb:  Improved inspect() messages for better IRb support.
-  * lib/csv/csv.rb:  Fixed header writing bug reported by Dov Murik.
-  * lib/csv/csv.rb:  Use custom separators in parsing header Strings as
-    suggested by Shmulik Regev.
-  * lib/csv/csv.rb:  Added a :write_headers option for outputting headers.
-  * lib/csv/csv.rb:  Handle open() calls in binary mode whenever we can to
-    workaround a Windows issue where line-ending translation can cause an
-    off-by-one error in seeking back to a non-zero starting position after
-    auto-discovery for :row_sep as suggested by Robert Battle.
-  * lib/csv/csv.rb:  Improved the parser to fail faster when fed some forms
-    of invalid CSV that can be detected without reading ahead.
-  * lib/csv/csv.rb:  Added a :field_size_limit option to control CSV's
-    lookahead and prevent the parser from biting off more data than
-    it can chew.
-  * lib/csv/csv.rb:  Added readers for CSV attributes:  col_sep(), row_sep(),
-    quote_char(), field_size_limit(), converters(), unconverted_fields?(),
-    headers(), return_headers?(), write_headers?(), header_converters(),
-    skip_blanks?(), and force_quotes?().
+	* lib/csv/csv.rb:  Reworked CSV's parser and generator to be m17n.  Data
+	  is now parsed in the Encoding it is in without need for translation.
+	* lib/csv/csv.rb:  Improved inspect() messages for better IRb support.
+	* lib/csv/csv.rb:  Fixed header writing bug reported by Dov Murik.
+	* lib/csv/csv.rb:  Use custom separators in parsing header Strings as
+	  suggested by Shmulik Regev.
+	* lib/csv/csv.rb:  Added a :write_headers option for outputting headers.
+	* lib/csv/csv.rb:  Handle open() calls in binary mode whenever we can to
+	  workaround a Windows issue where line-ending translation can cause an
+	  off-by-one error in seeking back to a non-zero starting position after
+	  auto-discovery for :row_sep as suggested by Robert Battle.
+	* lib/csv/csv.rb:  Improved the parser to fail faster when fed some forms
+	  of invalid CSV that can be detected without reading ahead.
+	* lib/csv/csv.rb:  Added a :field_size_limit option to control CSV's
+	  lookahead and prevent the parser from biting off more data than
+	  it can chew.
+	* lib/csv/csv.rb:  Added readers for CSV attributes:  col_sep(), row_sep(),
+	  quote_char(), field_size_limit(), converters(), unconverted_fields?(),
+	  headers(), return_headers?(), write_headers?(), header_converters(),
+	  skip_blanks?(), and force_quotes?().
 	* lib/csv/csv.rb:  Cleaned up code syntax to be more inline with
 	  Ruby 1.9 than 1.8.
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]