Mercurial > vim
annotate src/bigvim64.bat @ 34409:2afcbf1f037c
runtime(spec): Recognize SourceLicense tag name in RPM spec syntax (#14046)
Commit: https://github.com/vim/vim/commit/315cd1fbcbba7c44ec8743f03645bfcaef58bd55
Author: Petr Pisar <ppisar@redhat.com>
Date: Thu Feb 22 20:39:09 2024 +0100
runtime(spec): Recognize SourceLicense tag name in RPM spec syntax (https://github.com/vim/vim/issues/14046)
rpm-4.19.0 added a new SourceLicense tag. It is used at the same place
as License tag.
This patch adds the new tag name into a Vim syntax file to be
highligted the same way as the License tag. Note that it has to be
defined in the syntax file before Source\d* regexp. Otherwise it's not
recognized by Vim.
Signed-off-by: Petr P?sa? <ppisar@redhat.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 22 Feb 2024 20:45:02 +0100 |
parents | 93c715c63a4a |
children |
rev | line source |
---|---|
33486
93c715c63a4a
patch 9.0.1994: inconsistent feature description
Christian Brabandt <cb@256bit.org>
parents:
10062
diff
changeset
|
1 :: command to build huge Vim 64 bit with OLE, Perl and Python. |
3764 | 2 :: First run: %VCDIR%\vcvarsall.bat x86_amd64 |
3937 | 3 :: Ruby and Tcl are excluded, doesn't seem to work. |
3764 | 4 SET VCDIR="C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\" |
5 SET TOOLDIR=E:\ | |
10062
103d874ebb96
commit https://github.com/vim/vim/commit/f1b512a0b62d0fa47ee9b2612556f375e1f22fc2
Christian Brabandt <cb@256bit.org>
parents:
3937
diff
changeset
|
6 %VCDIR%\bin\nmake -f Make_mvc.mak CPU=AMD64 GUI=yes OLE=yes PERL=E:\perl524 DYNAMIC_PERL=yes PERL_VER=524 PYTHON=%TOOLDIR%python27 DYNAMIC_PYTHON=yes PYTHON_VER=27 PYTHON3=%TOOLDIR%python35 DYNAMIC_PYTHON3=yes PYTHON3_VER=35 %1 IME=yes CSCOPE=yes |
3764 | 7 |