zsh-users
 help / color / mirror / code / Atom feed
* 4.3.6-dev-2 available
@ 2008-10-21  8:54 Peter Stephenson
  2008-10-22 16:38 ` Danek Duvall
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Stephenson @ 2008-10-21  8:54 UTC (permalink / raw)
  To: Zsh users list

In case you hadn't noticed, after some help from Geoff, I've uploaded

ftp://ftp.zsh.org/pub/development/zsh-4.3.6-dev-2.tar.gz
ftp://ftp.zsh.org/pub/development/zsh-4.3.6-dev-2-doc.tar.gz

There are actually no configuration-specific changes sinces dev-1; the
major differences are to fix a few completion glitches that turned up.
Consequently if nothing else serious turns up I will release 4.3.7
shortly.

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 4.3.6-dev-2 available
  2008-10-21  8:54 4.3.6-dev-2 available Peter Stephenson
@ 2008-10-22 16:38 ` Danek Duvall
  2008-10-22 17:23   ` Peter Stephenson
  0 siblings, 1 reply; 4+ messages in thread
From: Danek Duvall @ 2008-10-22 16:38 UTC (permalink / raw)
  To: Peter Stephenson; +Cc: Zsh users list

This fails to compile on Solaris 11 with the Sun Studio 11 compiler, with
the following error:

    "zle_refresh.c", line 1796: operands have incompatible types:
             const struct  {long chr, int atr} ":" struct  {long chr, int atr}
    cc: acomp failed for zle_refresh.c

With SS12, this is just a warning.

I believe that by the time I get around to putting 4.3.7 into Solaris,
we'll have switched to using SS12 (if we haven't already), so it won't be a
problem, but it might still be a useful data point, if anyone out there is
using SS11.

Thanks,
Danek


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 4.3.6-dev-2 available
  2008-10-22 16:38 ` Danek Duvall
@ 2008-10-22 17:23   ` Peter Stephenson
  2008-10-22 17:27     ` Danek Duvall
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Stephenson @ 2008-10-22 17:23 UTC (permalink / raw)
  To: Zsh users list

Danek Duvall wrote:
> This fails to compile on Solaris 11 with the Sun Studio 11 compiler, with
> the following error:
> 
>     "zle_refresh.c", line 1796: operands have incompatible types:
>              const struct  {long chr, int atr} ":" struct  {long chr, int atr
> }
>     cc: acomp failed for zle_refresh.c

Easy to fix.

Index: Src/Zle/zle_refresh.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Zle/zle_refresh.c,v
retrieving revision 1.71
diff -u -r1.71 zle_refresh.c
--- Src/Zle/zle_refresh.c	22 Jul 2008 19:54:29 -0000	1.71
+++ Src/Zle/zle_refresh.c	22 Oct 2008 17:21:46 -0000
@@ -1793,7 +1793,10 @@
 	    ZR_memcpy(p1, nl, nllen);
 	ZR_memset(p1 + nllen, zr_sp, winw - nllen);
 	p1[winw] = zr_zr;
-	p1[winw + 1] = (nllen < winw) ? zr_zr : nl[winw + 1];
+	if (nllen < winw)
+	    p1[winw + 1] = zr_zr;
+	else
+	    p1[winw + 1] = nl[winw + 1];
 	if (ln && nbuf[ln])
 	    ZR_memcpy(nl, p1, winw + 2);	/* next time obuf will be up-to-date */
 	else

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 4.3.6-dev-2 available
  2008-10-22 17:23   ` Peter Stephenson
@ 2008-10-22 17:27     ` Danek Duvall
  0 siblings, 0 replies; 4+ messages in thread
From: Danek Duvall @ 2008-10-22 17:27 UTC (permalink / raw)
  To: Peter Stephenson; +Cc: Zsh users list

On Wed, Oct 22, 2008 at 06:23:07PM +0100, Peter Stephenson wrote:

> Danek Duvall wrote:
> > This fails to compile on Solaris 11 with the Sun Studio 11 compiler, with
> > the following error:
> > 
> >     "zle_refresh.c", line 1796: operands have incompatible types:
> >              const struct  {long chr, int atr} ":" struct  {long chr, int atr
> > }
> >     cc: acomp failed for zle_refresh.c
> 
> Easy to fix.

Indeed.

Thanks,
Danek


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-10-22 17:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-10-21  8:54 4.3.6-dev-2 available Peter Stephenson
2008-10-22 16:38 ` Danek Duvall
2008-10-22 17:23   ` Peter Stephenson
2008-10-22 17:27     ` Danek Duvall

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).