From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28472 invoked by alias); 21 Feb 2006 20:54:39 -0000 Received: (qmail 28459 invoked by uid 22791); 21 Feb 2006 20:54:39 -0000 X-Spam-Check-By: sourceware.org Received: from sibelius.xs4all.nl (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 21 Feb 2006 20:54:37 +0000 Received: from elgar.sibelius.xs4all.nl (root@elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.4/8.13.4) with ESMTP id k1LKrsGF013985; Tue, 21 Feb 2006 21:53:54 +0100 (CET) Received: from elgar.sibelius.xs4all.nl (kettenis@localhost.sibelius.xs4all.nl [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.13.4/8.13.3) with ESMTP id k1LKrrlp006848; Tue, 21 Feb 2006 21:53:53 +0100 (CET) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.13.4/8.13.4/Submit) id k1LKrrcx008550; Tue, 21 Feb 2006 21:53:53 +0100 (CET) Date: Tue, 21 Feb 2006 20:57:00 -0000 Message-Id: <200602212053.k1LKrrcx008550@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: eliz@gnu.org CC: gaius@glam.ac.uk, jimb@red-bean.com, gdb-patches@sources.redhat.com In-reply-to: (message from Eli Zaretskii on Tue, 21 Feb 2006 22:46:08 +0200) Subject: Re: Enhanced language support for Modula-2 References: <87vevg9puv.fsf@j228-gm.comp.glam.ac.uk> <8f2776cb0602151619w5fd8f043u3e7227e27f3567a9@mail.gmail.com> <20060220150513.GB14155@nevyn.them.org> <8f2776cb0602201322o3791841dv2916e53181e9f308@mail.gmail.com> <87lkw5qaa9.fsf@j228-gm.comp.glam.ac.uk> Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2006-02/txt/msg00409.txt.bz2 > Date: Tue, 21 Feb 2006 22:46:08 +0200 > From: Eli Zaretskii > > Thanks. My comments are below. > > > + error (_("type not handled in m2_type_print_varspec_prefix()")); > > Please don't append "()" to indicate that you are talking about a > function; just name the function. "foo()" looks like a call to `foo' > with no arguments, which is not what you want to say. > > > + error (_("type not handled in m2_type_print_varspec_suffix()")); > > Same here. Ah, but error messages intended for the user shouldn't mention function names in the first place. This should probably be an internal_error() instead. Mark