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

ruby-changes:42217

From: naruse <ko1@a...>
Date: Sat, 26 Mar 2016 06:35:46 +0900 (JST)
Subject: [ruby-changes:42217] naruse:r54291 (trunk): * localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]

naruse	2016-03-26 06:35:39 +0900 (Sat, 26 Mar 2016)

  New Revision: 54291

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54291

  Log:
    * localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]

  Modified files:
    trunk/ChangeLog
    trunk/localeinit.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 54290)
+++ ChangeLog	(revision 54291)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Sat Mar 26 06:34:24 2016  NARUSE, Yui  <naruse@r...>
+
+	* localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]
+
 Fri Mar 25 16:40:48 2016  Martin Duerst  <duerst@i...>
 
 	* test/ruby/enc/test_case_mapping.rb: Additional tests title case;
Index: localeinit.c
===================================================================
--- localeinit.c	(revision 54290)
+++ localeinit.c	(revision 54291)
@@ -89,7 +89,7 @@ enc_find_index(const char *name) https://github.com/ruby/ruby/blob/trunk/localeinit.c#L89
 }
 
 int
-rb_locale_charmap_index(VALUE klass)
+rb_locale_charmap_index(void)
 {
     return (int)locale_charmap(enc_find_index);
 }

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

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