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/builtin.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Src/builtin.c') diff --git a/Src/builtin.c b/Src/builtin.c index 6b09eb3aa..87b6f478e 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -351,13 +351,13 @@ execbuiltin(LinkList args, Builtin bn) /* display execution trace information, if required */ if (xtr) { printprompt4(); - fprintf(stderr, "%s", name); + fprintf(xtrerr, "%s", name); if (xarg) - fprintf(stderr, " %s", xarg); + fprintf(xtrerr, " %s", xarg); while (*oargv) - fprintf(stderr, " %s", *oargv++); - fputc('\n', stderr); - fflush(stderr); + fprintf(xtrerr, " %s", *oargv++); + fputc('\n', xtrerr); + fflush(xtrerr); } /* call the handler function, and return its return value */ return (*(bn->handlerfunc)) (name, argv, ops, bn->funcid); -- cgit 1.4.1