From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 779461389E2 for ; Sat, 29 Nov 2014 07:51:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C97D5E083D; Sat, 29 Nov 2014 07:51:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7EEF2E083D for ; Sat, 29 Nov 2014 07:51:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4D34F3401CA for ; Sat, 29 Nov 2014 07:50:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6DC0B245 for ; Sat, 29 Nov 2014 07:50:57 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1417247322.a3a9d028acae0af472beb7c29eb9e6da9a508b02.radhermit@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: syntax/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: syntax/gentoo-common.vim X-VCS-Directories: syntax/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: a3a9d028acae0af472beb7c29eb9e6da9a508b02 X-VCS-Branch: master Date: Sat, 29 Nov 2014 07:50:57 +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: 50a7e311-1531-46c5-9ce9-b63c6819ecdc X-Archives-Hash: 54a93d0d7043b2542b2b176685322d01 commit: a3a9d028acae0af472beb7c29eb9e6da9a508b02 Author: Tim Harder gentoo org> AuthorDate: Sat Nov 29 07:48:42 2014 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Nov 29 07:48:42 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-syntax.git;a=commit;h=a3a9d028 remove special highlighting for gentoo cvs headers This feels pointless and causes bug #297282 anyway. --- syntax/gentoo-common.vim | 6 ------ 1 file changed, 6 deletions(-) diff --git a/syntax/gentoo-common.vim b/syntax/gentoo-common.vim index d509833..b3e2ae8 100644 --- a/syntax/gentoo-common.vim +++ b/syntax/gentoo-common.vim @@ -8,10 +8,6 @@ if &compatible || v:version < 603 finish endif -syn region GentooHeaderBlock start=/\%^\(#\)\@=/ end=/^$/ contains=GentooHeader -syn region GentooHeader contained start=/^#/ end=/$/ contains=GentooHeaderCVSVar -syn region GentooHeaderCVSVar contained start=/\$\S\+:/ end=/\$/ - syn match GentooBug contained /\(\([gG]entoo \|[dD]ebian \|[sS]ource[Ff]orge \)\?[Bb]ug \(#\s*\)\?\|#\)\d\{1,\}/ " bad space @@ -19,7 +15,5 @@ syn region GentooError start=/^ / end=/$/ " trailing whitespace syn match GentooError /\s\+$/ -hi def link GentooHeader Comment -hi def link GentooHeaderCVSVar PreProc hi def link GentooBug Underlined hi def link GentooError Error