From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21479 invoked by alias); 7 Aug 2017 16:15:50 -0000 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 Received: (qmail 21176 invoked by uid 89); 7 Aug 2017 16:15:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-11.1 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1002 X-HELO: eggs.gnu.org Received: from eggs.gnu.org (HELO eggs.gnu.org) (208.118.235.92) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 07 Aug 2017 16:15:02 +0000 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dekgC-00024Z-40 for gdb-patches@sourceware.org; Mon, 07 Aug 2017 12:15:00 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37546) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dekfx-0001yD-CI; Mon, 07 Aug 2017 12:14:41 -0400 Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:4197 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dekfw-0007Bw-QI; Mon, 07 Aug 2017 12:14:41 -0400 Date: Mon, 07 Aug 2017 16:15:00 -0000 Message-Id: <83fud3tkwi.fsf@gnu.org> From: Eli Zaretskii To: Tim Wiederhake CC: gdb-patches@sourceware.org, qiyaoltc@gmail.com, bernhard.heckel@intel.com In-reply-to: <1502098654-25203-7-git-send-email-tim.wiederhake@intel.com> (message from Tim Wiederhake on Mon, 7 Aug 2017 11:37:34 +0200) Subject: Re: [PATCH v2 6/6] Fortran: Nested functions, add scope parameter. Reply-to: Eli Zaretskii References: <1502098654-25203-1-git-send-email-tim.wiederhake@intel.com> <1502098654-25203-7-git-send-email-tim.wiederhake@intel.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-IsSubscribed: yes X-SW-Source: 2017-08/txt/msg00132.txt.bz2 > From: Tim Wiederhake > Cc: qiyaoltc@gmail.com, Bernhard Heckel > Date: Mon, 7 Aug 2017 11:37:34 +0200 > > From: Bernhard Heckel > > gdb/ChangeLog: > * doc/gdb.texinfo: Describe scope operator. This should go into gdb/doc/ChangeLog, and it should mention the node in which the change is made (in parentheses). > --- a/gdb/doc/gdb.texinfo > +++ b/gdb/doc/gdb.texinfo > @@ -15259,6 +15259,9 @@ The access component operator. Normally used to access elements in derived > types. Also suitable for unions. As unions aren't part of regular Fortran, > this can only happen when accessing a register that uses a gdbarch-defined > union type. > +@item :: > +The scope operator. Normally used to access variables in modules or to set > +breakpoints on subroutines nested in modules or in other (internal) subroutines. > @end table This part is OK, thanks.