From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3859 invoked by alias); 11 Sep 2011 17:32:55 -0000 Received: (qmail 3850 invoked by uid 22791); 11 Sep 2011 17:32:54 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,SPF_HELO_PASS,TW_BT,TW_DB X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 11 Sep 2011 17:32:37 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p8BHWZbf001951 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 11 Sep 2011 13:32:36 -0400 Received: from valrhona.uglyboxes.com (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p8BGbPjP015473 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Sun, 11 Sep 2011 12:37:27 -0400 Message-ID: <4E6CE3C5.4010603@redhat.com> Date: Sun, 11 Sep 2011 17:32:00 -0000 From: Keith Seitz User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:6.0) Gecko/20110816 Thunderbird/6.0 MIME-Version: 1.0 To: insight Subject: [PATCH] get_prompt API change Content-Type: multipart/mixed; boundary="------------000200070002010504060303" X-IsSubscribed: yes Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2011-q3/txt/msg00011.txt.bz2 This is a multi-part message in MIME format. --------------000200070002010504060303 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 300 Hi, I've committed the attached patch which fixes a build problem with get_prompt in gdbtk-cmds.c. That function now (once again) takes no arguments. Keith ChangeLog 2011-09-11 Keith Seitz * generic/gdbtk-cmds.c (gdb_prompt_command): get_prompt now takes no arguments. --------------000200070002010504060303 Content-Type: text/plain; name="get_prompt.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="get_prompt.patch" Content-length: 606 Index: generic/gdbtk-cmds.c =================================================================== RCS file: /cvs/src/src/gdb/gdbtk/generic/gdbtk-cmds.c,v retrieving revision 1.121 diff -u -p -r1.121 gdbtk-cmds.c --- generic/gdbtk-cmds.c 1 Aug 2011 22:08:20 -0000 1.121 +++ generic/gdbtk-cmds.c 11 Sep 2011 16:33:06 -0000 @@ -793,7 +793,7 @@ static int gdb_prompt_command (ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]) { - Tcl_SetStringObj (result_ptr->obj_ptr, get_prompt (0), -1); + Tcl_SetStringObj (result_ptr->obj_ptr, get_prompt (), -1); return TCL_OK; } --------------000200070002010504060303--