From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.bugs Subject: bug#15798: Bad variable name "noreturn" in libguile/throw.h Date: Mon, 04 Nov 2013 19:48:29 -0500 Message-ID: <87r4avn06a.fsf@netris.org> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1383612679 10613 80.91.229.3 (5 Nov 2013 00:51:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Nov 2013 00:51:19 +0000 (UTC) Cc: 15798-done@debbugs.gnu.org To: Matt Sicker Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Tue Nov 05 01:51:24 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 1VdUrW-0000Wl-Bo for guile-bugs@m.gmane.org; Tue, 05 Nov 2013 01:51:18 +0100 Original-Received: from localhost ([::1]:52682 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VdUrV-0007Ac-SK for guile-bugs@m.gmane.org; Mon, 04 Nov 2013 19:51:17 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:48112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VdUrN-0007AN-2D for bug-guile@gnu.org; Mon, 04 Nov 2013 19:51:15 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VdUrH-0003lf-8j for bug-guile@gnu.org; Mon, 04 Nov 2013 19:51:09 -0500 Original-Received: from debbugs.gnu.org ([140.186.70.43]:49040) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VdUrH-0003lX-4L for bug-guile@gnu.org; Mon, 04 Nov 2013 19:51:03 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.80) (envelope-from ) id 1VdUrG-0006RS-Lj for bug-guile@gnu.org; Mon, 04 Nov 2013 19:51:02 -0500 Resent-From: Mark H Weaver Original-Sender: "Debbugs-submit" Resent-To: bug-guile@gnu.org Resent-Date: Tue, 05 Nov 2013 00:51:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 15798 X-GNU-PR-Package: guile X-GNU-PR-Keywords: Mail-Followup-To: 15798@debbugs.gnu.org, mhw@netris.org, boards@gmail.com Original-Received: via spool by 15798-done@debbugs.gnu.org id=D15798.138361260724686 (code D ref 15798); Tue, 05 Nov 2013 00:51:02 +0000 Original-Received: (at 15798-done) by debbugs.gnu.org; 5 Nov 2013 00:50:07 +0000 Original-Received: from localhost ([127.0.0.1]:34824 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VdUqM-0006Q3-74 for submit@debbugs.gnu.org; Mon, 04 Nov 2013 19:50:06 -0500 Original-Received: from world.peace.net ([96.39.62.75]:33975 ident=hope0) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1VdUqJ-0006Pu-Ku for 15798-done@debbugs.gnu.org; Mon, 04 Nov 2013 19:50:04 -0500 Original-Received: from 209-6-91-212.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.91.212] helo=yeeloong) by world.peace.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1VdUqD-0001xS-9x; Mon, 04 Nov 2013 19:49:57 -0500 In-Reply-To: (Matt Sicker's message of "Sun, 3 Nov 2013 17:30:39 -0600") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 140.186.70.43 X-BeenThere: bug-guile@gnu.org 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:7331 Archived-At: Matt Sicker writes: > In the function scm_ithrow, the parameter "int noreturn" is given. Now > this works fine normally, but if stdnoreturn.h is included before > throw.h (or libguile.h more likely), then this causes a compilation > error. In throw.c, noreturn is even marked as an unused variable, so > this is even more annoying! I recommend using "no_return" to prevent > any namespace conflicts. Fixed in stable-2.0. Thanks for the report. http://git.savannah.gnu.org/gitweb/?p=guile.git;a=commit;h=36c40440078c005cd5e239cca487d29f6f60007d Mark