From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay1-d.mail.gandi.net (relay1-d.mail.gandi.net [217.70.183.193]) by sourceware.org (Postfix) with ESMTPS id 8EA42385BF81 for ; Fri, 8 May 2020 20:14:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 8EA42385BF81 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=pounceofcats.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=briand@pounceofcats.com X-Originating-IP: 91.207.175.102 Received: from quarternote (unknown [91.207.175.102]) (Authenticated sender: briand@pounceofcats.com) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 660E324000A; Fri, 8 May 2020 20:14:19 +0000 (UTC) Date: Fri, 8 May 2020 13:14:17 -0700 From: To: Marco Atzeri via Cygwin Subject: Re: incorrect text mode graphic character display Message-ID: <20200508131417.338a6649@quarternote> In-Reply-To: <27089b5c-ec97-8691-8780-753592d3ff03@gmail.com> References: <20200507081832.54306879@quarternote> <27089b5c-ec97-8691-8780-753592d3ff03@gmail.com> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=0.4 required=5.0 tests=BAYES_00, BODY_8BITS, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 May 2020 20:14:25 -0000 On Fri, 8 May 2020 20:41:55 +0200 Marco Atzeri via Cygwin wrote: > Am 07.05.2020 um 17:18 schrieb briand@pounceofcats.com: > > Hi, > >=20 > > Doesn't matter what terminal i'm using, I'm having a problem with the w= ay graphic characters print. > > Julia uses unicode output, and will generate output that should look li= ke this: > > =20 > > julia> x=3DDataFrame([(1,2,3), (4,5,6)]) =20 > > 2=C3=973 DataFrame > > =E2=94=82 Row =E2=94=82 1 =E2=94=82 2 =E2=94=82 3 =E2=94=82 > > =E2=94=82 =E2=94=82 Int64 =E2=94=82 Int64 =E2=94=82 Int64 =E2=94=82 > > =E2=94=9C=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=BC=E2=94= =80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=BC=E2=94=80= =E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=BC=E2=94=80=E2= =94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=A4 > > =E2=94=82 1 =E2=94=82 1 =E2=94=82 2 =E2=94=82 3 =E2=94=82 > > =E2=94=82 2 =E2=94=82 4 =E2=94=82 5 =E2=94=82 6 =E2=94=82 > > =20 >=20 > it works fine for me with > $ uname -svr > CYGWIN_NT-10.0 3.1.4(0.340/5/3) 2020-02-19 08:49 >=20 > both on CMD console and Mintty > without need to disable pcon >=20 > julia> using DataFrames =20 >=20 > julia> x=3DDataFrame([(1,2,3), (4,5,6)]) =20 > 2=C3=973 DataFrame > =E2=94=82 Row =E2=94=82 1 =E2=94=82 2 =E2=94=82 3 =E2=94=82 > =E2=94=82 =E2=94=82 Int64 =E2=94=82 Int64 =E2=94=82 Int64 =E2=94=82 > =E2=94=9C=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=BC=E2=94=80= =E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=BC=E2=94=80=E2= =94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=BC=E2=94=80=E2=94= =80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=80=E2=94=A4 > =E2=94=82 1 =E2=94=82 1 =E2=94=82 2 =E2=94=82 3 =E2=94=82 > =E2=94=82 2 =E2=94=82 4 =E2=94=82 5 =E2=94=82 6 =E2=94=82 >=20 > what type of locale are you using ? > $ echo $LANG > en_US.UTF-8 yes, that's the locale --=20 Brian