From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32f.google.com (mail-wm1-x32f.google.com [IPv6:2a00:1450:4864:20::32f]) by sourceware.org (Postfix) with ESMTPS id 588903851C04 for ; Sat, 9 May 2020 06:32:24 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 588903851C04 Received: by mail-wm1-x32f.google.com with SMTP id u127so12962367wmg.1 for ; Fri, 08 May 2020 23:32:24 -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=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) Received: from [192.168.2.121] (p5DDA1756.dip0.t-ipconnect.de. [93.218.23.86]) by smtp.gmail.com with ESMTPSA id c190sm17255303wme.4.2020.05.08.23.32.17 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 08 May 2020 23:32:17 -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: 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> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit 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@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 06:32:25 -0000 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. 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