From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Fri, 6 Mar 2015 08:33:27 -0800 To: 9fans@9fans.net Message-ID: In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] col.c: one line fix for variable-width font Topicbox-Message-UUID: 4861ae3e-ead9-11e9-9d60-3106f5b1d025 On Fri Mar 6 04:57:18 PST 2015, giacomo@tesio.it wrote: > if ((++ncp & 7) == 0 && !xflag) { > > with > > if ((++ncp & 7) == 0 && !xflag && *(p-2) == ' ') { that solves it. you have a problem with $tabstop. if you've cpu'd or ssh'd somewhere, make sure the $tabstop is set properly, and that the font you are using is available on the remote host, and $font is pointing to it. - erik