From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14781 invoked by alias); 14 May 2006 05:34:39 -0000 Received: (qmail 14773 invoked by uid 22791); 14 May 2006 05:34:38 -0000 X-Spam-Check-By: sourceware.org Received: from viper.snap.net.nz (HELO viper.snap.net.nz) (202.37.101.8) by sourceware.org (qpsmtpd/0.31) with ESMTP; Sun, 14 May 2006 05:34:36 +0000 Received: from farnswood.snap.net.nz (p370-tnt1.snap.net.nz [202.124.111.116]) by viper.snap.net.nz (Postfix) with ESMTP id C6B5D757355; Sun, 14 May 2006 17:34:35 +1200 (NZST) Received: by farnswood.snap.net.nz (Postfix, from userid 500) id 5BEB5627ED; Sun, 14 May 2006 06:33:59 +0100 (BST) From: Nick Roberts MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17510.49478.586246.146949@farnswood.snap.net.nz> Date: Sun, 14 May 2006 07:33:00 -0000 To: Joel Brobecker Cc: gdb@sources.redhat.com Subject: Re: GDB 6.5 branch on Sun May 14th In-Reply-To: <20060514050107.GA6718@adacore.com> References: <20060514050107.GA6718@adacore.com> X-Mailer: VM 7.19 under Emacs 22.0.50.51 X-IsSubscribed: yes Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org X-SW-Source: 2006-05/txt/msg00188.txt.bz2 > Now that the last couple of patches I thought were important enough to > delay 6.5 are in, I was thinking that maybe tomorrow would be a good > day to use as the start of the 6.5 branch. Any better suggestion? Could I sneak in the change to -var-set-format that I submitted earlier? (reproduced below). There must be a chance that Emacs 22 will be released before the GDB release after 6.5, and then I'll be up and running. -- Nick http://www.inet.net.nz/~nickrob 2006-05-02 Nick Roberts * mi/mi-cmd-var.c (mi_cmd_var_set_format): Add value field to output. *** mi-cmd-var.c 31 Mar 2006 12:46:48 +1200 1.23 --- mi-cmd-var.c 02 May 2006 18:16:39 +1200 *************** *** 211,216 **** --- 211,219 ---- /* Report the new current format */ ui_out_field_string (uiout, "format", varobj_format_string[(int) format]); + + /* Report the value in the new format */ + ui_out_field_string (uiout, "value", varobj_get_value (var)); return MI_CMD_DONE; }