From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: "Wilson Snyder" Newsgroups: gmane.emacs.devel Subject: Re: Scan of regexp mistakes Date: Tue, 5 Mar 2019 10:35:26 -0500 Message-ID: <9d00360ef83ad72c6c3fe3457f2d3ab1.squirrel@mail.wsnyder.org> References: <20190305112504.D97DD1EC@emma.svaha.wsnyder.org> Mime-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="96251"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: SquirrelMail/1.4.23 [SVN] Cc: emacs-devel@gnu.org To: "Paul Eggert" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Mar 05 16:50:04 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1h1CKR-000OrP-MK for ged-emacs-devel@m.gmane.org; Tue, 05 Mar 2019 16:50:03 +0100 Original-Received: from localhost ([127.0.0.1]:44829 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h1CKQ-0006AZ-Id for ged-emacs-devel@m.gmane.org; Tue, 05 Mar 2019 10:50:02 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:37229) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h1CBh-0007SH-Ii for emacs-devel@gnu.org; Tue, 05 Mar 2019 10:41:02 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h1CBf-0003Aw-It for emacs-devel@gnu.org; Tue, 05 Mar 2019 10:41:01 -0500 Original-Received: from [173.230.154.183] (port=46553 helo=wsnyder.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h1CBd-00033u-LS for emacs-devel@gnu.org; Tue, 05 Mar 2019 10:40:57 -0500 Original-Received: by wsnyder.org (Postfix, from userid 33) id 4247620AB9; Tue, 5 Mar 2019 15:35:26 +0000 (UTC) In-Reply-To: <20190305112504.D97DD1EC@emma.svaha.wsnyder.org> X-Priority: 3 (Normal) Importance: Normal X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 173.230.154.183 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:233849 Archived-At: Paul et al, thanks for this cleanup: > * commit 3c94c7bc02fcacb4a101188dddb0c44d53444178 > Author: Paul Eggert > Fix regular-expression glitches and typos This though failed the verilog-mode.el internal tests due to this: > - "\\s-*\\.\\(\\([a-zA-Z0-9`_$+@^.*?|---]\\|[][]\\|\\\\[()|]\\)+\\)\\s= -*(\\(.*\\))\\s-*\\(,\\|)\\s-*;\\)") > + "\\s-*\\.\\(\\([-a-zA-Z0-9`_$+@^.*?]\\|[][]\\|\\\\[()|]\\)+\\)\\s-*(= \\(.*\\))\\s-*\\(,\\|)\\s-*;\\)") Which removed | from the character class. I committed a fix for this, bu= t you may want to check the other files patched. Thanks.