From owner-svn-src-all@FreeBSD.ORG Wed Jan 28 13:26:37 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87ED2106566B; Wed, 28 Jan 2009 13:26:37 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from igloo.linux.gr (igloo.linux.gr [62.1.205.36]) by mx1.freebsd.org (Postfix) with ESMTP id D314F8FC08; Wed, 28 Jan 2009 13:26:36 +0000 (UTC) (envelope-from keramida@ceid.upatras.gr) Received: from kobe.laptop (adsl21-232.kln.forthnet.gr [77.49.148.232]) (authenticated bits=128) by igloo.linux.gr (8.14.3/8.14.3/Debian-5) with ESMTP id n0SD9wAj023640 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 28 Jan 2009 15:10:03 +0200 Received: from kobe.laptop (kobe.laptop [127.0.0.1]) by kobe.laptop (8.14.3/8.14.3) with ESMTP id n0SD9vwr003438; Wed, 28 Jan 2009 15:09:57 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost) by kobe.laptop (8.14.3/8.14.3/Submit) id n0SD9uMp003437; Wed, 28 Jan 2009 15:09:56 +0200 (EET) (envelope-from keramida@ceid.upatras.gr) From: Giorgos Keramidas To: Tom Rhodes References: <200901280111.n0S1BL7n003092@svn.freebsd.org> Date: Wed, 28 Jan 2009 15:09:56 +0200 In-Reply-To: <200901280111.n0S1BL7n003092@svn.freebsd.org> (Tom Rhodes's message of "Wed, 28 Jan 2009 01:11:21 +0000 (UTC)") Message-ID: <873af38tln.fsf@kobe.laptop> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-MailScanner-ID: n0SD9wAj023640 X-Hellug-MailScanner: Found to be clean X-Hellug-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-3.866, required 5, autolearn=not spam, ALL_TRUSTED -1.80, AWL 0.53, BAYES_00 -2.60) X-Hellug-MailScanner-From: keramida@ceid.upatras.gr X-Spam-Status: No Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r187805 - head/lib/libc/stdio X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Jan 2009 13:26:38 -0000 On Wed, 28 Jan 2009 01:11:21 +0000 (UTC), Tom Rhodes wrote: > Author: trhodes > Date: Wed Jan 28 01:11:20 2009 > New Revision: 187805 > URL: http://svn.freebsd.org/changeset/base/187805 > > Log: > Remove comment about clearerr() being the only method of clearing > the EOF indicator, fseek() may also be used for this. > > Bump document date. I don't like this, sorry... Having a pointer to clearerr() is nice. Removing it *deletes* useful information, but we should add _more_ of it. How about this instead? The end-of-file indicator may be cleared by explicitly calling .Fn clearerr , or as a side-effect of other operations, i.e.\& .Fn fseek .