From owner-cvs-src-old@FreeBSD.ORG Sat Nov 21 14:28:46 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E6E6B10656B3 for ; Sat, 21 Nov 2009 14:28:46 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id D4AC38FC19 for ; Sat, 21 Nov 2009 14:28:46 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id nALESkQt008639 for ; Sat, 21 Nov 2009 14:28:46 GMT (envelope-from jilles@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id nALESkfp008638 for cvs-src-old@freebsd.org; Sat, 21 Nov 2009 14:28:46 GMT (envelope-from jilles@repoman.freebsd.org) Message-Id: <200911211428.nALESkfp008638@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jilles@repoman.freebsd.org using -f From: Jilles Tjoelker Date: Sat, 21 Nov 2009 14:28:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh histedit.c input.c jobs.c main.c output.c output.h parser.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Nov 2009 14:28:47 -0000 jilles 2009-11-21 14:28:32 UTC FreeBSD src repository Modified files: bin/sh histedit.c input.c jobs.c main.c output.c output.h parser.c Log: SVN rev 199629 on 2009-11-21 14:28:32Z by jilles sh: Some changes to stderr flushing: * increase buffer size from 100 to 256 bytes * remove implied flush from out2str(), in particular this avoids unnecessary flushing in the middle of a -x tracing line * rename dprintf() to out2fmt_flush(), make it flush out2 and use this function in various places where flushing is desired after an error message Revision Changes Path 1.32 +3 -2 src/bin/sh/histedit.c 1.26 +3 -3 src/bin/sh/input.c 1.73 +2 -2 src/bin/sh/jobs.c 1.32 +2 -2 src/bin/sh/main.c 1.22 +2 -4 src/bin/sh/output.c 1.14 +1 -1 src/bin/sh/output.h 1.67 +3 -0 src/bin/sh/parser.c