From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x42f.google.com (mail-wr1-x42f.google.com [IPv6:2a00:1450:4864:20::42f]) by sourceware.org (Postfix) with ESMTPS id E09C538708A8 for ; Sat, 9 May 2020 07:30:03 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E09C538708A8 Received: by mail-wr1-x42f.google.com with SMTP id g13so4483962wrb.8 for ; Sat, 09 May 2020 00:30:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=jXHPT855vgdpy4Xk8IKNYDGfWMDrTp58YMy6892TDu4=; b=B498CbCTvjGNNZAHGmnZvpbSPGMN6nZvGZjylybf7f5n9Nw+C5DsrrCkM1iIRCmfds mCMO+qiQLncOGZI1Y/5zdyLUbSrWj5+lWtEljGhbfBS9CL2L4IAe+3CYsVJ+XnXdej2t /CVEeGnbzzImccsppNnJwYdHqxn6IneOITaLwtkBXG3ET+hmmUsX2eFV02RKLftULWGL fUBYf5kEG3u3/i+rf6NUlQGF6kTARj9r4CUNBLKmaTNVjiBDGdzOy87EW84TSr7EIvBA rxWtDuwsJiDKFy6cXJboQTuNwXeSG/qSvGlEkA3tcjRGp353s66eBRjlybfq7mxd19pS 8i7w== X-Gm-Message-State: AGi0PubOl+tjQekOzNrHX94AGZL88WqnRgRAjJsOC74JEL1cnJl6OQC6 RThR+0tUssDpycN0ZhxA+P7ojzu2 X-Google-Smtp-Source: APiQypIRJcgZt3cSEbkLUTCHyyD0TwASPfEYPf8bVLZRHmdo0IjUk5nLvCqGXBzx10C+jHaI/yQt7w== X-Received: by 2002:adf:f845:: with SMTP id d5mr7391815wrq.239.1589009402804; Sat, 09 May 2020 00:30:02 -0700 (PDT) Received: from [192.168.2.121] (p5DDA1756.dip0.t-ipconnect.de. [93.218.23.86]) by smtp.gmail.com with ESMTPSA id e5sm5633227wro.3.2020.05.09.00.30.01 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 09 May 2020 00:30:02 -0700 (PDT) Subject: Re: incorrect text mode graphic character display To: cygwin@cygwin.com References: <20200507081832.54306879@quarternote> <27089b5c-ec97-8691-8780-753592d3ff03@gmail.com> <20200508131417.338a6649@quarternote> From: Marco Atzeri Message-ID: <9fc9522c-d2f5-f903-70d7-ee602c5bb9a5@gmail.com> Date: Sat, 9 May 2020 09:30:02 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-0.8 required=5.0 tests=BAYES_00, BODY_8BITS, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, 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: Sat, 09 May 2020 07:30:17 -0000 Am 09.05.2020 um 08:45 schrieb Thomas Wolff: > Am 09.05.2020 um 08:32 schrieb Marco Atzeri via Cygwin: >> Am 08.05.2020 um 22:14 schrieb briand@pounceofcats.com: >>> 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, >>>>> >>>>> Doesn't matter what terminal i'm using, I'm having a problem with >>>>> the way graphic characters print. >>>>> Julia uses unicode output, and will generate output that should >>>>> look like this: >>>>>    julia> x=DataFrame([(1,2,3), (4,5,6)]) >>>>> 2×3 DataFrame >>>>> │ Row │ 1     │ 2     │ 3     │ >>>>> │     │ Int64 │ Int64 │ Int64 │ >>>>> ├─────┼───────┼───────┼───────┤ >>>>> │ 1   │ 1     │ 2     │ 3     │ >>>>> │ 2   │ 4     │ 5     │ 6     │ >>>>> >>>> >>>> it works fine for me with >>>> $ uname -svr >>>> CYGWIN_NT-10.0 3.1.4(0.340/5/3) 2020-02-19 08:49 >>>> >>>> both on CMD console and Mintty >>>> without need to disable pcon >>>> >>>> julia> using DataFrames >>>> >>>> julia> x=DataFrame([(1,2,3), (4,5,6)]) >>>> 2×3 DataFrame >>>> │ Row │ 1     │ 2     │ 3     │ >>>> │     │ Int64 │ Int64 │ Int64 │ >>>> ├─────┼───────┼───────┼───────┤ >>>> │ 1   │ 1     │ 2     │ 3     │ │ 2   │ 4     │ 5     │ 6 │ >>>> >>>> what type of locale are you using ? >>>> $ echo $LANG >>>> en_US.UTF-8 >>> >>> yes, that's the locale >>> >> >> so it is not the DLL alone and it is not the locale >> that is causing the problem you see. >> >> Please provide the cygcheck.out as attachment >> https://cygwin.com/problems.html >> >> Which version of Julia are you running ? >> How are you running Julia? >> Do you have any custom user setup in Julia? >> I just installed it and only installed the DataFrames package. > Julia had a patch to enable UTF-8 output via Windows output functions in > previous cygwin versions. > I remember the details only vaguely right now, but it may be necessary > to remove that patch for cygwin from 3.1.0, or it might cause some kind > of double transformation. > Thomas > -- there is a Cygwin porting ? I installed the last windows 64 binary Current stable release: v1.4.1 (April 14, 2020) and it works for me, I do not see the issue reported by Brian Marco