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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2FEA2138336 for ; Tue, 21 Aug 2018 08:02:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0512AE07D8; Tue, 21 Aug 2018 08:02:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2A4CE07D8 for ; Tue, 21 Aug 2018 08:02:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3843F335D51 for ; Tue, 21 Aug 2018 08:02:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D0683B5 for ; Tue, 21 Aug 2018 08:02:41 +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: <1534837160.3a424a1a9bc37c46fa841208a897b693eff3cf34.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: 3a424a1a9bc37c46fa841208a897b693eff3cf34 X-VCS-Branch: master Date: Tue, 21 Aug 2018 08:02:41 +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-Archives-Salt: afd5d546-54b6-4083-a01a-bc9fff743324 X-Archives-Hash: 9ea2b4e9731775027329a3fdd67b36b6 commit: 3a424a1a9bc37c46fa841208a897b693eff3cf34 Author: Michał Górny gentoo org> AuthorDate: Tue Aug 21 07:39:20 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 21 07:39:20 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=3a424a1a syntax/gentoo-package-common: Fix handling 1-char atoms (e.g. '*') 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 fe234c7..fb258c5 100644 --- a/syntax/gentoo-package-common.vim +++ b/syntax/gentoo-package-common.vim @@ -16,7 +16,7 @@ syn region GentooPackageComment start=/#/ end=/$/ syn match GentooPackageEmail contained /<[a-zA-Z0-9\-\_]\+@[a-zA-Z0-9\-\_\.]\+>/ syn match GentooPackageDate contained /(\(\d\d\?\s\w\+\|\w\+\s\d\d\?\)\s\d\{4\})/ -syn match GentooPackageAtom /^[\ \t]*[^ \t\n#]\+\S\+\/\S\+/ +syn match GentooPackageAtom /^[\ \t]*[^ \t\n#]\+\S*\/\S\+/ \ nextgroup=@GentooPackagePostAtom skipwhite hi def link GentooPackageComment Comment