* zsh-3.0.5-test1 @ 1997-09-20 7:53 Zoltan Hidvegi 1997-09-20 14:24 ` zsh-3.0.5-test1 Geoff Wing 1997-09-20 17:06 ` zsh-3.0.5-test1 Bart Schaefer 0 siblings, 2 replies; 4+ messages in thread From: Zoltan Hidvegi @ 1997-09-20 7:53 UTC (permalink / raw) To: Zsh hacking and development, garth I've put a zsh-3.0.5 test release to ftp://ftp.cs.elte.hu/pub/zsh/testing/. The finenames, dates (in GMT+2) and sizes: 16379 Sep 20 09:47 zsh-3.0.5-test1.diff.gz 656065 Sep 20 09:50 zsh-3.0.5-test1.tar.gz The files are also available via http: http://www.frontiernet.net/~hzoli/zsh-3.0.5-test1.diff.gz http://www.frontiernet.net/~hzoli/zsh-3.0.5-test1.tar.gz Zoltan ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: zsh-3.0.5-test1 1997-09-20 7:53 zsh-3.0.5-test1 Zoltan Hidvegi @ 1997-09-20 14:24 ` Geoff Wing 1997-09-20 17:06 ` zsh-3.0.5-test1 Bart Schaefer 1 sibling, 0 replies; 4+ messages in thread From: Geoff Wing @ 1997-09-20 14:24 UTC (permalink / raw) To: zsh-workers Zoltan Hidvegi <hzoli@frontiernet.net> typed: :I've put a zsh-3.0.5 test release to Heyla, we got */patl again :-) -- Geoff Wing [mason@primenet.com.au] Phone : +61-3-9818 2977 Technical Manager: PrimeNet Computer Consultants Facsimile: +61-3-9768 2909 Web: <URL:http://www.primenet.com.au/> Mobile : 0412 162 441 [ Boulderdash: <URL:http://ciips.ee.uwa.edu.au/~williams/bd/> ] ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: zsh-3.0.5-test1 1997-09-20 7:53 zsh-3.0.5-test1 Zoltan Hidvegi 1997-09-20 14:24 ` zsh-3.0.5-test1 Geoff Wing @ 1997-09-20 17:06 ` Bart Schaefer 1997-09-21 8:40 ` zsh-3.0.5-test2 Zoltan Hidvegi 1 sibling, 1 reply; 4+ messages in thread From: Bart Schaefer @ 1997-09-20 17:06 UTC (permalink / raw) To: Zoltan Hidvegi, Zsh hacking and development, garth On Sep 20, 3:53am, Zoltan Hidvegi wrote: } Subject: zsh-3.0.5-test1 } } I've put a zsh-3.0.5 test release to } ftp://ftp.cs.elte.hu/pub/zsh/testing/. Stuff that seems to be missing: * PWS's patch from zsh-workers 3285 for chasing symlinks when markdirs. (Was this deemed unnecessary, or fixed a different way?) * PWS's print_eight_bit option (lost the article number). (Also not necessary?) * My patch in zle_main.c and zle_tricky.c to use `!gotmult' in place of `zmult == 1' in a couple of places. * Geoff Wing's fix in zle_refresh.c (lost the article number) to replace a strncpy() with a memcpy(). This one seems important; here it is: --- zsh-3.0.5-test1/Src/zle_refresh.c Sun Jun 22 22:12:47 1997 +++ Src/zle_refresh.c Tue Jul 29 09:28:40 1997 @@ -575,9 +575,10 @@ if (nllen) strncpy(p1, nl, nllen); memset(p1 + nllen, ' ', winw - nllen); - p1[winw] = p1[winw + 1] = '\0'; + p1[winw] = '\0'; + p1[winw + 1] = (nllen < winw) ? '\0' : nl[winw + 1]; if (ln && nbuf[ln]) - strncpy(nl, p1, winw + 2); /* next time obuf will be up-to-date */ + memcpy(nl, p1, winw + 2); /* next time obuf will be up-to-date */ else nl = p1; /* don't keep the padding for prompt line */ nllen = winw; * PWS's patch (lost article number) to eliminate extra spaces at the end of the command line when doing menu completions. Another important one: --- zsh-3.0.5-test1/Src/zle_utils.c Mon Jun 2 22:11:25 1997 +++ Src/zle_utils.c Sat Jun 28 19:21:59 1997 @@ -73,7 +73,7 @@ line[to] = line[to + cnt]; to++; } - ll = to; + line[ll = to] = '\0'; } /**/ * My recent patches to Misc/c2z. -- Bart Schaefer Brass Lantern Enterprises http://www.well.com/user/barts http://www.brasslantern.com ^ permalink raw reply [flat|nested] 4+ messages in thread
* zsh-3.0.5-test2 1997-09-20 17:06 ` zsh-3.0.5-test1 Bart Schaefer @ 1997-09-21 8:40 ` Zoltan Hidvegi 0 siblings, 0 replies; 4+ messages in thread From: Zoltan Hidvegi @ 1997-09-21 8:40 UTC (permalink / raw) To: Zsh hacking and development; +Cc: garth I've just packed 3.0.5-test2, you can get it from ftp://ftp.cs.elte.hu/pub/zsh/testing/ http://ftp.cs.elte.hu/pub/zsh/testing/ ftp://ftp.frontiernet.net/pub/users/hzoli/zsh/testing/ http://www.frontiernet.net/~hzoli/ The files (time is in EDT = GMT-4): 20825 Sep 21 03:57 zsh-3.0.5-test2.diff.gz 655728 Sep 21 04:02 zsh-3.0.5-test2.tar.gz > * PWS's patch from zsh-workers 3285 for chasing symlinks when markdirs. > (Was this deemed unnecessary, or fixed a different way?) That's included, although some fixes were necessary here. > * PWS's print_eight_bit option (lost the article number). (Also not > necessary?) That'll only go to 3.1.3, sine more changes are needed than in Peter's patch. > * My patch in zle_main.c and zle_tricky.c to use `!gotmult' in place of > `zmult == 1' in a couple of places. That went in, but we need some more for zsh-3.1.2, since there it seems that zmod is already reset by the time the list is printed. > * Geoff Wing's fix in zle_refresh.c (lost the article number) to replace a > strncpy() with a memcpy(). This one seems important; here it is: OK. > * PWS's patch (lost article number) to eliminate extra spaces at the end of > the command line when doing menu completions. Another important one: Yes, definitely. I do not know how could I forgot this. > * My recent patches to Misc/c2z. In test2. Zoltan ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~1997-09-21 8:49 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 1997-09-20 7:53 zsh-3.0.5-test1 Zoltan Hidvegi 1997-09-20 14:24 ` zsh-3.0.5-test1 Geoff Wing 1997-09-20 17:06 ` zsh-3.0.5-test1 Bart Schaefer 1997-09-21 8:40 ` zsh-3.0.5-test2 Zoltan Hidvegi
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).