zsh-workers
 help / color / mirror / code / Atom feed
* leftover debugging statements?
@ 1997-11-01 22:01 ramos
  1997-11-02 11:24 ` C. v. Stuckrad
  1997-11-02 16:48 ` stringfellow.n.d
  0 siblings, 2 replies; 3+ messages in thread
From: ramos @ 1997-11-01 22:01 UTC (permalink / raw)
  To: zsh-workers


hello,

Did somebody leave some leftover debugging statements in
zsh 3.0.5?

Some assignments to a local (typeset) variable cause
some garbage to be printed out.

Example script & output (sorry I don't have time to
isolate this any further... I hope this is enough to
jog someone's memory):

PS1='zsh> '
 
zsh> which bug
bug () {
        typeset fred
        fred=NULL 
        typeset sourcefile
        echo 'Start loop...'
        for sourcefile in $*
        do
                typeset bar
                if [[ $fred = NULL ]]
                then
                        typeset foo
                        foo=(`echo output from some process`) 
                        bar=$foo[0] 
                else
                        bar=$fred 
                fi
        done
        echo 'End loop...'
        return 0
}
 
zsh> bug X Y Z
Start loop...
bar=output
foo=(output from some process)
bar=output
foo=(output from some process)
End loop...
 
zsh> setopt
allexport
autocd
autolist
autopushd
cdablevars
extendedglob
interactive
nolistbeep
login
menucomplete
monitor
pushdignoredups
pushdsilent
rmstarsilent
shinstdin
zle
 
zsh> echo $ZSH_VERSION
3.0.5
 
zsh> uname -a
SunOS ihnns581 5.5.1 Generic_103640-12 sun4u sparc SUNW,Ultra-1
 
##

Obviously, the function was not supposed to print anything out
except "Start loop..." and "End loop...".

Thanks,

--
Alex Ramos


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

end of thread, other threads:[~1997-11-02 17:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-11-01 22:01 leftover debugging statements? ramos
1997-11-02 11:24 ` C. v. Stuckrad
1997-11-02 16:48 ` stringfellow.n.d

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