public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
From: Corinna Vinschen <corinna@sourceware.org>
To: cygwin-cvs@sourceware.org
Subject: [newlib-cygwin/main] Cygwin: locales: fix behaviour for @euro locales
Date: Sun, 26 Mar 2023 12:18:16 +0000 (GMT)	[thread overview]
Message-ID: <20230326121816.E768E385841C@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=2d5492453a4aef0b761800cd89fd41b11af6c2d3

commit 2d5492453a4aef0b761800cd89fd41b11af6c2d3
Author:     Corinna Vinschen <corinna@vinschen.de>
AuthorDate: Sun Mar 26 13:06:38 2023 +0200
Commit:     Corinna Vinschen <corinna@vinschen.de>
CommitDate: Sun Mar 26 13:06:38 2023 +0200

    Cygwin: locales: fix behaviour for @euro locales
    
    Latest Windows supports more EU locales than GLibc, so some of the
    @euro locales are not covered by checking the GLibc locale defaults.
    Those locales have no long history, they are all UTF-8.  So just
    check for @euro in the UTF-8 case and set them to ISO-8859-15.
    
    Fixes: 2483e54be852e ("Cygwin: locale: Set default charset from Linux locale -> codeset mapping")
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/nlsfuncs.cc | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/winsup/cygwin/nlsfuncs.cc b/winsup/cygwin/nlsfuncs.cc
index 6821a43c3fb7..b097a6e5fa0a 100644
--- a/winsup/cygwin/nlsfuncs.cc
+++ b/winsup/cygwin/nlsfuncs.cc
@@ -1610,9 +1610,17 @@ __set_charset_from_locale (const char *loc, char *charset)
       cs = "ISO-8859-13";
       break;
     case 1258:
-    default:
       cs = "UTF-8";
       break;
+    default:
+      /* Some (pretty new) EU locales don't exist in GLibc and haven't been
+	 catched above.  Check for @euro modifier again and make these locales
+	 always use ISO-8859-15. */
+      if (modifier && !strcmp (modifier + 1, "euro"))
+	cs = "ISO-8859-15";
+      else
+	cs = "UTF-8";
+      break;
     }
   stpcpy (charset, cs);
 }

                 reply	other threads:[~2023-03-26 12:18 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230326121816.E768E385841C@sourceware.org \
    --to=corinna@sourceware.org \
    --cc=cygwin-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).