zsh-workers
 help / color / mirror / code / Atom feed
* compaudit:104: unknown file attribute
@ 2000-09-04  6:45 Andrej Borsenkow
  2000-09-04  7:03 ` Bug in 1272 (sorry, Zefram) " Andrej Borsenkow
  0 siblings, 1 reply; 3+ messages in thread
From: Andrej Borsenkow @ 2000-09-04  6:45 UTC (permalink / raw)
  To: ZSH workers mailing list

After todays cvs update I get this message. The line in question is

  _i_wdirs=( ${^fpath}(Nf:g+w:^g:${GROUP}:,f:o+w:,^u0u${EUID})
             ${^fpath}/..(Nf:g+w:^g:${GROUP}:,f:o+w:,^u0u${EUID}) )

(second line).

Anybody else has the same problem?

-andrej

Have a nice DOS!
B >> 


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

* Bug in 1272 (sorry, Zefram) RE: compaudit:104: unknown file attribute
  2000-09-04  6:45 compaudit:104: unknown file attribute Andrej Borsenkow
@ 2000-09-04  7:03 ` Andrej Borsenkow
  2000-09-04  7:14   ` PATCH: Re: Bug in 12722 " Bart Schaefer
  0 siblings, 1 reply; 3+ messages in thread
From: Andrej Borsenkow @ 2000-09-04  7:03 UTC (permalink / raw)
  To: ZSH workers mailing list

>
> After todays cvs update I get this message. The line in question is
>
>   _i_wdirs=( ${^fpath}(Nf:g+w:^g:${GROUP}:,f:o+w:,^u0u${EUID})
>              ${^fpath}/..(Nf:g+w:^g:${GROUP}:,f:o+w:,^u0u${EUID}) )
>
> (second line).
>
> Anybody else has the same problem?
>

And running make test gives me:

/tools/src/zsh/Test/09funcdef.ztst: test failed.
Test /tools/src/zsh/Test/10prompt.ztst failed: bad status 10#0, expected 0
from:

for *all* tests

-andrej


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

* PATCH: Re: Bug in 12722 (sorry, Zefram) RE: compaudit:104: unknown file attribute
  2000-09-04  7:03 ` Bug in 1272 (sorry, Zefram) " Andrej Borsenkow
@ 2000-09-04  7:14   ` Bart Schaefer
  0 siblings, 0 replies; 3+ messages in thread
From: Bart Schaefer @ 2000-09-04  7:14 UTC (permalink / raw)
  To: Andrej Borsenkow, ZSH workers mailing list


--- zsh-forge/current/Src/params.c	Sat Sep  2 14:12:20 2000
+++ Src/params.c	Mon Sep  4 00:11:57 2000
@@ -3049,8 +3049,10 @@
 	    sprintf(s, "0x");
 	else if (isset(CBASES) && base == 8 && isset(OCTALZEROES))
 	    sprintf(s, "0");
-	else
+	else if (base != 10)
 	    sprintf(s, "%d#", base);
+	else
+	    *s = 0;
 	s += strlen(s);
     } else
 	base = -base;

-- 
Bart Schaefer                                 Brass Lantern Enterprises
http://www.well.com/user/barts              http://www.brasslantern.com

Zsh: http://www.zsh.org | PHPerl Project: http://phperl.sourceforge.net   


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

end of thread, other threads:[~2000-09-04  7:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-09-04  6:45 compaudit:104: unknown file attribute Andrej Borsenkow
2000-09-04  7:03 ` Bug in 1272 (sorry, Zefram) " Andrej Borsenkow
2000-09-04  7:14   ` PATCH: Re: Bug in 12722 " Bart Schaefer

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).