X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E4A45387088B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1589005948; bh=U19SXN+29+U+6DszVr5T+XxCQyCRAIsxbq0EfCdLiwA=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=xSHVNKLE7i51mt6Gw44RechF8NP/qVK7AspoVrdGbARHaRGxQEycsZJaXBH82aMBS 4NWUNTYuU9HItZH3G+X6MI9TQ9MfYZvAg+Gi7eol8HXx7d3LMhT9H3TwLwt2tGlUw8 drjpXMBuaV7+pLvhvM2Ij9O1z2TWc69cSxhT6QA0= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 588903851C04 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=EASo0c/OfepH1yox0h/RjxEpxyKjAkkOHhq1JSyv8ys=; b=cKlCJ2YShN1EkxBSI0QmNpWUzCPQddQZCMx5Qnd9C5hLcgkWPeRGeg4kD4qJCzBcsR oZ/Zl9AlMjBH+O+SigYQ9eW2cPkbyuYMr/+4FynhYx6GqMuv3MlEVPvUIX5/BZTP8bn4 tokLwYsQ5M/7BTZsm+jIT1hByl213IAC3SO+PUCOZr5wEsT2mq3GlII1T1408CsBoRj1 Z98miEEXY3RcaLf+7Q0qT6UDxPdWYedV0iFYaZPf6V5ITFfP1v5LCKA9sZOc8mhNP/bX +N9brGyOfx5YEUhI4sFudmGHDW4XMipo67oTUiBSWuk4bmiZzMyorFoZ8Gi1o/9hyD6j 6wfg== X-Gm-Message-State: AGi0PuZGqe6uOnM5oOf5lQFw1pbbFKeaU0NjNRPluuoEwppVOVBuFfPz UWuCvQyWJwJt9pItvEj4y2fQ9yU1 X-Google-Smtp-Source: APiQypLuyH/JiEf34vfye+uT8NYKY3wpklr+U0ctAbUJF0RhAVUqy6INn4UHnsmbNcUDNvaDHsm86A== X-Received: by 2002:a1c:2d02:: with SMTP id t2mr19811532wmt.98.1589005938087; Fri, 08 May 2020 23:32:18 -0700 (PDT) Subject: Re: incorrect text mode graphic character display To: "cygwin AT cygwin DOT com" References: <20200507081832 DOT 54306879 AT quarternote> <27089b5c-ec97-8691-8780-753592d3ff03 AT gmail DOT com> <20200508131417 DOT 338a6649 AT quarternote> Message-ID: Date: Sat, 9 May 2020 08:32:17 +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: <20200508131417.338a6649@quarternote> X-Spam-Status: No, score=-0.9 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 AT cygwin DOT 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: , From: Marco Atzeri via Cygwin Reply-To: Marco Atzeri Content-Type: text/plain; charset="utf-8"; Format="flowed" Errors-To: cygwin-bounces AT cygwin DOT com Sender: "Cygwin" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by delorie.com id 0496WvMk030701 Am 08.05.2020 um 22:14 schrieb briand AT pounceofcats DOT com: > On Fri, 8 May 2020 20:41:55 +0200 > Marco Atzeri via Cygwin wrote: > >> Am 07.05.2020 um 17:18 schrieb briand AT pounceofcats DOT 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. Can you install a parallel Cygwin with only Base category ? I use C:\cygwin64T for my parallel Cygwin installation. This will help to check if a fresh version without any user customization and minimal packages works. (I had problem with my X server and I found it was a remain of old settings that worked for years) any BLODA installed ? https://cygwin.com/faq/faq.html#faq.using.bloda Regards Marco -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple