From unknown Sat Jun 14 03:48:43 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#48677 <48677@debbugs.gnu.org> To: bug#48677 <48677@debbugs.gnu.org> Subject: Status: typos in 5.8.1 Escaping Precedence Reply-To: bug#48677 <48677@debbugs.gnu.org> Date: Sat, 14 Jun 2025 10:48:43 +0000 retitle 48677 typos in 5.8.1 Escaping Precedence reassign 48677 sed submitter 48677 Christoph Anton Mitterer severity 48677 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Wed May 26 12:56:35 2021 Received: (at submit) by debbugs.gnu.org; 26 May 2021 16:56:35 +0000 Received: from localhost ([127.0.0.1]:49790 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1llwpf-0003l6-0E for submit@debbugs.gnu.org; Wed, 26 May 2021 12:56:35 -0400 Received: from lists.gnu.org ([209.51.188.17]:36532) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1llwpd-0003ky-81 for submit@debbugs.gnu.org; Wed, 26 May 2021 12:56:33 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:41992) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1llwpc-0002Qh-Vm for bug-sed@gnu.org; Wed, 26 May 2021 12:56:33 -0400 Received: from elephant.ash.relay.mailchannels.net ([23.83.222.57]:58997) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1llwpa-0008EO-LF for bug-sed@gnu.org; Wed, 26 May 2021 12:56:32 -0400 X-Sender-Id: instrampxe0y3a|x-authsender|calestyo@scientia.net Received: from relay.mailchannels.net (localhost [127.0.0.1]) by relay.mailchannels.net (Postfix) with ESMTP id 14B4E1223C2 for ; Wed, 26 May 2021 16:56:17 +0000 (UTC) Received: from mailgw-01.dd24.net (100-96-18-80.trex.outbound.svc.cluster.local [100.96.18.80]) (Authenticated sender: instrampxe0y3a) by relay.mailchannels.net (Postfix) with ESMTPA id EA0AC122348 for ; Wed, 26 May 2021 16:56:11 +0000 (UTC) X-Sender-Id: instrampxe0y3a|x-authsender|calestyo@scientia.net Received: from mailgw-01.dd24.net (mailgw-01.dd24.net [193.46.215.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384) by 100.96.18.80 (trex/6.2.1); Wed, 26 May 2021 16:56:16 +0000 X-MC-Relay: Neutral X-MailChannels-SenderId: instrampxe0y3a|x-authsender|calestyo@scientia.net X-MailChannels-Auth-Id: instrampxe0y3a X-Occur-Dime: 2d02f527186e9b33_1622048176620_2377004064 X-MC-Loop-Signature: 1622048176620:3290644230 X-MC-Ingress-Time: 1622048176620 Received: from heisenberg.fritz.box (ppp-46-244-246-192.dynamic.mnet-online.de [46.244.246.192]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: calestyo@scientia.net) by smtp.dd24.net (Postfix) with ESMTPSA id 1F92C5FC32 for ; Wed, 26 May 2021 16:56:09 +0000 (UTC) Message-ID: <223f78bd6db5bb8b43ef3361619cf0ce9b728f6a.camel@scientia.net> Subject: typos in 5.8.1 Escaping Precedence From: Christoph Anton Mitterer To: bug-sed@gnu.org Date: Wed, 26 May 2021 18:56:09 +0200 Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.38.3-1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Received-SPF: none client-ip=23.83.222.57; envelope-from=calestyo@scientia.net; helo=elephant.ash.relay.mailchannels.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hey. In sed's info page in chapter "5.8.1 Escaping Precedence" it says: > $ echo abc | sed 's/[a]/x/' > Xbc > $ echo abc | sed 's/\x5ba\x5d/x/' > Xbc For the results, these should be lower case "x", not capital, I guess. Thanks, Chris.