From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5384 invoked by alias); 13 Apr 2012 08:07:43 -0000 Received: (qmail 5360 invoked by uid 22791); 13 Apr 2012 08:07:40 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,MSGID_MULTIPLE_AT X-Spam-Check-By: sourceware.org Received: from mailhost.u-strasbg.fr (HELO mailhost.u-strasbg.fr) (130.79.200.152) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 13 Apr 2012 08:07:26 +0000 Received: from md2.u-strasbg.fr (md2.u-strasbg.fr [IPv6:2001:660:2402::187]) by mailhost.u-strasbg.fr (8.14.3/jtpda-5.5pre1) with ESMTP id q3D87Ag2065669 ; Fri, 13 Apr 2012 10:07:10 +0200 (CEST) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from mailserver.u-strasbg.fr (ms3.u-strasbg.fr [130.79.204.12]) by md2.u-strasbg.fr (8.14.4/jtpda-5.5pre1) with ESMTP id q3D879vi038103 ; Fri, 13 Apr 2012 10:07:10 +0200 (CEST) (envelope-from pierre.muller@ics-cnrs.unistra.fr) Received: from E6510Muller (gw-ics.u-strasbg.fr [130.79.210.225]) (user=mullerp mech=LOGIN) by mailserver.u-strasbg.fr (8.14.4/jtpda-5.5pre1) with ESMTP id q3D8781x034022 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) ; Fri, 13 Apr 2012 10:07:09 +0200 (CEST) (envelope-from pierre.muller@ics-cnrs.unistra.fr) From: "Pierre Muller" To: "'Joel Brobecker'" , Cc: References: <20120412153301.GW25623@adacore.com> In-Reply-To: <20120412153301.GW25623@adacore.com> Subject: RE: 2 weeks away from potential GDB 7.4.1 release... Date: Fri, 13 Apr 2012 08:07:00 -0000 Message-ID: <003f01cd194c$6d4e7680$47eb6380$@muller@ics-cnrs.unistra.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2012-04/txt/msg00091.txt.bz2 We I committed a patch about a pascal regression http://sourceware.org/ml/gdb-patches/2012-03/msg00599.html http://sourceware.org/ml/gdb-cvs/2012-03/msg00205.html I asked if I should merge it to fixes... So I suppose that now is the time... Is this OK? ChangeLog entry: 2012-04-13 Pierre Muller * p-typeprint.c (pascal_type_print_method_args): Fix display of parameter of methods. Index: p-typeprint.c =================================================================== RCS file: /cvs/src/src/gdb/p-typeprint.c,v retrieving revision 1.42.2.1 diff -c -r1.42.2.1 p-typeprint.c *** p-typeprint.c 6 Jan 2012 04:43:21 -0000 1.42.2.1 --- p-typeprint.c 13 Apr 2012 08:04:10 -0000 *************** *** 183,190 **** physname += len; for (j = 0; j < i; ++j) ! fputc_filtered (physname[i], stream); ! fputs_filtered (physname, stream); physname += i; if (physname[0] != 0) --- 183,189 ---- physname += len; for (j = 0; j < i; ++j) ! fputc_filtered (physname[j], stream); physname += i; if (physname[0] != 0)