From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1256) id 42DE7385E001; Fri, 1 Jul 2022 16:12:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 42DE7385E001 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Maciej W. Rozycki To: gdb-cvs@sourceware.org Subject: [binutils-gdb] GDB/doc: Remove indentation from `print -elements' completion example X-Act-Checkin: binutils-gdb X-Git-Author: Maciej W. Rozycki X-Git-Refname: refs/heads/master X-Git-Oldrev: c4de64f8f6df99078d55d329bed24bbe3b963aba X-Git-Newrev: a89c17dac1e1b921188ba014cafc9c82e33dd5e8 Message-Id: <20220701161245.42DE7385E001@sourceware.org> Date: Fri, 1 Jul 2022 16:12:45 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Jul 2022 16:12:45 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Da89c17dac1e1= b921188ba014cafc9c82e33dd5e8 commit a89c17dac1e1b921188ba014cafc9c82e33dd5e8 Author: Maciej W. Rozycki Date: Fri Jul 1 17:11:09 2022 +0100 GDB/doc: Remove indentation from `print -elements' completion example =20 Remove indentation from the text of the manual after the example here: =20 " Completion will in some cases guide you with a suggestion of what kind of argument an option expects. For example: =20 (gdb) print -elements NUMBER unlimited =20 Here, the option expects a number (e.g., '100'), not literal 'NUMBER'. Such metasyntactical arguments are always presented in uppercase." =20 as this is a continuation of the same paragraph. Diff: --- gdb/doc/gdb.texinfo | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index ad5bc7db01e..7a4e337d15b 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -2176,6 +2176,7 @@ of argument an option expects. For example: NUMBER unlimited @end smallexample =20 +@noindent Here, the option expects a number (e.g., @code{100}), not literal @code{NUMBER}. Such metasyntactical arguments are always presented in uppercase.