From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id eve+LfeAmWAEJgAAWB0awg (envelope-from ) for ; Mon, 10 May 2021 14:52:39 -0400 Received: by simark.ca (Postfix, from userid 112) id AF5211F11C; Mon, 10 May 2021 14:52:39 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 2DFB21E813 for ; Mon, 10 May 2021 14:52:39 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id B09843858C27; Mon, 10 May 2021 18:52:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org B09843858C27 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1620672758; bh=hgDr3oPY89u31etbC2O1cMkiQvub7v4zkxrOtvhQgH0=; h=Date:To:In-Reply-To:Subject:References:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=cImXJZKJLRo8pYW+uOU4Zq9hJSFnJ/XipeF/jkm0EAikCGNlSmEI3rNJNTYDEQy9l VtQIs4yFrBs++8Pui7rYEy9RB9GYHUmGWp3EcW0YyQhUDYRTmaygvqM8xLCACvGA7d KFd1q4mc2MFifppoUmg4akLqB5r3Sx96HQmN5+38= Received: from eggs.gnu.org (eggs.gnu.org [IPv6:2001:470:142:3::10]) by sourceware.org (Postfix) with ESMTPS id 4275E3861036 for ; Mon, 10 May 2021 18:52:36 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 4275E3861036 Received: from fencepost.gnu.org ([2001:470:142:3::e]:50022) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lgB19-0003yO-R8; Mon, 10 May 2021 14:52:35 -0400 Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:3009 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 1lgB19-00066S-E1; Mon, 10 May 2021 14:52:35 -0400 Date: Mon, 10 May 2021 21:52:38 +0300 Message-Id: <83h7ja5sll.fsf@gnu.org> To: "Jose E. Marchesi" In-Reply-To: <874kfawhjj.fsf@oracle.com> (jose.marchesi@oracle.com) Subject: Re: [PATCH 1/1] Integrate GNU poke in GDB References: <20210510151044.20829-1-jose.marchesi@oracle.com> <20210510151044.20829-2-jose.marchesi@oracle.com> <83pmxy5xz6.fsf@gnu.org> <874kfawhjj.fsf@oracle.com> 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: , From: Eli Zaretskii via Gdb-patches Reply-To: Eli Zaretskii Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" > From: "Jose E. Marchesi" > Cc: gdb-patches@sourceware.org > Date: Mon, 10 May 2021 20:49:20 +0200 > > >> +(@value{GDBP}) type Packet = struct @{ byte magic == 0x4a; byte sz; byte[sz] payload; @} > > > > This line is too long, it will typeset badly in the printed version. > > Please break it into two or more lines. > > What is the convention to denote one logical line in two physical lines > in verbatim/example sections? Something like this? > > (@value{GDBP}) type Packet = struct @{ byte magic == 0x4a; \ > byte sz; byte[sz] payload; @} Yes, and indent the second line (and subsequent lines, if any).