From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0543915802F for ; Sat, 11 Mar 2023 20:42:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C763BE07EA; Sat, 11 Mar 2023 20:42:29 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 67C95E07D0 for ; Sat, 11 Mar 2023 20:42:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 328F3340E2B for ; Sat, 11 Mar 2023 20:42:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DD5773E for ; Sat, 11 Mar 2023 20:42:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1678567308.1cf5f4e1a4fa7f745b16e118a48e060d0f98ec2b.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: syntax/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: syntax/gentoo-package-common.vim X-VCS-Directories: syntax/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1cf5f4e1a4fa7f745b16e118a48e060d0f98ec2b X-VCS-Branch: master Date: Sat, 11 Mar 2023 20:42:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0f5d2214-0250-43d0-8e2d-621daded177d X-Archives-Hash: fe7f3ec9353c9bb221bec04b7af0e41c commit: 1cf5f4e1a4fa7f745b16e118a48e060d0f98ec2b Author: Anna Vyalkova sysrq in> AuthorDate: Sat Mar 11 16:50:52 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Mar 11 20:41:48 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=1cf5f4e1 gentoo-package-common: loosen email regexp Signed-off-by: Anna Vyalkova sysrq.in> Signed-off-by: Michał Górny gentoo.org> syntax/gentoo-package-common.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/gentoo-package-common.vim b/syntax/gentoo-package-common.vim index fb258c5..1d17d59 100644 --- a/syntax/gentoo-package-common.vim +++ b/syntax/gentoo-package-common.vim @@ -13,7 +13,7 @@ runtime syntax/gentoo-common.vim syn region GentooPackageComment start=/#/ end=/$/ \ contains=GentooPackageEmail,GentooPackageDate,GentooBug -syn match GentooPackageEmail contained /<[a-zA-Z0-9\-\_]\+@[a-zA-Z0-9\-\_\.]\+>/ +syn match GentooPackageEmail contained /<[^<>@[:space:]]\+@[^<>@.[:space:]]\+\.[^<>@[:space:]]\+>/ syn match GentooPackageDate contained /(\(\d\d\?\s\w\+\|\w\+\s\d\d\?\)\s\d\{4\})/ syn match GentooPackageAtom /^[\ \t]*[^ \t\n#]\+\S*\/\S\+/