From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Kastrup Newsgroups: gmane.lisp.guile.bugs Subject: Documentation of reduce in guile manual Date: Tue, 12 Apr 2011 14:00:26 +0200 Message-ID: <87vcyjhe79.fsf@fencepost.gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1302726292 1590 80.91.229.12 (13 Apr 2011 20:24:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 13 Apr 2011 20:24:52 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Wed Apr 13 22:24:49 2011 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QA6cH-0004u1-WF for guile-bugs@m.gmane.org; Wed, 13 Apr 2011 22:24:46 +0200 Original-Received: from localhost ([::1]:55565 helo=lists2.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QA6cH-0003sa-3z for guile-bugs@m.gmane.org; Wed, 13 Apr 2011 16:24:45 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:42957) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9cHA-0006JK-E6 for bug-guile@gnu.org; Tue, 12 Apr 2011 08:00:57 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9cH9-00041W-Ni for bug-guile@gnu.org; Tue, 12 Apr 2011 08:00:56 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:37274) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9cH9-00041S-H7 for bug-guile@gnu.org; Tue, 12 Apr 2011 08:00:55 -0400 Original-Received: from localhost ([127.0.0.1]:40783 helo=lola.goethe.zz) by fencepost.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9cH8-0001u2-W6 for bug-guile@gnu.org; Tue, 12 Apr 2011 08:00:55 -0400 Original-Received: by lola.goethe.zz (Postfix, from userid 1000) id B6E1F20902; Tue, 12 Apr 2011 14:00:26 +0200 (CEST) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 X-Mailman-Approved-At: Wed, 13 Apr 2011 16:24:41 -0400 X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:5480 Archived-At: In the guile manual (listed as ii guile-1.6-doc 1.6.8-10build1 Reference and tutorial documentation for Guile 1.6 on my system) in node (info "(guile) SRFI-1 Fold and Map") I read -- Scheme Procedure: reduce f ridentity lst `reduce' is a variant of `reduce'. If LST is `()', RIDENTITY is returned. Otherwise, `(fold (car LST) (cdr LST))' is returned. The first and the last sentence look pretty much nonsensical to me. -- David Kastrup