From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19276 invoked by alias); 3 Feb 2013 16:17:23 -0000 Received: (qmail 19238 invoked by uid 22791); 3 Feb 2013 16:17:19 -0000 X-SWARE-Spam-Status: No, hits=-6.2 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_SPAMHAUS_DROP,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD,SPF_HELO_PASS 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, 03 Feb 2013 16:17:10 +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 r13GHAev024259 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 3 Feb 2013 11:17:10 -0500 Received: from host2.jankratochvil.net ([10.3.113.16]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r13GH6NS022198 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Sun, 3 Feb 2013 11:17:09 -0500 Date: Sun, 03 Feb 2013 16:17:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Subject: [commit] [patchv2 8/11] TUI: source "file" -> "fullname" Message-ID: <20130203161706.GH4448@host2.jankratochvil.net> References: <20130127223625.GI15252@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130127223625.GI15252@host2.jankratochvil.net> User-Agent: Mutt/1.5.21 (2010-09-15) 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: 2013-02/txt/msg00062.txt.bz2 On Sun, 27 Jan 2013 23:36:25 +0100, Jan Kratochvil wrote: > gdb/ > 2013-01-25 Jan Kratochvil > > * source.c (print_source_lines_base): Print for TUI also "fullname". > * tui/tui-data.c (init_content_element): Change tui_locator_element > field to full_name. > * tui/tui-data.h (struct tui_locator_element): Likewise. > * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename > tui_update_locator_filename calls to tui_update_locator_fullname. > Replace symtab->filename refererence by symtab_to_fullname call. > * tui/tui-out.c (tui_field_string): Check for "fullname" now. > * tui/tui-source.c (tui_set_source_content): Change tui_locator_element > field to full_name. Replace symtab->filename refererence by > symtab_to_fullname call. > (tui_show_symtab_source): Rename parameter to fullname. Change > tui_locator_element field to full_name. > * tui/tui-stack.c: Include source.h. > (tui_set_locator_filename): Rename the declaration to ... > (tui_set_locator_fullname): ... here. Rename its parameter to > fullname, updates its comment. > (tui_set_locator_info): Rename its parameter to fullname. > (tui_set_locator_filename): Rename the definition to ... > (tui_set_locator_fullname): ... here. Rename its parameter to > fullname, updates its comment. Change tui_locator_element field to > full_name. > (tui_set_locator_info): Rename its parameter to fullname. > (tui_set_locator_info): Rename callee to tui_set_locator_fullname. > (tui_update_locator_filename): Rename to ... > (tui_update_locator_fullname): ... here. Rename callee to > tui_set_locator_fullname. > (tui_show_frame_info): Replace symtab->filename refererence by > symtab_to_fullname call. > * tui/tui-stack.h (tui_update_locator_filename): Rename to ... > (tui_update_locator_fullname): ... here. > * tui/tui-winsource.c (tui_display_main): Rename the callee to > tui_update_locator_fullname. Replace symtab->filename refererence by > symtab_to_fullname call. > * tui/tui.c (tui_show_source): Rename its parameter to fullname. > Rename the callee to tui_update_locator_fullname. > * tui/tui.h (tui_show_source): Rename its parameter to fullname. Checked in: http://sourceware.org/ml/gdb-cvs/2013-02/msg00022.html Jan