From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Zach Davis Newsgroups: gmane.lisp.guile.bugs Subject: bug#13631: format "~q" argument reports wrong email to report bugs to Date: Mon, 4 Feb 2013 20:36:31 -0600 Message-ID: NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1360090653 31382 80.91.229.3 (5 Feb 2013 18:57:33 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Feb 2013 18:57:33 +0000 (UTC) To: 13631@debbugs.gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Tue Feb 05 19:57:54 2013 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U2niD-0001FM-JA for guile-bugs@m.gmane.org; Tue, 05 Feb 2013 19:57:45 +0100 Original-Received: from localhost ([::1]:39029 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2mTZ-0003Z5-Rg for guile-bugs@m.gmane.org; Tue, 05 Feb 2013 12:38:33 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:36799) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2dKp-0003nV-SP for bug-guile@gnu.org; Tue, 05 Feb 2013 02:52:58 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U2dKn-0003Al-E9 for bug-guile@gnu.org; Tue, 05 Feb 2013 02:52:55 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:59706) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U2dKn-0003Af-Ac for bug-guile@gnu.org; Tue, 05 Feb 2013 02:52:53 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.72) (envelope-from ) id 1U2dLu-0007y7-18 for bug-guile@gnu.org; Tue, 05 Feb 2013 02:54:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Zach Davis Resent-CC: bug-guile@gnu.org Resent-Date: Tue, 05 Feb 2013 07:54:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 13631 X-GNU-PR-Package: guile X-GNU-PR-Keywords: X-Debbugs-Original-To: bug-guile@gnu.org Original-Received: via spool by submit@debbugs.gnu.org id=B.136005079430561 (code B ref -1); Tue, 05 Feb 2013 07:54:01 +0000 Original-Received: (at submit) by debbugs.gnu.org; 5 Feb 2013 07:53:14 +0000 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 140.186.70.43 X-Mailman-Approved-At: Tue, 05 Feb 2013 12:38:31 -0500 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:6737 Archived-At: Head: 180ac9d7b scheme@(guile-user)> (use-modules (ice-9 format)) scheme@(guile-user)> (format #t "~q") ;;; :2:0: warning: "~q": wrong number of `format' arguments: expected 1, got 0 SLIB Common LISP format version 3.0 (C) copyright 1992-1994 by Dirk Lutzebaeck please send bug reports to `lutzeb@cs.tu-berlin.de' $1 = #t scheme@(guile-user)> (I think the "wrong number of args" error has been fixed) The comment at the top of the file says to send bug reports to ` bugs-guile@gnu.org' (which i believe is correct?) The address appears in module/ice-9/format.scm line 756. I didn't thing attaching a patch file would be necessary. Thanks, Zach ----------