From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from eggs.gnu.org (eggs.gnu.org [209.51.188.92]) by sourceware.org (Postfix) with ESMTPS id 388C73857C44 for ; Tue, 14 Dec 2021 17:24:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 388C73857C44 Received: from [2001:470:142:3::e] (port=46934 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mxBXl-00051W-3x; Tue, 14 Dec 2021 12:24:49 -0500 Received: from [87.69.77.57] (port=4224 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mxBXk-0002qM-Se; Tue, 14 Dec 2021 12:24:49 -0500 Date: Tue, 14 Dec 2021 19:24:46 +0200 Message-Id: <83wnk7je01.fsf@gnu.org> From: Eli Zaretskii To: "Maciej W. Rozycki" Cc: gdb-patches@sourceware.org, aburgess@redhat.com In-Reply-To: (macro@embecosm.com) Subject: Re: [PATCH v2] gdb: split array and string limiting options References: X-Spam-Status: No, score=1.2 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_BARRACUDACENTRAL, SPF_HELO_PASS, SPF_PASS, TXREP autolearn=no autolearn_force=no version=3.4.4 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Dec 2021 17:24:52 -0000 > Date: Tue, 14 Dec 2021 16:38:43 +0000 (GMT) > From: "Maciej W. Rozycki" > Cc: Andrew Burgess > > gdb/NEWS | 18 +++++++ > gdb/ada-valprint.c | 4 - > gdb/c-lang.c | 4 - > gdb/c-valprint.c | 4 - > gdb/doc/gdb.texinfo | 36 +++++++++++--- > gdb/doc/python.texi | 5 ++ > gdb/language.h | 2 > gdb/m2-lang.c | 2 > gdb/m2-valprint.c | 3 - > gdb/p-lang.c | 2 > gdb/p-valprint.c | 7 +- > gdb/printcmd.c | 8 +-- > gdb/python/py-value.c | 6 ++ > gdb/testsuite/gdb.ada/str_chars.exp | 64 ++++++++++++++++++++++++++ > gdb/testsuite/gdb.ada/str_chars/foo.adb | 26 ++++++++++ > gdb/testsuite/gdb.base/default.exp | 4 - > gdb/testsuite/gdb.base/examine-backward.exp | 6 ++ > gdb/testsuite/gdb.base/options.exp | 1 > gdb/testsuite/gdb.base/printcmds.exp | 28 +++++------ > gdb/testsuite/gdb.base/wchar.exp | 6 +- > gdb/testsuite/gdb.base/with.exp | 2 > gdb/testsuite/gdb.guile/scm-pretty-print.exp | 12 ++-- > gdb/testsuite/gdb.pascal/str-chars.exp | 48 +++++++++++++++++++ > gdb/testsuite/gdb.pascal/str-chars.pas | 28 +++++++++++ > gdb/testsuite/gdb.python/py-format-string.exp | 11 ++-- > gdb/testsuite/gdb.python/py-prettyprint.exp | 8 ++- > gdb/testsuite/lib/gdb.exp | 2 > gdb/tracepoint.c | 4 - > gdb/valprint.c | 64 ++++++++++++++++++-------- > gdb/valprint.h | 10 ++-- > 30 files changed, 342 insertions(+), 83 deletions(-) > create mode 100644 gdb/testsuite/gdb.ada/str_chars.exp > create mode 100644 gdb/testsuite/gdb.ada/str_chars/foo.adb > create mode 100644 gdb/testsuite/gdb.pascal/str-chars.exp > create mode 100644 gdb/testsuite/gdb.pascal/str-chars.pas Thanks, the documentation parts are OK.