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

ruby-changes:43524

From: ngoto <ko1@a...>
Date: Wed, 6 Jul 2016 22:26:57 +0900 (JST)
Subject: [ruby-changes:43524] ngoto:r55597 (trunk): enc/iso_8859_14.c: Fix compile error by old version of fcc on Solaris 10.

ngoto	2016-07-06 22:26:53 +0900 (Wed, 06 Jul 2016)

  New Revision: 55597

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

  Log:
    enc/iso_8859_14.c: Fix compile error by old version of fcc on Solaris 10.
    [Bug #12559]

  Modified files:
    trunk/enc/iso_8859_14.c
Index: enc/iso_8859_14.c
===================================================================
--- enc/iso_8859_14.c	(revision 55596)
+++ enc/iso_8859_14.c	(revision 55597)
@@ -250,7 +250,7 @@ case_map (OnigCaseFoldType* flagP, const https://github.com/ruby/ruby/blob/trunk/enc/iso_8859_14.c#L250
 	code = 's';
       }
     }
-    //else if (code==0xAA || code==0xBA) ;
+    /* else if (code==0xAA || code==0xBA) ; */
     else if ((EncISO_8859_14_CtypeTable[code] & BIT_CTYPE_UPPER)
 	     && (flags & (ONIGENC_CASE_DOWNCASE|ONIGENC_CASE_FOLD))) {
       flags |= ONIGENC_CASE_MODIFIED;

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

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