summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Candau <antiz@archlinux.org>2024-04-02 22:38:12 +0200
committerRobin Candau <antiz@archlinux.org>2024-04-02 22:38:12 +0200
commit738d62dcdc3e011f669be9e033f1fdedfdab5649 (patch)
tree0b1b42586ec9655e213fc194d00f7513ed7e193b
parent7a0b055e16796362ff0bd727dd577e06c0a7ed55 (diff)
Fix the Zlib license SPDX identifier in PKGBUILD.vim
-rw-r--r--src/vim/syntax/PKGBUILD.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vim/syntax/PKGBUILD.vim b/src/vim/syntax/PKGBUILD.vim
index 9aab671..06bb231 100644
--- a/src/vim/syntax/PKGBUILD.vim
+++ b/src/vim/syntax/PKGBUILD.vim
@@ -69,7 +69,7 @@ syn match pbLicense /AGPL-3\.0-only\|AGPL-3\.0-or-later\|Apache-2\.0\|Artistic-1
" multiple licenses combination expressions
syn keyword pbLicenseCombination AND OR WITH contained
" special cases from https://wiki.archlinux.org/index.php/PKGBUILD#license
-syn keyword pbLicenseSpecial BSD-1-Clause BSD-2-Clause BSD-3-Clause ISC MIT OFL Python ZLIB contained
+syn keyword pbLicenseSpecial BSD-1-Clause BSD-2-Clause BSD-3-Clause ISC MIT OFL Python Zlib contained
syn match pbLicenseCustom /custom\(:[[:alnum:].]*\)*\|LicenseRef\(-[[:alnum:].]*\)*/ contained
syn keyword pbLicenseUnknown unknown contained
syn match pbIllegalLicense /[^='"() ]/ contained contains=pbLicenseUnknown,pbLicenseCustom,pbLicenseSpecial,pbLicense