From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2116) id 5207E3853815; Thu, 27 May 2021 22:34:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5207E3853815 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Ian Lance Taylor To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-1101] gccgo.texi: remove HTML quoting X-Act-Checkin: gcc X-Git-Author: Ian Lance Taylor X-Git-Refname: refs/heads/master X-Git-Oldrev: c33ec196aa713c62d73907dc8f9e57d7ab2e4e4b X-Git-Newrev: 4774807e6e535597676473051aa00aabac075327 Message-Id: <20210527223406.5207E3853815@sourceware.org> Date: Thu, 27 May 2021 22:34:06 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 May 2021 22:34:06 -0000 https://gcc.gnu.org/g:4774807e6e535597676473051aa00aabac075327 commit r12-1101-g4774807e6e535597676473051aa00aabac075327 Author: Ian Lance Taylor Date: Thu May 27 15:32:28 2021 -0700 gccgo.texi: remove HTML quoting * gccgo.texi (Function Names): Don't HTML quote ampersand. Diff: --- gcc/go/gccgo.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/go/gccgo.texi b/gcc/go/gccgo.texi index ce6b518bb7b..fa0e4882403 100644 --- a/gcc/go/gccgo.texi +++ b/gcc/go/gccgo.texi @@ -495,7 +495,7 @@ like (after importing the @code{os} package): @smallexample var name = [4]byte@{'f', 'o', 'o', 0@}; -i := c_open(&name[0], os.O_RDONLY, 0); +i := c_open(&name[0], os.O_RDONLY, 0); @end smallexample Note that this serves as an example only. To open a file in Go please