From patchwork Wed Jun 21 01:32:44 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergio Durigan Junior X-Patchwork-Id: 21154 Received: (qmail 46125 invoked by alias); 21 Jun 2017 01:32:52 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 46090 invoked by uid 89); 21 Jun 2017 01:32:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, KAM_STOCKGEN, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=Messages, documentations X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 21 Jun 2017 01:32:50 +0000 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 466C5C00F7E9 for ; Wed, 21 Jun 2017 01:32:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 466C5C00F7E9 Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx07.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=sergiodj@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 466C5C00F7E9 Received: from psique.yyz.redhat.com (unused-10-15-17-193.yyz.redhat.com [10.15.17.193]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4567F70894; Wed, 21 Jun 2017 01:32:47 +0000 (UTC) From: Sergio Durigan Junior To: GDB Patches Cc: Sergio Durigan Junior Subject: [PATCH] Fix PR gdb/21606: SYMBOL_FUNCTIONS_DOMAIN misspelled in documentation Date: Tue, 20 Jun 2017 21:32:44 -0400 Message-Id: <20170621013244.19026-1-sergiodj@redhat.com> X-IsSubscribed: yes Both Python and Guile documentations misspelled SYMBOL_FUNCTIONS_DOMAIN, writing SYMBOL_FUNCTION_DOMAIN instead. This obvious commit fixes it. gdb/doc/ChangeLog: 2017-06-20 Sergio Durigan Junior PR gdb/21606 * python.texi (Python representation of Symbols.): Replace SYMBOL_FUNCTION_DOMAIN by SYMBOL_FUNCTIONS_DOMAIN, fixing typo. * guile.texi (Guile representation of Symbols.): Likewise. --- gdb/doc/ChangeLog | 7 +++++++ gdb/doc/guile.texi | 2 +- gdb/doc/python.texi | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index aa4a9ce..8c7c3da 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,10 @@ +2017-06-20 Sergio Durigan Junior + + PR gdb/21606 + * python.texi (Python representation of Symbols.): Replace + SYMBOL_FUNCTION_DOMAIN by SYMBOL_FUNCTIONS_DOMAIN, fixing typo. + * guile.texi (Guile representation of Symbols.): Likewise. + 2017-06-11 Simon Marchi * gdb.texinfo (Optional Messages about Internal Happenings): diff --git a/gdb/doc/guile.texi b/gdb/doc/guile.texi index 9ae980e..0d41f11 100644 --- a/gdb/doc/guile.texi +++ b/gdb/doc/guile.texi @@ -2769,7 +2769,7 @@ This domain contains names of labels (for gotos). This domain holds a subset of the @code{SYMBOLS_VAR_DOMAIN}; it contains everything minus functions and types. -@item SYMBOL_FUNCTION_DOMAIN +@item SYMBOL_FUNCTIONS_DOMAIN This domain contains all functions. @item SYMBOL_TYPES_DOMAIN diff --git a/gdb/doc/python.texi b/gdb/doc/python.texi index ee4f7a2..32d7939 100644 --- a/gdb/doc/python.texi +++ b/gdb/doc/python.texi @@ -4559,7 +4559,7 @@ This domain holds a subset of the @code{SYMBOLS_VAR_DOMAIN}; it contains everything minus functions and types. @vindex SYMBOL_FUNCTIONS_DOMAIN -@item gdb.SYMBOL_FUNCTION_DOMAIN +@item gdb.SYMBOL_FUNCTIONS_DOMAIN This domain contains all functions. @vindex SYMBOL_TYPES_DOMAIN