From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26795 invoked from network); 11 Jul 2005 14:47:52 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 11 Jul 2005 14:47:52 -0000 Received: (qmail 92983 invoked from network); 11 Jul 2005 14:47:45 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 11 Jul 2005 14:47:45 -0000 Received: (qmail 3618 invoked by alias); 11 Jul 2005 14:47:41 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 21430 Received: (qmail 3608 invoked from network); 11 Jul 2005 14:47:41 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 11 Jul 2005 14:47:41 -0000 Received: (qmail 92744 invoked from network); 11 Jul 2005 14:47:41 -0000 Received: from wproxy.gmail.com (64.233.184.194) by a.mx.sunsite.dk with SMTP; 11 Jul 2005 14:47:37 -0000 Received: by wproxy.gmail.com with SMTP id i32so842999wra for ; Mon, 11 Jul 2005 07:47:36 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=pgKo7BYaA/tH/6F2WAWRSmHKHYNcq1ZslfhMWsHGHxMxiU/QDZiYlFKC6L0UZawrkJkkrFLKg2Kq3m5VPxc6LooSnQmRCDgudyVRBNuBAv3z3F3scx+252nwlWeUtCpwnqL8725XbC+1fo241VXuGLuf0NKnBzUaPDmxHGZ/M8g= Received: by 10.54.24.47 with SMTP id 47mr4039513wrx; Mon, 11 Jul 2005 07:47:03 -0700 (PDT) Received: by 10.54.37.65 with HTTP; Mon, 11 Jul 2005 07:47:02 -0700 (PDT) Message-ID: Date: Mon, 11 Jul 2005 16:47:02 +0200 From: Ulf Magnusson Reply-To: Ulf Magnusson To: zsh-workers@sunsite.dk Subject: Very wierd output problems Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.4 required=6.0 tests=AWL,BAYES_00,RCVD_BY_IP autolearn=ham version=3.0.2 X-Spam-Hits: -2.4 For some reason, output from programs that use printf no longer shows up when they are run from ZSH. For example, the following C program produces no output when run from ZSH: #include int main() { printf("foo"); } The ZSH builtin printf (that presumably uses the libc printf) doesn't produce any output anymore either. The following is totally silent: $ builtin printf Test%dTest 1000 Output via the function puts still shows up as it should. All programs run as they should when invoked from Bash. I've tried restarting ZSH and even the system, but the problem won't go away. This is with ZSH 4.2.5, running on FreeBSD 5.4. Ulf