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 700F2158086 for ; Sat, 6 Nov 2021 11:05:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00301E0931; Sat, 6 Nov 2021 11:05:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54B6EE0931 for ; Sat, 6 Nov 2021 11:05:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 8C6A9342AD8 for ; Sat, 6 Nov 2021 11:05:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D91F0175 for ; Sat, 6 Nov 2021 11:05:01 +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: <1636196692.b3014c2205200b6e52a3093b1053b69a0228f878.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: plugin/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: plugin/newebuild.vim X-VCS-Directories: plugin/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b3014c2205200b6e52a3093b1053b69a0228f878 X-VCS-Branch: master Date: Sat, 6 Nov 2021 11:05:01 +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: 35b7ed42-b4a5-47fe-af71-4cd4f7dbbcea X-Archives-Hash: 493e6a3f2808debbdf493deabb243a34 commit: b3014c2205200b6e52a3093b1053b69a0228f878 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 6 11:04:52 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 6 11:04:52 2021 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=b3014c22 newebuild: Stop adding ~x86 on amd64 Signed-off-by: Michał Górny gentoo.org> plugin/newebuild.vim | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugin/newebuild.vim b/plugin/newebuild.vim index 3d42564..36db2dd 100644 --- a/plugin/newebuild.vim +++ b/plugin/newebuild.vim @@ -27,9 +27,6 @@ fun! MakeNewEbuild() let l:keywords = "" else let l:keywords = "~" . l:arch - if l:arch ==# "amd64" - let l:keywords = l:keywords . " ~x86" - endif endif " }}}