]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.300
- updated to 7.1.326
[packages/vim.git] / 7.1.300
CommitLineData
3ab71051
ER
1To: vim-dev@vim.org
2Subject: Patch 7.1.300
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.1.300
11Problem: Value of asmsyntax argument isn't checked for valid characters.
12Solution: Only accepts letters and digits.
13Files: runtime/filetype.vim
14
15
16*** ../vim-7.1.299/runtime/filetype.vim Wed May 28 16:48:00 2008
17--- runtime/filetype.vim Wed May 28 17:11:37 2008
18***************
19*** 190,196 ****
20 let head = " ".getline(1)." ".getline(2)." ".getline(3)." ".getline(4).
21 \" ".getline(5)." "
22 if head =~ '\sasmsyntax=\S\+\s'
23! let b:asmsyntax = substitute(head, '.*\sasmsyntax=\(\S\+\)\s.*','\1', "")
24 elseif ((head =~? '\.title') || (head =~? '\.ident') || (head =~? '\.macro') || (head =~? '\.subtitle') || (head =~? '\.library'))
25 let b:asmsyntax = "vmasm"
26 endif
27--- 190,196 ----
28 let head = " ".getline(1)." ".getline(2)." ".getline(3)." ".getline(4).
29 \" ".getline(5)." "
30 if head =~ '\sasmsyntax=\S\+\s'
31! let b:asmsyntax = substitute(head, '.*\sasmsyntax=\([a-zA-Z0-9]\+\)\s.*','\1', "")
32 elseif ((head =~? '\.title') || (head =~? '\.ident') || (head =~? '\.macro') || (head =~? '\.subtitle') || (head =~? '\.library'))
33 let b:asmsyntax = "vmasm"
34 endif
35*** ../vim-7.1.299/src/version.c Wed May 28 16:48:01 2008
36--- src/version.c Wed May 28 17:28:05 2008
37***************
38*** 668,669 ****
39--- 673,676 ----
40 { /* Add new patch number below this line */
41+ /**/
42+ 300,
43 /**/
44
45--
46If you don't get everything you want, think of
47everything you didn't get and don't want.
48
49 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
50/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
51\\\ download, build and distribute -- http://www.A-A-P.org ///
52 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.042351 seconds and 4 git commands to generate.