From ac6487085024cb65b94d761add66835aac6b6a6e Mon Sep 17 00:00:00 2001 From: Tanaka Akira Date: Sat, 19 Feb 2000 19:35:26 +0000 Subject: zsh-workers/9792 --- Src/cond.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Src/cond.c') diff --git a/Src/cond.c b/Src/cond.c index 1df5b5617..b0c85e0a0 100644 --- a/Src/cond.c +++ b/Src/cond.c @@ -50,12 +50,12 @@ evalcond(Estate state) switch (ctype) { case COND_NOT: if (tracingcond) - fprintf(stderr, " %s", condstr[ctype]); + fprintf(xtrerr, " %s", condstr[ctype]); return !evalcond(state); case COND_AND: if (evalcond(state)) { if (tracingcond) - fprintf(stderr, " %s", condstr[ctype]); + fprintf(xtrerr, " %s", condstr[ctype]); return evalcond(state); } else { state->pc = pcode + (WC_COND_SKIP(code) + 1); @@ -64,7 +64,7 @@ evalcond(Estate state) case COND_OR: if (!evalcond(state)) { if (tracingcond) - fprintf(stderr, " %s", condstr[ctype]); + fprintf(xtrerr, " %s", condstr[ctype]); return evalcond(state); } else { state->pc = pcode + (WC_COND_SKIP(code) + 1); @@ -136,9 +136,9 @@ evalcond(Estate state) singsub(&rt); untokenize(rt); } - fprintf(stderr, " %s %s %s", left, condstr[ctype], rt); + fprintf(xtrerr, " %s %s %s", left, condstr[ctype], rt); } else - fprintf(stderr, " -%c %s", ctype, left); + fprintf(xtrerr, " -%c %s", ctype, left); } if (ctype >= COND_EQ && ctype <= COND_GE) { @@ -410,10 +410,10 @@ tracemodcond(char *name, char **args, int inf) for (aptr = args; *aptr; aptr++) untokenize(*aptr); if (inf) { - fprintf(stderr, " %s %s %s", args[0], name, args[1]); + fprintf(xtrerr, " %s %s %s", args[0], name, args[1]); } else { - fprintf(stderr, " %s", name); + fprintf(xtrerr, " %s", name); while (*args) - fprintf(stderr, " %s", *args++); + fprintf(xtrerr, " %s", *args++); } } -- cgit 1.4.1