From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22617 invoked by alias); 2 Apr 2008 18:20:43 -0000 Received: (qmail 22608 invoked by uid 22791); 2 Apr 2008 18:20:42 -0000 X-Spam-Check-By: sourceware.org Received: from imr1.ericy.com (HELO imr1.ericy.com) (198.24.6.9) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 02 Apr 2008 18:20:22 +0000 Received: from eusrcmw751.eamcs.ericsson.se (eusrcmw751.exu.ericsson.se [138.85.77.51]) by imr1.ericy.com (8.13.1/8.13.1) with ESMTP id m32IK5md003593; Wed, 2 Apr 2008 13:20:08 -0500 Received: from ecamlmw720.eamcs.ericsson.se ([142.133.1.72]) by eusrcmw751.eamcs.ericsson.se with Microsoft SMTPSVC(6.0.3790.1830); Wed, 2 Apr 2008 13:20:05 -0500 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: RE: [Patch] Try2: -var-evaluate-expression [-f FORMAT] NAME Date: Wed, 02 Apr 2008 19:10:00 -0000 Message-ID: <6D19CA8D71C89C43A057926FE0D4ADAA0429101A@ecamlmw720.eamcs.ericsson.se> In-Reply-To: <1207159695.31772.122.camel@localhost.localdomain> From: "Marc Khouzam" To: "Michael Snyder" , "Vladimir Prus" Cc: X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-04/txt/msg00045.txt.bz2 > > > * varobj.h (varobj_get_formatted_value): Declare. > > > * varobj.c (my_value_of_variable): Added format parameter. > > > (cplus_value_of_variable): Likewise. > > > (java_value_of_variable): Likewise. > > > (*(value_of_variable)): Likewise. > >=20 > > Is '*(value_of_variable)' really a name of a function? :-) >=20 > It is, actually -- but not in varobj.c. Thanks for raising this. > Marc, we prefer not to have identifiers or file names abbreviated > in changelogs. I created some confusion here. (*(value_of_variable)) is a function pointer, that is a member of the 'language_specific' struct. I added a parameter to that function pointer, but I guess it need not be in the Changelog since it is just a pointer to other functions I changed. I'll remove from the Changelog.