From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x332.google.com (mail-wm1-x332.google.com [IPv6:2a00:1450:4864:20::332]) by sourceware.org (Postfix) with ESMTPS id A04373851C04 for ; Fri, 8 May 2020 18:41:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A04373851C04 Received: by mail-wm1-x332.google.com with SMTP id k12so11173384wmj.3 for ; Fri, 08 May 2020 11:41:57 -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=U0f943eTaB34UmN6l9YFzxWpQgvuzb5h3SjbvW34J5Q=; b=FPRZ7Eyor5zhK3nmZUNfsQUScXrzesRBwFtkS/60UYVjgFB60jLewlHFzm1kK/EOSH ejLWIvTm+jLdbRDdIuNYA0mJ0suf9GEVw3CP3goxhSN29P7l1ChKzbNkyOZl/ilRmp6h u5bHCrqDmmTzoNt11+fzz0LpC3fML2sClceqix9EZAbnjSTRRmauQr0sf29faUJ9UYh2 JtGVuFnIh4ARfFWsO7KEEowXbivGd53FRAVOmzjcQWxnQyG6ntYyp5nxTVhXl4obUb6u uKnvNAJT9NwQS3di3d5v+Or6LlHufU2tnTNouzkCIS9frErX0DY0aNB9hpRGCUKGmC1+ N9gw== X-Gm-Message-State: AGi0PubTajIripaiMMAfimVjJYcIDfzMdSUXzT6OCxODqGc+2pN5h5AS OKLe9pgqYVraQBKuTFpzgMVlCxrt X-Google-Smtp-Source: APiQypKWtoy9Izq3IyOF0xb/ETSBfmmHEYJL68+01W6J0FVKC2qMsxyYAti1QNErb91WrksR1O3vQA== X-Received: by 2002:a1c:7416:: with SMTP id p22mr18275919wmc.80.1588963316434; Fri, 08 May 2020 11:41:56 -0700 (PDT) Received: from ?IPv6:2003:cc:9f0f:2c08:c89:c5a2:956e:c726? (p200300CC9F0F2C080C89C5A2956EC726.dip0.t-ipconnect.de. [2003:cc:9f0f:2c08:c89:c5a2:956e:c726]) by smtp.gmail.com with ESMTPSA id h74sm4416016wrh.76.2020.05.08.11.41.55 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 08 May 2020 11:41:55 -0700 (PDT) Subject: Re: incorrect text mode graphic character display To: cygwin@cygwin.com References: <20200507081832.54306879@quarternote> From: Marco Atzeri Message-ID: <27089b5c-ec97-8691-8780-753592d3ff03@gmail.com> Date: Fri, 8 May 2020 20:41:55 +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: <20200507081832.54306879@quarternote> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-0.6 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: Fri, 08 May 2020 18:41:59 -0000 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 Regards Marco