Mercurial > vim
annotate src/gvim.exe.mnf @ 11525:14b6b79d685b v8.0.0645
patch 8.0.0645: no error for illegal back reference in NFA engine
commit https://github.com/vim/vim/commit/1ef9bbe215e13a273e74fccaddd8fc5a42c76b6e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jun 17 20:08:20 2017 +0200
patch 8.0.0645: no error for illegal back reference in NFA engine
Problem: The new regexp engine does not give an error for using a back
reference where it is not allowed. (Dominique Pelle)
Solution: Check the back reference like the old engine. (closes #1774)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 17 Jun 2017 20:15:03 +0200 |
parents | 9f48eab77d62 |
children | 1174611ad715 |
rev | line source |
---|---|
7 | 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
1908 | 2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > |
7 | 3 <assemblyIdentity |
1072 | 4 processorArchitecture="*" |
10198
9f48eab77d62
commit https://github.com/vim/vim/commit/bb76f24af2010943387ce696a7092175b4ecccf2
Christian Brabandt <cb@256bit.org>
parents:
5146
diff
changeset
|
5 version="8.0.0.0" |
7 | 6 type="win32" |
7 name="Vim" | |
8 /> | |
9 <description>Vi Improved - A Text Editor</description> | |
10 <dependency> | |
11 <dependentAssembly> | |
12 <assemblyIdentity | |
13 type="win32" | |
14 name="Microsoft.Windows.Common-Controls" | |
15 version="6.0.0.0" | |
16 publicKeyToken="6595b64144ccf1df" | |
17 language="*" | |
1072 | 18 processorArchitecture="*" |
7 | 19 /> |
20 </dependentAssembly> | |
21 </dependency> | |
1702 | 22 <!-- Vista security requirements --> |
23 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
24 <security> | |
25 <requestedPrivileges> | |
26 <requestedExecutionLevel | |
27 level="asInvoker" | |
28 uiAccess="false"/> | |
29 </requestedPrivileges> | |
30 </security> | |
31 </trustInfo> | |
1908 | 32 <!-- Vista High DPI aware --> |
33 <asmv3:application> | |
34 <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
35 <dpiAware>true</dpiAware> | |
36 </asmv3:windowsSettings> | |
37 </asmv3:application> | |
7 | 38 </assembly> |