From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 34393 invoked by alias); 16 Sep 2019 21:47: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 34385 invoked by uid 89); 16 Sep 2019 21:47:50 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=H*r:sk:mailrel X-HELO: mailrelay1-2.pub.mailoutpod1-cph3.one.com Received: from mailrelay1-2.pub.mailoutpod1-cph3.one.com (HELO mailrelay1-2.pub.mailoutpod1-cph3.one.com) (46.30.212.0) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 16 Sep 2019 21:47:47 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bordum.dk; s=20140924; h=message-id:to:from:subject:date:content-type:content-transfer-encoding:from; bh=2LkxChZiFYg//nvSujsYNH++FRW9xB+daUHg72JuREE=; b=xDdpHp6pOLqqGZzRozwDvYYs79zc2aqU8Y8LQDRSyX9u4PC3/j3fQ3AoUWS2QHtpVdJBOQwWUcq+T rGexBt1fGGD6P+3D638nNlV5KISIWkLlNv+MCBnicUCbvbu0sFFx1ke5FEYhSt+Z6utvVQvsV2bBZZ x0SYSeT06o1xwKvI= X-HalOne-Cookie: b5d09dd0c34f9a75211365a6c73a4eed76aca368 X-HalOne-ID: 9d5d64f5-d8cb-11e9-aee4-d0431ea8a283 Received: from localhost (unknown [2.104.151.248]) by mailrelay1.pub.mailoutpod1-cph3.one.com (Halon) with ESMTPSA id 9d5d64f5-d8cb-11e9-aee4-d0431ea8a283; Mon, 16 Sep 2019 21:47:44 +0000 (UTC) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Mon, 16 Sep 2019 21:47:00 -0000 Subject: [PATCH] gdb docs: do not format the ++ in C++ in man page From: "Carl Bordum Hansen" To: Message-Id: X-SW-Source: 2019-09/txt/msg00293.txt.bz2 This change means that the html version of the man page does not stylize the "++" in the third paragraph. (https://sourceware.org/gdb/current/onlinedocs/gdb/gdb-man.html). The tradeoff is, in my opinion, worth it as the man page reads better, since it is now formatted properly. Before this change, it read as: "... programs written in C, C@t{++}, ...". --- Hello, this is my first patch to a GNU project ever and also the first time= I use an email-based git workflow, so please excuse my mistakes :-) gdb/doc/gdb.texinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index eee0c9d4dd..68c45d9dc9 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -45056,7 +45056,7 @@ Change things in your program, so you can experimen= t with correcting the effects of one bug and go on to learn about another. @end itemize =20 -You can use @value{GDBN} to debug programs written in C, C@t{++}, Fortran = and +You can use @value{GDBN} to debug programs written in C, C++, Fortran and Modula-2. =20 @value{GDBN} is invoked with the shell command @code{gdb}. Once started, = it reads --=20 2.17.1